From af097a9007c8fcc5e89b49dd2c74899b02c91e1c Mon Sep 17 00:00:00 2001 From: relf Date: Fri, 12 Jan 2024 09:07:24 +0100 Subject: [PATCH 1/7] Replace special characters by underscore in py variable names --- app/lib/whats_opt/openmdao_variable.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/lib/whats_opt/openmdao_variable.rb b/app/lib/whats_opt/openmdao_variable.rb index 948aebce..31572a75 100644 --- a/app/lib/whats_opt/openmdao_variable.rb +++ b/app/lib/whats_opt/openmdao_variable.rb @@ -14,12 +14,12 @@ def init_py_value_from(val) end def py_varname - self.name.tr("./()", "_") + self.name.tr(".=:/()-|", "_") end def py_shortname - if self.py_varname =~ /^.*:(\w+)$/ - $1 + if self.name =~ /^.*:(\w+)$/ + $1.tr(".=:/()-|", "_") else self.py_varname end From f5d63aebf91f74d9e09666a724b7b1131390fbcc Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 15 Jan 2024 08:49:18 +0100 Subject: [PATCH 2/7] Upgrade to Python 3.11 in CI --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 94e0aa7d..0b392990 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,10 +20,10 @@ jobs: ruby-version: '3.0.3' bundler-cache: true - - name: Set up Python 3.8 + - name: Set up Python 3.11 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade pip From fe6fecc948e5dcd894887649f42a49aa50e975ae Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 15 Jan 2024 09:12:32 +0100 Subject: [PATCH 3/7] Upgrade rails 7.1.2 --- Gemfile.lock | 151 ++++++++++++++++++++++++++------------------------- 1 file changed, 76 insertions(+), 75 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index a46c02bc..0b2731fd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,50 +1,51 @@ GEM remote: https://rubygems.org/ specs: - actioncable (7.1.1) - actionpack (= 7.1.1) - activesupport (= 7.1.1) + actioncable (7.1.2) + actionpack (= 7.1.2) + activesupport (= 7.1.2) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.1.1) - actionpack (= 7.1.1) - activejob (= 7.1.1) - activerecord (= 7.1.1) - activestorage (= 7.1.1) - activesupport (= 7.1.1) + actionmailbox (7.1.2) + actionpack (= 7.1.2) + activejob (= 7.1.2) + activerecord (= 7.1.2) + activestorage (= 7.1.2) + activesupport (= 7.1.2) mail (>= 2.7.1) net-imap net-pop net-smtp - actionmailer (7.1.1) - actionpack (= 7.1.1) - actionview (= 7.1.1) - activejob (= 7.1.1) - activesupport (= 7.1.1) + actionmailer (7.1.2) + actionpack (= 7.1.2) + actionview (= 7.1.2) + activejob (= 7.1.2) + activesupport (= 7.1.2) mail (~> 2.5, >= 2.5.4) net-imap net-pop net-smtp rails-dom-testing (~> 2.2) - actionpack (7.1.1) - actionview (= 7.1.1) - activesupport (= 7.1.1) + actionpack (7.1.2) + actionview (= 7.1.2) + activesupport (= 7.1.2) nokogiri (>= 1.8.5) + racc rack (>= 2.2.4) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actiontext (7.1.1) - actionpack (= 7.1.1) - activerecord (= 7.1.1) - activestorage (= 7.1.1) - activesupport (= 7.1.1) + actiontext (7.1.2) + actionpack (= 7.1.2) + activerecord (= 7.1.2) + activestorage (= 7.1.2) + activesupport (= 7.1.2) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.1.1) - activesupport (= 7.1.1) + actionview (7.1.2) + activesupport (= 7.1.2) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) @@ -54,22 +55,22 @@ GEM activemodel (>= 4.1) case_transform (>= 0.2) jsonapi-renderer (>= 0.1.1.beta1, < 0.3) - activejob (7.1.1) - activesupport (= 7.1.1) + activejob (7.1.2) + activesupport (= 7.1.2) globalid (>= 0.3.6) - activemodel (7.1.1) - activesupport (= 7.1.1) - activerecord (7.1.1) - activemodel (= 7.1.1) - activesupport (= 7.1.1) + activemodel (7.1.2) + activesupport (= 7.1.2) + activerecord (7.1.2) + activemodel (= 7.1.2) + activesupport (= 7.1.2) timeout (>= 0.4.0) - activestorage (7.1.1) - actionpack (= 7.1.1) - activejob (= 7.1.1) - activerecord (= 7.1.1) - activesupport (= 7.1.1) + activestorage (7.1.2) + actionpack (= 7.1.2) + activejob (= 7.1.2) + activerecord (= 7.1.2) + activesupport (= 7.1.2) marcel (~> 1.0) - activesupport (7.1.1) + activesupport (7.1.2) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -90,9 +91,9 @@ GEM ast (2.4.2) autoprefixer-rails (10.4.15.0) execjs (~> 2) - base64 (0.1.1) + base64 (0.2.0) bcrypt (3.1.19) - bigdecimal (3.1.4) + bigdecimal (3.1.5) bindex (0.8.1) bootsnap (1.16.0) msgpack (~> 1.2) @@ -133,7 +134,7 @@ GEM concurrent-ruby (1.2.2) connection_pool (2.4.1) crass (1.0.6) - date (3.3.3) + date (3.3.4) deepsort (0.4.5) devise (4.9.3) bcrypt (~> 3.0) @@ -146,7 +147,7 @@ GEM net-ldap (>= 0.16.0) diff-lcs (1.5.0) docile (1.4.0) - drb (2.1.1) + drb (2.2.0) ruby2_keywords erubi (1.12.0) execjs (2.9.1) @@ -180,10 +181,10 @@ GEM image_processing (1.12.2) mini_magick (>= 4.9.5, < 5) ruby-vips (>= 2.0.17, < 3) - io-console (0.6.0) - irb (1.8.3) + io-console (0.7.1) + irb (1.11.1) rdoc - reline (>= 0.3.8) + reline (>= 0.4.2) jbuilder (2.11.5) actionview (>= 5.0.0) activesupport (>= 5.0.0) @@ -199,7 +200,7 @@ GEM listen (3.8.0) rb-fsevent (~> 0.10, >= 0.10.3) rb-inotify (~> 0.9, >= 0.9.10) - loofah (2.21.4) + loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) lumberjack (1.2.9) @@ -213,26 +214,26 @@ GEM method_source (1.0.0) mini_magick (4.12.0) mini_mime (1.1.5) - minitest (5.20.0) + minitest (5.21.1) msgpack (1.7.2) - mutex_m (0.1.2) + mutex_m (0.2.0) mysql2 (0.5.5) nenv (0.3.0) - net-imap (0.4.2) + net-imap (0.4.9.1) date net-protocol net-ldap (0.18.0) net-pop (0.1.2) net-protocol - net-protocol (0.2.1) + net-protocol (0.2.2) timeout net-scp (4.0.0) net-ssh (>= 2.6.5, < 8.0.0) - net-smtp (0.4.0) + net-smtp (0.4.0.1) net-protocol net-ssh (7.2.0) - nio4r (2.5.9) - nokogiri (1.15.4-x86_64-linux) + nio4r (2.7.0) + nokogiri (1.16.0-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) nenv (~> 0.1) @@ -261,14 +262,14 @@ GEM pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - psych (5.1.1.1) + psych (5.1.2) stringio public_suffix (5.0.3) puma (6.4.0) nio4r (~> 2.0) pundit (2.3.1) activesupport (>= 3.0.0) - racc (1.7.1) + racc (1.7.3) rack (3.0.8) rack-attack (6.7.0) rack (>= 1.0, < 4) @@ -283,20 +284,20 @@ GEM rackup (2.1.0) rack (>= 3) webrick (~> 1.8) - rails (7.1.1) - actioncable (= 7.1.1) - actionmailbox (= 7.1.1) - actionmailer (= 7.1.1) - actionpack (= 7.1.1) - actiontext (= 7.1.1) - actionview (= 7.1.1) - activejob (= 7.1.1) - activemodel (= 7.1.1) - activerecord (= 7.1.1) - activestorage (= 7.1.1) - activesupport (= 7.1.1) + rails (7.1.2) + actioncable (= 7.1.2) + actionmailbox (= 7.1.2) + actionmailer (= 7.1.2) + actionpack (= 7.1.2) + actiontext (= 7.1.2) + actionview (= 7.1.2) + activejob (= 7.1.2) + activemodel (= 7.1.2) + activerecord (= 7.1.2) + activestorage (= 7.1.2) + activesupport (= 7.1.2) bundler (>= 1.15.0) - railties (= 7.1.1) + railties (= 7.1.2) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -304,23 +305,23 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.1.1) - actionpack (= 7.1.1) - activesupport (= 7.1.1) + railties (7.1.2) + actionpack (= 7.1.2) + activesupport (= 7.1.2) irb rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rainbow (3.1.1) - rake (13.0.6) + rake (13.1.0) rb-fsevent (0.11.2) rb-inotify (0.10.1) ffi (~> 1.0) - rdoc (6.5.0) + rdoc (6.6.2) psych (>= 4.0.0) regexp_parser (2.8.2) - reline (0.3.9) + reline (0.4.2) io-console (~> 0.5) responders (3.1.1) actionpack (>= 5.2) @@ -434,7 +435,7 @@ GEM sshkit (1.21.5) net-scp (>= 1.1.2) net-ssh (>= 2.8.0) - stringio (3.0.8) + stringio (3.1.0) sucker_punch (3.1.0) concurrent-ruby (~> 1.0) terser (1.1.19) @@ -442,7 +443,7 @@ GEM thor (1.3.0) thrift (0.19.0) tilt (2.3.0) - timeout (0.4.0) + timeout (0.4.1) toml (0.3.0) parslet (>= 1.8.0, < 3.0.0) turbo-rails (1.5.0) From 76f440c0730203e6bf0ebfba80c2d82553239a69 Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 15 Jan 2024 11:15:06 +0100 Subject: [PATCH 4/7] Fix character replacement in python variables generation --- app/lib/whats_opt/openmdao_variable.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/lib/whats_opt/openmdao_variable.rb b/app/lib/whats_opt/openmdao_variable.rb index 31572a75..72e65098 100644 --- a/app/lib/whats_opt/openmdao_variable.rb +++ b/app/lib/whats_opt/openmdao_variable.rb @@ -2,6 +2,8 @@ require "whats_opt/variable" +EXCLUDED_CHARS = '\\.\\=\\:\\/\\(\\)\\-\\|' + module WhatsOpt module OpenmdaoVariable include WhatsOpt::Variable @@ -14,12 +16,12 @@ def init_py_value_from(val) end def py_varname - self.name.tr(".=:/()-|", "_") + self.name.tr(EXCLUDED_CHARS, "_") end def py_shortname if self.name =~ /^.*:(\w+)$/ - $1.tr(".=:/()-|", "_") + $1.tr(EXCLUDED_CHARS, "_") else self.py_varname end From a79d652e42b9e435732b6be144a0e698eacfe628 Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 15 Jan 2024 14:31:20 +0100 Subject: [PATCH 5/7] Update gems --- Gemfile | 2 +- Gemfile.lock | 107 +++++++++++++++++++++++++++++---------------------- 2 files changed, 61 insertions(+), 48 deletions(-) diff --git a/Gemfile b/Gemfile index 65434817..7a69d2a5 100644 --- a/Gemfile +++ b/Gemfile @@ -114,7 +114,7 @@ gem "rubyzip", "~>2.3.0" # UI gem "popper" # bootstrap dependency gem "bootstrap", "~> 5.0" -gem "font-awesome-sass", "~> 6.4.0" +gem "font-awesome-sass", "~> 6.5.0" # thrift gem "thrift", "~>0.18" diff --git a/Gemfile.lock b/Gemfile.lock index 0b2731fd..208255fb 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,6 +1,7 @@ GEM remote: https://rubygems.org/ specs: + abbrev (0.1.2) actioncable (7.1.2) actionpack (= 7.1.2) activesupport (= 7.1.2) @@ -82,20 +83,20 @@ GEM tzinfo (~> 2.0) acts_as_list (1.1.0) activerecord (>= 4.2) - addressable (2.8.5) + addressable (2.8.6) public_suffix (>= 2.0.2, < 6.0) - airbrussh (1.5.0) + airbrussh (1.5.1) sshkit (>= 1.6.1, != 1.7.0) ancestry (4.3.3) activerecord (>= 5.2.6) ast (2.4.2) - autoprefixer-rails (10.4.15.0) + autoprefixer-rails (10.4.16.0) execjs (~> 2) base64 (0.2.0) - bcrypt (3.1.19) + bcrypt (3.1.20) bigdecimal (3.1.5) bindex (0.8.1) - bootsnap (1.16.0) + bootsnap (1.17.1) msgpack (~> 1.2) bootstrap (5.3.2) autoprefixer-rails (>= 9.1.0) @@ -135,7 +136,7 @@ GEM connection_pool (2.4.1) crass (1.0.6) date (3.3.4) - deepsort (0.4.5) + deepsort (0.5.0) devise (4.9.3) bcrypt (~> 3.0) orm_adapter (~> 0.1) @@ -151,13 +152,12 @@ GEM ruby2_keywords erubi (1.12.0) execjs (2.9.1) - faraday (2.7.11) - base64 - faraday-net_http (>= 2.0, < 3.1) - ruby2_keywords (>= 0.0.4) - faraday-net_http (3.0.2) + faraday (2.9.0) + faraday-net_http (>= 2.0, < 3.2) + faraday-net_http (3.1.0) + net-http ffi (1.16.3) - font-awesome-sass (6.4.2) + font-awesome-sass (6.5.1) sassc (~> 2.0) formatador (1.1.0) globalid (1.2.1) @@ -175,7 +175,8 @@ GEM guard-minitest (2.4.6) guard-compat (~> 1.2) minitest (>= 3.0) - highline (2.1.0) + highline (3.0.0) + abbrev i18n (1.14.1) concurrent-ruby (~> 1.0) image_processing (1.12.2) @@ -192,8 +193,8 @@ GEM rails-dom-testing (>= 1, < 3) railties (>= 4.2.0) thor (>= 0.14, < 2.0) - json (2.6.3) - json-schema (3.0.0) + json (2.7.1) + json-schema (4.1.1) addressable (>= 2.8) jsonapi-renderer (0.2.2) language_server-protocol (3.17.0.3) @@ -203,7 +204,7 @@ GEM loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) - lumberjack (1.2.9) + lumberjack (1.2.10) mail (2.8.1) mini_mime (>= 0.1.1) net-imap @@ -219,32 +220,37 @@ GEM mutex_m (0.2.0) mysql2 (0.5.5) nenv (0.3.0) + net-http (0.4.1) + uri net-imap (0.4.9.1) date net-protocol - net-ldap (0.18.0) + net-ldap (0.19.0) net-pop (0.1.2) net-protocol net-protocol (0.2.2) timeout net-scp (4.0.0) net-ssh (>= 2.6.5, < 8.0.0) + net-sftp (4.0.0) + net-ssh (>= 5.0.0, < 8.0.0) net-smtp (0.4.0.1) net-protocol - net-ssh (7.2.0) + net-ssh (7.2.1) nio4r (2.7.0) nokogiri (1.16.0-x86_64-linux) racc (~> 1.4) notiffany (0.1.3) nenv (~> 0.1) shellany (~> 0.0) - octokit (7.2.0) + octokit (8.0.0) faraday (>= 1, < 3) sawyer (~> 0.9) orm_adapter (0.5.0) - pagy (6.1.0) - parallel (1.23.0) - parser (3.2.2.4) + package_json (0.1.0) + pagy (6.3.0) + parallel (1.24.0) + parser (3.3.0.3) ast (~> 2.4.1) racc parslet (2.0.0) @@ -264,8 +270,8 @@ GEM method_source (~> 1.0) psych (5.1.2) stringio - public_suffix (5.0.3) - puma (6.4.0) + public_suffix (5.0.4) + puma (6.4.2) nio4r (~> 2.0) pundit (2.3.1) activesupport (>= 3.0.0) @@ -320,7 +326,7 @@ GEM ffi (~> 1.0) rdoc (6.6.2) psych (>= 4.0.0) - regexp_parser (2.8.2) + regexp_parser (2.9.0) reline (0.4.2) io-console (~> 0.5) responders (3.1.1) @@ -336,7 +342,7 @@ GEM rspec-mocks (3.12.6) diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.12.0) - rspec-rails (6.0.3) + rspec-rails (6.1.0) actionpack (>= 6.1) activesupport (>= 6.1) railties (>= 6.1) @@ -345,39 +351,42 @@ GEM rspec-mocks (~> 3.12) rspec-support (~> 3.12) rspec-support (3.12.1) - rswag-api (2.11.0) + rswag-api (2.13.0) + activesupport (>= 3.1, < 7.2) railties (>= 3.1, < 7.2) - rswag-specs (2.11.0) + rswag-specs (2.13.0) activesupport (>= 3.1, < 7.2) - json-schema (>= 2.2, < 4.0) + json-schema (>= 2.2, < 5.0) railties (>= 3.1, < 7.2) rspec-core (>= 2.14) - rubocop (1.57.2) + rubocop (1.60.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.2.4) + parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) rubocop-ast (1.30.0) parser (>= 3.2.1.0) - rubocop-md (1.2.1) + rubocop-md (1.2.2) rubocop (>= 1.0) - rubocop-minitest (0.33.0) + rubocop-minitest (0.34.4) rubocop (>= 1.39, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) rubocop-packaging (0.5.2) rubocop (>= 1.33, < 2.0) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) - rubocop-rails (2.22.0) + rubocop-performance (1.20.2) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) + rubocop-rails (2.23.1) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) + rubocop-ast (>= 1.30.0, < 2.0) rubocop-rails_config (1.16.0) rubocop (>= 1.57.0) rubocop-ast (>= 1.26.0) @@ -404,13 +413,14 @@ GEM sawyer (0.9.2) addressable (>= 2.3.5) faraday (>= 0.17.3, < 3) - selenium-webdriver (4.14.0) + selenium-webdriver (4.16.0) rexml (~> 3.2, >= 3.2.5) rubyzip (>= 1.2.2, < 3.0) websocket (~> 1.0) semantic_range (3.0.0) - shakapacker (7.1.0) + shakapacker (7.2.1) activesupport (>= 5.2) + package_json rack-proxy (>= 0.6.1) railties (>= 5.2) semantic_range (>= 2.3.0) @@ -423,7 +433,7 @@ GEM simplecov-lcov (0.8.0) simplecov_json_formatter (0.1.4) slack-notifier (2.4.0) - spring (4.1.1) + spring (4.1.3) sprockets (4.2.1) concurrent-ruby (~> 1.0) rack (>= 2.2.4, < 4) @@ -431,14 +441,16 @@ GEM actionpack (>= 5.2) activesupport (>= 5.2) sprockets (>= 3.0.0) - sqlite3 (1.6.7-x86_64-linux) - sshkit (1.21.5) + sqlite3 (1.7.0-x86_64-linux) + sshkit (1.22.0) + mutex_m net-scp (>= 1.1.2) + net-sftp (>= 2.1.2) net-ssh (>= 2.8.0) stringio (3.1.0) - sucker_punch (3.1.0) + sucker_punch (3.2.0) concurrent-ruby (~> 1.0) - terser (1.1.19) + terser (1.1.20) execjs (>= 0.3.0, < 3) thor (1.3.0) thrift (0.19.0) @@ -452,9 +464,10 @@ GEM railties (>= 6.0.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - tzinfo-data (1.2023.3) + tzinfo-data (1.2023.4) tzinfo (>= 1.0.0) unicode-display_width (2.5.0) + uri (0.13.0) warden (1.2.9) rack (>= 2.0.9) web-console (4.2.1) @@ -491,7 +504,7 @@ DEPENDENCIES deepsort devise (>= 4.7.1) devise_ldap_authenticatable - font-awesome-sass (~> 6.4.0) + font-awesome-sass (~> 6.5.0) guard guard-minitest highline From 7d992f62fe69175047dd52c3459e9a86132273e5 Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 15 Jan 2024 14:31:47 +0100 Subject: [PATCH 6/7] Update frontend dependencies --- package.json | 6 +++--- yarn.lock | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index 37aa5fb5..7d233ec4 100644 --- a/package.json +++ b/package.json @@ -44,13 +44,13 @@ "react": "^18.2.0", "react-beautiful-dnd": "^13.0.0", "react-bootstrap": "^2.1.1", - "react-bootstrap-typeahead": "^6.0.0", + "react-bootstrap-typeahead": "6.2.3", "react-dom": "^18.2.0", "react-plotly.js": "^2.4.0", "react-promise-tracker": "^2.1.0", "regenerator-runtime": "^0.14.0", "save-svg-as-png": "^1.4.17", - "shakapacker": "7.1.0", + "shakapacker": "7.2.1", "style-loader": "^3.3.1", "swagger-ui-react": "^5.0.0", "terser-webpack-plugin": "5", @@ -86,4 +86,4 @@ "eslint-webpack-plugin": "^4.0.0", "webpack-dev-server": "^4.7.4" } -} +} \ No newline at end of file diff --git a/yarn.lock b/yarn.lock index e0b75799..2fac6c65 100644 --- a/yarn.lock +++ b/yarn.lock @@ -7070,7 +7070,7 @@ react-beautiful-dnd@^13.0.0: redux "^4.0.4" use-memo-one "^1.1.1" -react-bootstrap-typeahead@^6.0.0: +react-bootstrap-typeahead@6.2.3: version "6.2.3" resolved "https://registry.yarnpkg.com/react-bootstrap-typeahead/-/react-bootstrap-typeahead-6.2.3.tgz#85aa956fe608a4463e297df7f714c9f8c2ffcd32" integrity sha512-Ge2au2WxR8CWsAH3GbKsaJpIEV2OMKum2Ov7/kuVMBlHNKwsJc2ULJIjk3yZMoTvvfOzOnYDScaWrQwzPc5c/A== @@ -7781,10 +7781,10 @@ sha.js@^2.4.11: inherits "^2.0.1" safe-buffer "^5.0.1" -shakapacker@7.1.0: - version "7.1.0" - resolved "https://registry.yarnpkg.com/shakapacker/-/shakapacker-7.1.0.tgz#95bd37db60702ffa21f9ea29a88f438de3db25b2" - integrity sha512-xKfF4LKrFQdMLYeIi/uBV6pfkPTO4lgCAIMx3W5+MHW61ENOXu4WeQ50qVR9u5hV6XXzi7AiS7C6dWO2GFnYAg== +shakapacker@7.2.1: + version "7.2.1" + resolved "https://registry.yarnpkg.com/shakapacker/-/shakapacker-7.2.1.tgz#de9895bbbb6b6ee1016478dbbb8d4c37b25e5a50" + integrity sha512-IRPkEdIY2JiPfj7fnQ9sP8SBaUcaArMVBHAn3ctB91FndgyaM/bfXXlSEiveWPT3A3wkoadx44U6pKXo1DdC3w== dependencies: glob "^7.2.0" js-yaml "^4.1.0" From 6659b14d030ea12cf387daa32be0323586047f97 Mon Sep 17 00:00:00 2001 From: relf Date: Mon, 15 Jan 2024 14:48:37 +0100 Subject: [PATCH 7/7] Bump 1.29.1 --- CHANGELOG | 6 ++++++ VERSION | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index ac5f6f19..3b33fda6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,11 @@

CHANGELOG

+

1.29.0 (15/01/2024)

+
    +
  • Tech: Upgrade backend and frontend dependencies
  • +
  • Relax variable name parsing to allow '|', ':' and '.'
  • +
+

1.29.0 (15/12/2023)

  • Tech: Upgrade to Rails 7.1
  • diff --git a/VERSION b/VERSION index 5e57fb89..83cf0d95 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.29.0 +1.29.1