From 95f202d16abeee592eb5da2fc708fd450d957bf2 Mon Sep 17 00:00:00 2001 From: Szymon Fiedler Date: Thu, 2 Jan 2025 23:01:04 +0100 Subject: [PATCH] Test against Rails 7.2 --- .github/workflows/rails_event_store_test.yml | 2 + .../ruby_event_store-active_record_test.yml | 4 + .../ruby_event_store-flipper_test.yml | 2 + .../ruby_event_store-outbox_test.yml | 3 + .../ruby_event_store-protobuf_test.yml | 3 + aggregate_root/Gemfile | 2 +- aggregate_root/Gemfile.lock | 20 +- contrib/ruby_event_store-flipper/Gemfile | 3 +- .../Gemfile.activesupport_7_1 | 12 + .../Gemfile.activesupport_7_1.lock | 105 +++++++ contrib/ruby_event_store-flipper/Gemfile.lock | 20 +- contrib/ruby_event_store-outbox/Gemfile | 2 +- contrib/ruby_event_store-outbox/Gemfile.lock | 179 ++++++----- .../ruby_event_store-outbox/Gemfile.rails_7_1 | 14 + .../Gemfile.rails_7_1.lock | 281 +++++++++++++++++ contrib/ruby_event_store-profiler/Gemfile | 3 +- .../ruby_event_store-profiler/Gemfile.lock | 20 +- contrib/ruby_event_store-protobuf/Gemfile | 2 +- .../ruby_event_store-protobuf/Gemfile.lock | 179 ++++++----- .../Gemfile.rails_7_0.lock | 138 ++++---- .../Gemfile.rails_7_1 | 17 + .../Gemfile.rails_7_1.lock | 292 +++++++++++++++++ contrib/ruby_event_store-rom/Gemfile | 3 +- contrib/ruby_event_store-rom/Gemfile.lock | 18 +- contrib/ruby_event_store-sequel/Gemfile | 3 +- contrib/ruby_event_store-sequel/Gemfile.lock | 18 +- .../Gemfile | 2 +- .../Gemfile.lock | 179 +++++------ rails_event_store/Gemfile | 2 +- rails_event_store/Gemfile.lock | 177 ++++++----- rails_event_store/Gemfile.rails_7_1 | 17 + rails_event_store/Gemfile.rails_7_1.lock | 295 ++++++++++++++++++ rails_event_store/spec/dummy_7_2/Gemfile.lock | 7 - ruby_event_store-active_record/Gemfile | 2 +- .../Gemfile.activerecord_7_1 | 12 + .../Gemfile.activerecord_7_1.lock | 119 +++++++ ruby_event_store-active_record/Gemfile.lock | 32 +- ruby_event_store/Gemfile | 2 +- ruby_event_store/Gemfile.lock | 20 +- support/ci/generate | 20 +- 40 files changed, 1721 insertions(+), 510 deletions(-) create mode 100644 contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1 create mode 100644 contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1.lock create mode 100644 contrib/ruby_event_store-outbox/Gemfile.rails_7_1 create mode 100644 contrib/ruby_event_store-outbox/Gemfile.rails_7_1.lock create mode 100644 contrib/ruby_event_store-protobuf/Gemfile.rails_7_1 create mode 100644 contrib/ruby_event_store-protobuf/Gemfile.rails_7_1.lock create mode 100644 rails_event_store/Gemfile.rails_7_1 create mode 100644 rails_event_store/Gemfile.rails_7_1.lock create mode 100644 ruby_event_store-active_record/Gemfile.activerecord_7_1 create mode 100644 ruby_event_store-active_record/Gemfile.activerecord_7_1.lock diff --git a/.github/workflows/rails_event_store_test.yml b/.github/workflows/rails_event_store_test.yml index 21d9ea2511..6c3cee4e26 100644 --- a/.github/workflows/rails_event_store_test.yml +++ b/.github/workflows/rails_event_store_test.yml @@ -49,6 +49,8 @@ jobs: bundle_gemfile: Gemfile - ruby_version: ruby-3.1 bundle_gemfile: Gemfile + - ruby_version: ruby-3.3 + bundle_gemfile: Gemfile.rails_7_1 - ruby_version: ruby-3.3 bundle_gemfile: Gemfile.rails_7_0 - ruby_version: ruby-3.3 diff --git a/.github/workflows/ruby_event_store-active_record_test.yml b/.github/workflows/ruby_event_store-active_record_test.yml index 8f2f53f464..184bf45f5f 100644 --- a/.github/workflows/ruby_event_store-active_record_test.yml +++ b/.github/workflows/ruby_event_store-active_record_test.yml @@ -90,6 +90,10 @@ jobs: bundle_gemfile: Gemfile database_url: sqlite3:db.sqlite3 data_type: binary + - ruby_version: ruby-3.3 + bundle_gemfile: Gemfile.activerecord_7_1 + database_url: sqlite3:db.sqlite3 + data_type: binary - ruby_version: ruby-3.3 bundle_gemfile: Gemfile.activerecord_7_0 database_url: sqlite3:db.sqlite3 diff --git a/.github/workflows/ruby_event_store-flipper_test.yml b/.github/workflows/ruby_event_store-flipper_test.yml index 0993cd158e..a49f706c95 100644 --- a/.github/workflows/ruby_event_store-flipper_test.yml +++ b/.github/workflows/ruby_event_store-flipper_test.yml @@ -39,6 +39,8 @@ jobs: bundle_gemfile: Gemfile - ruby_version: ruby-3.1 bundle_gemfile: Gemfile + - ruby_version: ruby-3.3 + bundle_gemfile: Gemfile.activesupport_7_1 - ruby_version: ruby-3.3 bundle_gemfile: Gemfile.activesupport_7_0 - ruby_version: ruby-3.3 diff --git a/.github/workflows/ruby_event_store-outbox_test.yml b/.github/workflows/ruby_event_store-outbox_test.yml index dc58f1555b..bd8331cc0b 100644 --- a/.github/workflows/ruby_event_store-outbox_test.yml +++ b/.github/workflows/ruby_event_store-outbox_test.yml @@ -60,6 +60,9 @@ jobs: - ruby_version: ruby-3.1 bundle_gemfile: Gemfile database_url: sqlite3:db.sqlite3 + - ruby_version: ruby-3.3 + bundle_gemfile: Gemfile.rails_7_1 + database_url: sqlite3:db.sqlite3 - ruby_version: ruby-3.3 bundle_gemfile: Gemfile.rails_7_0 database_url: sqlite3:db.sqlite3 diff --git a/.github/workflows/ruby_event_store-protobuf_test.yml b/.github/workflows/ruby_event_store-protobuf_test.yml index b93dad7401..0fe8156507 100644 --- a/.github/workflows/ruby_event_store-protobuf_test.yml +++ b/.github/workflows/ruby_event_store-protobuf_test.yml @@ -43,6 +43,9 @@ jobs: - ruby_version: ruby-3.1 bundle_gemfile: Gemfile database_url: sqlite3:db.sqlite3 + - ruby_version: ruby-3.3 + bundle_gemfile: Gemfile.rails_7_1 + database_url: sqlite3:db.sqlite3 - ruby_version: ruby-3.3 bundle_gemfile: Gemfile.rails_7_0 database_url: sqlite3:db.sqlite3 diff --git a/aggregate_root/Gemfile b/aggregate_root/Gemfile index 4fdf872953..9022e802eb 100644 --- a/aggregate_root/Gemfile +++ b/aggregate_root/Gemfile @@ -6,4 +6,4 @@ gemspec eval_gemfile "../support/bundler/Gemfile.shared" gem "ruby_event_store", path: ".." -gem "activesupport", "~> 7.1.3" +gem "activesupport", "~> 7.2.2.1" diff --git a/aggregate_root/Gemfile.lock b/aggregate_root/Gemfile.lock index c905ca11eb..45f3db63a8 100644 --- a/aggregate_root/Gemfile.lock +++ b/aggregate_root/Gemfile.lock @@ -13,25 +13,29 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) - bigdecimal (3.1.8) + benchmark (0.4.0) + bigdecimal (3.1.9) concurrent-ruby (1.3.3) connection_pool (2.4.1) diff-lcs (1.5.1) drb (2.2.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -45,7 +49,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) parser (3.3.3.0) ast (~> 2.4.1) racc @@ -65,6 +68,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sorbet-runtime (0.5.11429) tzinfo (2.0.6) concurrent-ruby (~> 1.0) @@ -78,7 +82,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activesupport (~> 7.1.3) + activesupport (~> 7.2.2.1) aggregate_root! mutant (= 0.12.0) mutant-minitest (= 0.12.0) diff --git a/contrib/ruby_event_store-flipper/Gemfile b/contrib/ruby_event_store-flipper/Gemfile index 4b002ffc2f..65a7557230 100644 --- a/contrib/ruby_event_store-flipper/Gemfile +++ b/contrib/ruby_event_store-flipper/Gemfile @@ -9,4 +9,5 @@ gem "ruby_event_store-rspec", path: "../.." gem "flipper", "~> 0.19" gem "byebug" -gem "activesupport", "~> 7.1.3" \ No newline at end of file +gem "activesupport", "~> 7.2.2.1" + diff --git a/contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1 b/contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1 new file mode 100644 index 0000000000..7a4cfb90d3 --- /dev/null +++ b/contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1 @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +source "https://rubygems.org" +gemspec + +eval_gemfile "../../support/bundler/Gemfile.shared" +gem "ruby_event_store", path: "../.." +gem "ruby_event_store-rspec", path: "../.." + +gem "flipper", "~> 0.19" +gem "byebug" +gem "activesupport", "~> 7.1.5" diff --git a/contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1.lock b/contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1.lock new file mode 100644 index 0000000000..76b944e772 --- /dev/null +++ b/contrib/ruby_event_store-flipper/Gemfile.activesupport_7_1.lock @@ -0,0 +1,105 @@ +PATH + remote: ../.. + specs: + ruby_event_store (2.15.0) + concurrent-ruby (~> 1.0, >= 1.1.6) + ruby_event_store-rspec (2.15.0) + rspec (~> 3.0) + +PATH + remote: . + specs: + ruby_event_store-flipper (0.2.1) + ruby_event_store (>= 1.0.0) + +GEM + remote: https://rubygems.org/ + specs: + activesupport (7.1.5.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + byebug (11.1.3) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + diff-lcs (1.5.1) + drb (2.2.1) + flipper (0.28.3) + concurrent-ruby (< 2) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + logger (1.6.4) + minitest (5.25.4) + mutant (0.12.0) + diff-lcs (~> 1.3) + parser (~> 3.3.0) + regexp_parser (~> 2.9.0) + sorbet-runtime (~> 0.5.0) + unparser (~> 0.6.9) + mutant-minitest (0.12.0) + minitest (~> 5.11) + mutant (= 0.12.0) + mutant-rspec (0.12.0) + mutant (= 0.12.0) + rspec-core (>= 3.8.0, < 4.0.0) + mutex_m (0.3.0) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + racc (1.8.1) + rake (13.2.1) + regexp_parser (2.9.3) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.2) + securerandom (0.4.1) + sorbet-runtime (0.5.11710) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + +PLATFORMS + arm64-darwin + x86_64-darwin + x86_64-linux + +DEPENDENCIES + activesupport (~> 7.1.5) + byebug + flipper (~> 0.19) + mutant (= 0.12.0) + mutant-minitest (= 0.12.0) + mutant-rspec (= 0.12.0) + rake (>= 10.0) + rspec (~> 3.6) + ruby_event_store! + ruby_event_store-flipper! + ruby_event_store-rspec! + +BUNDLED WITH + 2.5.15 diff --git a/contrib/ruby_event_store-flipper/Gemfile.lock b/contrib/ruby_event_store-flipper/Gemfile.lock index 10703a84f0..13da3af48c 100644 --- a/contrib/ruby_event_store-flipper/Gemfile.lock +++ b/contrib/ruby_event_store-flipper/Gemfile.lock @@ -15,19 +15,22 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) - bigdecimal (3.1.8) + benchmark (0.4.0) + bigdecimal (3.1.9) byebug (11.1.3) concurrent-ruby (1.3.3) connection_pool (2.4.1) @@ -35,8 +38,9 @@ GEM drb (2.2.1) flipper (0.28.3) concurrent-ruby (< 2) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -50,7 +54,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) parser (3.3.3.0) ast (~> 2.4.1) racc @@ -70,6 +73,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sorbet-runtime (0.5.11429) tzinfo (2.0.6) concurrent-ruby (~> 1.0) @@ -83,7 +87,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activesupport (~> 7.1.3) + activesupport (~> 7.2.2.1) byebug flipper (~> 0.19) mutant (= 0.12.0) diff --git a/contrib/ruby_event_store-outbox/Gemfile b/contrib/ruby_event_store-outbox/Gemfile index 81164951e8..f62999ba59 100644 --- a/contrib/ruby_event_store-outbox/Gemfile +++ b/contrib/ruby_event_store-outbox/Gemfile @@ -11,4 +11,4 @@ gem "ruby_event_store", path: "../.." gem "sidekiq", "~> 7.2" gem "influxdb", "~> 0.8.1", require: false gem "childprocess" -gem "rails", "~> 7.1.3" +gem "rails", "~> 7.2.2.1" diff --git a/contrib/ruby_event_store-outbox/Gemfile.lock b/contrib/ruby_event_store-outbox/Gemfile.lock index 3878cf9856..533e61664d 100644 --- a/contrib/ruby_event_store-outbox/Gemfile.lock +++ b/contrib/ruby_event_store-outbox/Gemfile.lock @@ -14,102 +14,101 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) + actioncable (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (>= 2.7.1) - net-imap - net-pop - net-smtp - actionmailer (7.1.3.4) - actionpack (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (~> 2.5, >= 2.5.4) - net-imap - net-pop - net-smtp + actionmailbox (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) + actionmailer (7.2.2.1) + actionpack (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (7.1.3.4) - actionview (= 7.1.3.4) - activesupport (= 7.1.3.4) + actionpack (7.2.2.1) + actionview (= 7.2.2.1) + activesupport (= 7.2.2.1) nokogiri (>= 1.8.5) racc - rack (>= 2.2.4) + rack (>= 2.2.4, < 3.2) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actiontext (7.1.3.4) - actionpack (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + useragent (~> 0.16) + actiontext (7.2.2.1) + actionpack (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.1.3.4) - activesupport (= 7.1.3.4) + actionview (7.2.2.1) + activesupport (= 7.2.2.1) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (7.1.3.4) - activesupport (= 7.1.3.4) + activejob (7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.3.6) - activemodel (7.1.3.4) - activesupport (= 7.1.3.4) - activerecord (7.1.3.4) - activemodel (= 7.1.3.4) - activesupport (= 7.1.3.4) + activemodel (7.2.2.1) + activesupport (= 7.2.2.1) + activerecord (7.2.2.1) + activemodel (= 7.2.2.1) + activesupport (= 7.2.2.1) timeout (>= 0.4.0) - activestorage (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activesupport (= 7.1.3.4) + activestorage (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activesupport (= 7.2.2.1) marcel (~> 1.0) - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) bigdecimal (3.1.8) builder (3.3.0) childprocess (5.0.0) concurrent-ruby (1.3.3) connection_pool (2.4.1) crass (1.0.6) - date (3.3.4) + date (3.4.1) diff-lcs (1.5.1) drb (2.2.1) - erubi (1.12.0) + erubi (1.13.1) globalid (1.2.1) activesupport (>= 6.1) i18n (1.14.5) concurrent-ruby (~> 1.0) influxdb (0.8.1) - io-console (0.7.2) - irb (1.13.1) + io-console (0.8.0) + irb (1.14.3) rdoc (>= 4.0.0) reline (>= 0.4.2) - loofah (2.22.0) + logger (1.6.4) + loofah (2.24.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -132,9 +131,8 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) mysql2 (0.5.6) - net-imap (0.4.12) + net-imap (0.5.4) date net-protocol net-pop (0.1.2) @@ -143,64 +141,64 @@ GEM timeout net-smtp (0.5.0) net-protocol - nio4r (2.7.3) - nokogiri (1.16.5-arm64-darwin) + nio4r (2.7.4) + nokogiri (1.18.1-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-darwin) + nokogiri (1.18.1-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-linux) + nokogiri (1.18.1-x86_64-linux-gnu) racc (~> 1.4) parser (3.3.3.0) ast (~> 2.4.1) racc pg (1.5.6) - psych (5.1.2) + psych (5.2.2) + date stringio racc (1.8.0) rack (3.1.3) rack-session (2.0.0) rack (>= 3.0.0) - rack-test (2.1.0) + rack-test (2.2.0) rack (>= 1.3) - rackup (2.1.0) + rackup (2.2.1) rack (>= 3) - webrick (~> 1.8) - rails (7.1.3.4) - actioncable (= 7.1.3.4) - actionmailbox (= 7.1.3.4) - actionmailer (= 7.1.3.4) - actionpack (= 7.1.3.4) - actiontext (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activemodel (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + rails (7.2.2.1) + actioncable (= 7.2.2.1) + actionmailbox (= 7.2.2.1) + actionmailer (= 7.2.2.1) + actionpack (= 7.2.2.1) + actiontext (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activemodel (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) bundler (>= 1.15.0) - railties (= 7.1.3.4) + railties (= 7.2.2.1) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.0) + rails-html-sanitizer (1.6.2) loofah (~> 2.21) - nokogiri (~> 1.14) - railties (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) - irb + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) + irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rake (13.2.1) - rdoc (6.7.0) + rdoc (6.10.0) psych (>= 4.0.0) redis-client (0.22.2) connection_pool regexp_parser (2.9.2) - reline (0.5.9) + reline (0.6.0) io-console (~> 0.5) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -215,6 +213,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sidekiq (7.2.4) concurrent-ruby (< 2) connection_pool (>= 2.3.0) @@ -224,19 +223,19 @@ GEM sqlite3 (1.7.3-arm64-darwin) sqlite3 (1.7.3-x86_64-darwin) sqlite3 (1.7.3-x86_64-linux) - stringio (3.1.0) - thor (1.3.1) + stringio (3.1.2) + thor (1.3.2) timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unparser (0.6.14) diff-lcs (~> 1.3) parser (>= 3.3.0) - webrick (1.8.1) + useragent (0.16.11) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) - zeitwerk (2.6.15) + zeitwerk (2.7.1) PLATFORMS arm64-darwin @@ -251,7 +250,7 @@ DEPENDENCIES mutant-rspec (= 0.12.0) mysql2 (~> 0.5.6) pg (~> 1.5.6) - rails (~> 7.1.3) + rails (~> 7.2.2.1) rake (>= 10.0) rspec (~> 3.6) ruby_event_store! diff --git a/contrib/ruby_event_store-outbox/Gemfile.rails_7_1 b/contrib/ruby_event_store-outbox/Gemfile.rails_7_1 new file mode 100644 index 0000000000..9f6827ff46 --- /dev/null +++ b/contrib/ruby_event_store-outbox/Gemfile.rails_7_1 @@ -0,0 +1,14 @@ +# frozen_string_literal: true + +source "https://rubygems.org" +gemspec + +eval_gemfile "../../support/bundler/Gemfile.shared" +eval_gemfile "../../support/bundler/Gemfile.database" + +gem "ruby_event_store", path: "../.." + +gem "sidekiq", "~> 7.2" +gem "influxdb", "~> 0.8.1", require: false +gem "childprocess" +gem "rails", "~> 7.1.5" diff --git a/contrib/ruby_event_store-outbox/Gemfile.rails_7_1.lock b/contrib/ruby_event_store-outbox/Gemfile.rails_7_1.lock new file mode 100644 index 0000000000..34d1ad28a8 --- /dev/null +++ b/contrib/ruby_event_store-outbox/Gemfile.rails_7_1.lock @@ -0,0 +1,281 @@ +PATH + remote: ../.. + specs: + ruby_event_store (2.15.0) + concurrent-ruby (~> 1.0, >= 1.1.6) + +PATH + remote: . + specs: + ruby_event_store-outbox (0.0.28) + activerecord (>= 6.0) + ruby_event_store (>= 1.0.0) + +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.1.5.1) + actionpack (= 7.1.5.1) + activesupport (= 7.1.5.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (7.1.5.1) + actionpack (= 7.1.5.1) + activejob (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + mail (>= 2.7.1) + net-imap + net-pop + net-smtp + actionmailer (7.1.5.1) + actionpack (= 7.1.5.1) + actionview (= 7.1.5.1) + activejob (= 7.1.5.1) + activesupport (= 7.1.5.1) + mail (~> 2.5, >= 2.5.4) + net-imap + net-pop + net-smtp + rails-dom-testing (~> 2.2) + actionpack (7.1.5.1) + actionview (= 7.1.5.1) + activesupport (= 7.1.5.1) + 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.5.1) + actionpack (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.1.5.1) + activesupport (= 7.1.5.1) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.1.5.1) + activesupport (= 7.1.5.1) + globalid (>= 0.3.6) + activemodel (7.1.5.1) + activesupport (= 7.1.5.1) + activerecord (7.1.5.1) + activemodel (= 7.1.5.1) + activesupport (= 7.1.5.1) + timeout (>= 0.4.0) + activestorage (7.1.5.1) + actionpack (= 7.1.5.1) + activejob (= 7.1.5.1) + activerecord (= 7.1.5.1) + activesupport (= 7.1.5.1) + marcel (~> 1.0) + activesupport (7.1.5.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + builder (3.3.0) + childprocess (5.1.0) + logger (~> 1.5) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crass (1.0.6) + date (3.4.1) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.1) + globalid (1.2.1) + activesupport (>= 6.1) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + influxdb (0.8.1) + io-console (0.8.0) + irb (1.14.3) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + logger (1.6.4) + loofah (2.24.0) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + mini_mime (1.1.5) + minitest (5.25.4) + mutant (0.12.0) + diff-lcs (~> 1.3) + parser (~> 3.3.0) + regexp_parser (~> 2.9.0) + sorbet-runtime (~> 0.5.0) + unparser (~> 0.6.9) + mutant-minitest (0.12.0) + minitest (~> 5.11) + mutant (= 0.12.0) + mutant-rspec (0.12.0) + mutant (= 0.12.0) + rspec-core (>= 3.8.0, < 4.0.0) + mutex_m (0.3.0) + mysql2 (0.5.6) + net-imap (0.5.4) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.4) + nokogiri (1.18.1-aarch64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-aarch64-linux-musl) + racc (~> 1.4) + nokogiri (1.18.1-arm-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-arm-linux-musl) + racc (~> 1.4) + nokogiri (1.18.1-arm64-darwin) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-darwin) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-linux-musl) + racc (~> 1.4) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + pg (1.5.9) + psych (5.2.2) + date + stringio + racc (1.8.1) + rack (3.1.8) + rack-session (2.0.0) + rack (>= 3.0.0) + rack-test (2.2.0) + rack (>= 1.3) + rackup (2.2.1) + rack (>= 3) + rails (7.1.5.1) + actioncable (= 7.1.5.1) + actionmailbox (= 7.1.5.1) + actionmailer (= 7.1.5.1) + actionpack (= 7.1.5.1) + actiontext (= 7.1.5.1) + actionview (= 7.1.5.1) + activejob (= 7.1.5.1) + activemodel (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + bundler (>= 1.15.0) + railties (= 7.1.5.1) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.2) + loofah (~> 2.21) + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.1.5.1) + actionpack (= 7.1.5.1) + activesupport (= 7.1.5.1) + irb + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rake (13.2.1) + rdoc (6.10.0) + psych (>= 4.0.0) + redis-client (0.23.0) + connection_pool + regexp_parser (2.9.3) + reline (0.6.0) + io-console (~> 0.5) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.2) + securerandom (0.4.1) + sidekiq (7.3.7) + connection_pool (>= 2.3.0) + logger + rack (>= 2.2.4) + redis-client (>= 0.22.2) + sorbet-runtime (0.5.11710) + sqlite3 (1.7.3-aarch64-linux) + sqlite3 (1.7.3-arm-linux) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86_64-darwin) + sqlite3 (1.7.3-x86_64-linux) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin + x86_64-darwin + x86_64-linux + +DEPENDENCIES + childprocess + influxdb (~> 0.8.1) + mutant (= 0.12.0) + mutant-minitest (= 0.12.0) + mutant-rspec (= 0.12.0) + mysql2 (~> 0.5.6) + pg (~> 1.5.6) + rails (~> 7.1.5) + rake (>= 10.0) + rspec (~> 3.6) + ruby_event_store! + ruby_event_store-outbox! + sidekiq (~> 7.2) + sqlite3 (~> 1.7) + +BUNDLED WITH + 2.5.15 diff --git a/contrib/ruby_event_store-profiler/Gemfile b/contrib/ruby_event_store-profiler/Gemfile index 82f7529693..b4b728cef2 100644 --- a/contrib/ruby_event_store-profiler/Gemfile +++ b/contrib/ruby_event_store-profiler/Gemfile @@ -8,4 +8,5 @@ eval_gemfile "../../support/bundler/Gemfile.shared" gem "ruby_event_store", path: "../.." gem "aggregate_root", path: "../.." -gem "activesupport", "~> 7.1.3" \ No newline at end of file +gem "activesupport", "~> 7.2.2.1" + diff --git a/contrib/ruby_event_store-profiler/Gemfile.lock b/contrib/ruby_event_store-profiler/Gemfile.lock index f05d52f053..6be07941c6 100644 --- a/contrib/ruby_event_store-profiler/Gemfile.lock +++ b/contrib/ruby_event_store-profiler/Gemfile.lock @@ -15,25 +15,29 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) - bigdecimal (3.1.8) + benchmark (0.4.0) + bigdecimal (3.1.9) concurrent-ruby (1.3.3) connection_pool (2.4.1) diff-lcs (1.5.1) drb (2.2.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -47,7 +51,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) parser (3.3.3.0) ast (~> 2.4.1) racc @@ -67,6 +70,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sorbet-runtime (0.5.11429) tzinfo (2.0.6) concurrent-ruby (~> 1.0) @@ -80,7 +84,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activesupport (~> 7.1.3) + activesupport (~> 7.2.2.1) aggregate_root! mutant (= 0.12.0) mutant-minitest (= 0.12.0) diff --git a/contrib/ruby_event_store-protobuf/Gemfile b/contrib/ruby_event_store-protobuf/Gemfile index 99d97b44f0..cc80bd54d2 100644 --- a/contrib/ruby_event_store-protobuf/Gemfile +++ b/contrib/ruby_event_store-protobuf/Gemfile @@ -14,4 +14,4 @@ gem "ruby_event_store-browser", path: "../.." gem "protobuf_nested_struct" gem "google-protobuf", "~> 3.24" -gem "rails", "~> 7.1.3" +gem "rails", "~> 7.2.2.1" diff --git a/contrib/ruby_event_store-protobuf/Gemfile.lock b/contrib/ruby_event_store-protobuf/Gemfile.lock index d5719bc004..7148620df7 100644 --- a/contrib/ruby_event_store-protobuf/Gemfile.lock +++ b/contrib/ruby_event_store-protobuf/Gemfile.lock @@ -32,93 +32,91 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) + actioncable (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (>= 2.7.1) - net-imap - net-pop - net-smtp - actionmailer (7.1.3.4) - actionpack (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (~> 2.5, >= 2.5.4) - net-imap - net-pop - net-smtp + actionmailbox (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) + actionmailer (7.2.2.1) + actionpack (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (7.1.3.4) - actionview (= 7.1.3.4) - activesupport (= 7.1.3.4) + actionpack (7.2.2.1) + actionview (= 7.2.2.1) + activesupport (= 7.2.2.1) nokogiri (>= 1.8.5) racc - rack (>= 2.2.4) + rack (>= 2.2.4, < 3.2) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actiontext (7.1.3.4) - actionpack (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + useragent (~> 0.16) + actiontext (7.2.2.1) + actionpack (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.1.3.4) - activesupport (= 7.1.3.4) + actionview (7.2.2.1) + activesupport (= 7.2.2.1) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (7.1.3.4) - activesupport (= 7.1.3.4) + activejob (7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.3.6) - activemodel (7.1.3.4) - activesupport (= 7.1.3.4) - activerecord (7.1.3.4) - activemodel (= 7.1.3.4) - activesupport (= 7.1.3.4) + activemodel (7.2.2.1) + activesupport (= 7.2.2.1) + activerecord (7.2.2.1) + activemodel (= 7.2.2.1) + activesupport (= 7.2.2.1) timeout (>= 0.4.0) - activestorage (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activesupport (= 7.1.3.4) + activestorage (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activesupport (= 7.2.2.1) marcel (~> 1.0) - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) arkency-command_bus (0.4.1) concurrent-ruby ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) bigdecimal (3.1.8) builder (3.3.0) concurrent-ruby (1.3.3) connection_pool (2.4.1) crass (1.0.6) - date (3.3.4) + date (3.4.1) diff-lcs (1.5.1) drb (2.2.1) - erubi (1.12.0) + erubi (1.13.1) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.5-arm64-darwin) @@ -126,11 +124,12 @@ GEM google-protobuf (3.25.5-x86_64-linux) i18n (1.14.5) concurrent-ruby (~> 1.0) - io-console (0.7.2) - irb (1.13.1) + io-console (0.8.0) + irb (1.14.3) rdoc (>= 4.0.0) reline (>= 0.4.2) - loofah (2.22.0) + logger (1.6.4) + loofah (2.24.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -153,8 +152,7 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) - net-imap (0.4.12) + net-imap (0.5.4) date net-protocol net-pop (0.1.2) @@ -163,63 +161,63 @@ GEM timeout net-smtp (0.5.0) net-protocol - nio4r (2.7.3) - nokogiri (1.16.5-arm64-darwin) + nio4r (2.7.4) + nokogiri (1.18.1-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-darwin) + nokogiri (1.18.1-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-linux) + nokogiri (1.18.1-x86_64-linux-gnu) racc (~> 1.4) parser (3.3.3.0) ast (~> 2.4.1) racc protobuf_nested_struct (1.1.0) google-protobuf - psych (5.1.2) + psych (5.2.2) + date stringio racc (1.8.0) rack (3.1.3) rack-session (2.0.0) rack (>= 3.0.0) - rack-test (2.1.0) + rack-test (2.2.0) rack (>= 1.3) - rackup (2.1.0) + rackup (2.2.1) rack (>= 3) - webrick (~> 1.8) - rails (7.1.3.4) - actioncable (= 7.1.3.4) - actionmailbox (= 7.1.3.4) - actionmailer (= 7.1.3.4) - actionpack (= 7.1.3.4) - actiontext (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activemodel (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + rails (7.2.2.1) + actioncable (= 7.2.2.1) + actionmailbox (= 7.2.2.1) + actionmailer (= 7.2.2.1) + actionpack (= 7.2.2.1) + actiontext (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activemodel (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) bundler (>= 1.15.0) - railties (= 7.1.3.4) + railties (= 7.2.2.1) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.0) + rails-html-sanitizer (1.6.2) loofah (~> 2.21) - nokogiri (~> 1.14) - railties (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) - irb + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) + irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rake (13.2.1) - rdoc (6.7.0) + rdoc (6.10.0) psych (>= 4.0.0) regexp_parser (2.9.2) - reline (0.5.9) + reline (0.6.0) io-console (~> 0.5) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -234,20 +232,21 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sorbet-runtime (0.5.11429) - stringio (3.1.0) - thor (1.3.1) + stringio (3.1.2) + thor (1.3.2) timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unparser (0.6.14) diff-lcs (~> 1.3) parser (>= 3.3.0) - webrick (1.8.1) + useragent (0.16.11) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) - zeitwerk (2.6.15) + zeitwerk (2.7.1) PLATFORMS arm64-darwin @@ -261,7 +260,7 @@ DEPENDENCIES mutant-minitest (= 0.12.0) mutant-rspec (= 0.12.0) protobuf_nested_struct - rails (~> 7.1.3) + rails (~> 7.2.2.1) rails_event_store! rails_event_store_active_record! rake (>= 10.0) diff --git a/contrib/ruby_event_store-protobuf/Gemfile.rails_7_0.lock b/contrib/ruby_event_store-protobuf/Gemfile.rails_7_0.lock index cfbef3d8f8..358602fd86 100644 --- a/contrib/ruby_event_store-protobuf/Gemfile.rails_7_0.lock +++ b/contrib/ruby_event_store-protobuf/Gemfile.rails_7_0.lock @@ -32,67 +32,67 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (7.0.8.4) - actionpack (= 7.0.8.4) - activesupport (= 7.0.8.4) + actioncable (7.0.8.7) + actionpack (= 7.0.8.7) + activesupport (= 7.0.8.7) nio4r (~> 2.0) websocket-driver (>= 0.6.1) - actionmailbox (7.0.8.4) - actionpack (= 7.0.8.4) - activejob (= 7.0.8.4) - activerecord (= 7.0.8.4) - activestorage (= 7.0.8.4) - activesupport (= 7.0.8.4) + actionmailbox (7.0.8.7) + actionpack (= 7.0.8.7) + activejob (= 7.0.8.7) + activerecord (= 7.0.8.7) + activestorage (= 7.0.8.7) + activesupport (= 7.0.8.7) mail (>= 2.7.1) net-imap net-pop net-smtp - actionmailer (7.0.8.4) - actionpack (= 7.0.8.4) - actionview (= 7.0.8.4) - activejob (= 7.0.8.4) - activesupport (= 7.0.8.4) + actionmailer (7.0.8.7) + actionpack (= 7.0.8.7) + actionview (= 7.0.8.7) + activejob (= 7.0.8.7) + activesupport (= 7.0.8.7) mail (~> 2.5, >= 2.5.4) net-imap net-pop net-smtp rails-dom-testing (~> 2.0) - actionpack (7.0.8.4) - actionview (= 7.0.8.4) - activesupport (= 7.0.8.4) + actionpack (7.0.8.7) + actionview (= 7.0.8.7) + activesupport (= 7.0.8.7) rack (~> 2.0, >= 2.2.4) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actiontext (7.0.8.4) - actionpack (= 7.0.8.4) - activerecord (= 7.0.8.4) - activestorage (= 7.0.8.4) - activesupport (= 7.0.8.4) + actiontext (7.0.8.7) + actionpack (= 7.0.8.7) + activerecord (= 7.0.8.7) + activestorage (= 7.0.8.7) + activesupport (= 7.0.8.7) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.0.8.4) - activesupport (= 7.0.8.4) + actionview (7.0.8.7) + activesupport (= 7.0.8.7) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - activejob (7.0.8.4) - activesupport (= 7.0.8.4) + activejob (7.0.8.7) + activesupport (= 7.0.8.7) globalid (>= 0.3.6) - activemodel (7.0.8.4) - activesupport (= 7.0.8.4) - activerecord (7.0.8.4) - activemodel (= 7.0.8.4) - activesupport (= 7.0.8.4) - activestorage (7.0.8.4) - actionpack (= 7.0.8.4) - activejob (= 7.0.8.4) - activerecord (= 7.0.8.4) - activesupport (= 7.0.8.4) + activemodel (7.0.8.7) + activesupport (= 7.0.8.7) + activerecord (7.0.8.7) + activemodel (= 7.0.8.7) + activesupport (= 7.0.8.7) + activestorage (7.0.8.7) + actionpack (= 7.0.8.7) + activejob (= 7.0.8.7) + activerecord (= 7.0.8.7) + activesupport (= 7.0.8.7) marcel (~> 1.0) mini_mime (>= 1.1.0) - activesupport (7.0.8.4) + activesupport (7.0.8.7) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -103,9 +103,9 @@ GEM builder (3.3.0) concurrent-ruby (1.3.3) crass (1.0.6) - date (3.3.4) + date (3.4.1) diff-lcs (1.5.1) - erubi (1.12.0) + erubi (1.13.1) globalid (1.2.1) activesupport (>= 6.1) google-protobuf (3.25.5) @@ -114,7 +114,7 @@ GEM google-protobuf (3.25.5-x86_64-linux) i18n (1.14.5) concurrent-ruby (~> 1.0) - loofah (2.22.0) + loofah (2.24.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -125,7 +125,7 @@ GEM marcel (1.0.4) method_source (1.1.0) mini_mime (1.1.5) - mini_portile2 (2.8.7) + mini_portile2 (2.8.8) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -139,7 +139,7 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - net-imap (0.4.12) + net-imap (0.5.4) date net-protocol net-pop (0.1.2) @@ -148,15 +148,15 @@ GEM timeout net-smtp (0.5.0) net-protocol - nio4r (2.7.3) - nokogiri (1.16.5) + nio4r (2.7.4) + nokogiri (1.18.1) mini_portile2 (~> 2.8.2) racc (~> 1.4) - nokogiri (1.16.5-arm64-darwin) + nokogiri (1.18.1-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-darwin) + nokogiri (1.18.1-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-linux) + nokogiri (1.18.1-x86_64-linux-gnu) racc (~> 1.4) parser (3.3.3.0) ast (~> 2.4.1) @@ -165,32 +165,32 @@ GEM google-protobuf racc (1.8.0) rack (2.2.9) - rack-test (2.1.0) + rack-test (2.2.0) rack (>= 1.3) - rails (7.0.8.4) - actioncable (= 7.0.8.4) - actionmailbox (= 7.0.8.4) - actionmailer (= 7.0.8.4) - actionpack (= 7.0.8.4) - actiontext (= 7.0.8.4) - actionview (= 7.0.8.4) - activejob (= 7.0.8.4) - activemodel (= 7.0.8.4) - activerecord (= 7.0.8.4) - activestorage (= 7.0.8.4) - activesupport (= 7.0.8.4) + rails (7.0.8.7) + actioncable (= 7.0.8.7) + actionmailbox (= 7.0.8.7) + actionmailer (= 7.0.8.7) + actionpack (= 7.0.8.7) + actiontext (= 7.0.8.7) + actionview (= 7.0.8.7) + activejob (= 7.0.8.7) + activemodel (= 7.0.8.7) + activerecord (= 7.0.8.7) + activestorage (= 7.0.8.7) + activesupport (= 7.0.8.7) bundler (>= 1.15.0) - railties (= 7.0.8.4) + railties (= 7.0.8.7) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.0) + rails-html-sanitizer (1.6.2) loofah (~> 2.21) - nokogiri (~> 1.14) - railties (7.0.8.4) - actionpack (= 7.0.8.4) - activesupport (= 7.0.8.4) + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.0.8.7) + actionpack (= 7.0.8.7) + activesupport (= 7.0.8.7) method_source rake (>= 12.2) thor (~> 1.0) @@ -211,8 +211,8 @@ GEM rspec-support (~> 3.13.0) rspec-support (3.13.1) sorbet-runtime (0.5.11429) - thor (1.3.1) - timeout (0.4.1) + thor (1.3.2) + timeout (0.4.3) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unparser (0.6.14) @@ -221,7 +221,7 @@ GEM websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) - zeitwerk (2.6.15) + zeitwerk (2.7.1) PLATFORMS arm64-darwin diff --git a/contrib/ruby_event_store-protobuf/Gemfile.rails_7_1 b/contrib/ruby_event_store-protobuf/Gemfile.rails_7_1 new file mode 100644 index 0000000000..417b261097 --- /dev/null +++ b/contrib/ruby_event_store-protobuf/Gemfile.rails_7_1 @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +source "https://rubygems.org" +gemspec + +eval_gemfile "../../support/bundler/Gemfile.shared" + +gem "ruby_event_store", path: "../.." +gem "aggregate_root", path: "../.." +gem "rails_event_store", path: "../.." +gem "ruby_event_store-active_record", path: "../.." +gem "rails_event_store_active_record", path: "../.." +gem "ruby_event_store-browser", path: "../.." + +gem "protobuf_nested_struct" +gem "google-protobuf", "~> 3.24" +gem "rails", "~> 7.1.5" diff --git a/contrib/ruby_event_store-protobuf/Gemfile.rails_7_1.lock b/contrib/ruby_event_store-protobuf/Gemfile.rails_7_1.lock new file mode 100644 index 0000000000..41d6444dfe --- /dev/null +++ b/contrib/ruby_event_store-protobuf/Gemfile.rails_7_1.lock @@ -0,0 +1,292 @@ +PATH + remote: ../.. + specs: + aggregate_root (2.15.0) + ruby_event_store (= 2.15.0) + rails_event_store (2.15.0) + activejob (>= 6.0) + activemodel (>= 6.0) + activesupport (>= 6.0) + aggregate_root (= 2.15.0) + arkency-command_bus (>= 0.4) + rails_event_store_active_record (= 2.15.0) + ruby_event_store (= 2.15.0) + ruby_event_store-browser (= 2.15.0) + rails_event_store_active_record (2.15.0) + ruby_event_store-active_record (= 2.15.0) + ruby_event_store (2.15.0) + concurrent-ruby (~> 1.0, >= 1.1.6) + ruby_event_store-active_record (2.15.0) + activerecord (>= 6.0) + ruby_event_store (= 2.15.0) + ruby_event_store-browser (2.15.0) + rack + ruby_event_store (= 2.15.0) + +PATH + remote: . + specs: + ruby_event_store-protobuf (1.0.0) + ruby_event_store (>= 2.0.0, < 3.0.0) + +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.1.5.1) + actionpack (= 7.1.5.1) + activesupport (= 7.1.5.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (7.1.5.1) + actionpack (= 7.1.5.1) + activejob (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + mail (>= 2.7.1) + net-imap + net-pop + net-smtp + actionmailer (7.1.5.1) + actionpack (= 7.1.5.1) + actionview (= 7.1.5.1) + activejob (= 7.1.5.1) + activesupport (= 7.1.5.1) + mail (~> 2.5, >= 2.5.4) + net-imap + net-pop + net-smtp + rails-dom-testing (~> 2.2) + actionpack (7.1.5.1) + actionview (= 7.1.5.1) + activesupport (= 7.1.5.1) + 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.5.1) + actionpack (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.1.5.1) + activesupport (= 7.1.5.1) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.1.5.1) + activesupport (= 7.1.5.1) + globalid (>= 0.3.6) + activemodel (7.1.5.1) + activesupport (= 7.1.5.1) + activerecord (7.1.5.1) + activemodel (= 7.1.5.1) + activesupport (= 7.1.5.1) + timeout (>= 0.4.0) + activestorage (7.1.5.1) + actionpack (= 7.1.5.1) + activejob (= 7.1.5.1) + activerecord (= 7.1.5.1) + activesupport (= 7.1.5.1) + marcel (~> 1.0) + activesupport (7.1.5.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + arkency-command_bus (0.4.1) + concurrent-ruby + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + builder (3.3.0) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crass (1.0.6) + date (3.4.1) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.1) + globalid (1.2.1) + activesupport (>= 6.1) + google-protobuf (3.25.5) + google-protobuf (3.25.5-aarch64-linux) + google-protobuf (3.25.5-arm64-darwin) + google-protobuf (3.25.5-x86_64-darwin) + google-protobuf (3.25.5-x86_64-linux) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + io-console (0.8.0) + irb (1.14.3) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + logger (1.6.4) + loofah (2.24.0) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + mini_mime (1.1.5) + minitest (5.25.4) + mutant (0.12.0) + diff-lcs (~> 1.3) + parser (~> 3.3.0) + regexp_parser (~> 2.9.0) + sorbet-runtime (~> 0.5.0) + unparser (~> 0.6.9) + mutant-minitest (0.12.0) + minitest (~> 5.11) + mutant (= 0.12.0) + mutant-rspec (0.12.0) + mutant (= 0.12.0) + rspec-core (>= 3.8.0, < 4.0.0) + mutex_m (0.3.0) + net-imap (0.5.4) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.4) + nokogiri (1.18.1-aarch64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-aarch64-linux-musl) + racc (~> 1.4) + nokogiri (1.18.1-arm-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-arm-linux-musl) + racc (~> 1.4) + nokogiri (1.18.1-arm64-darwin) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-darwin) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-linux-musl) + racc (~> 1.4) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + protobuf_nested_struct (1.1.0) + google-protobuf + psych (5.2.2) + date + stringio + racc (1.8.1) + rack (3.1.8) + rack-session (2.0.0) + rack (>= 3.0.0) + rack-test (2.2.0) + rack (>= 1.3) + rackup (2.2.1) + rack (>= 3) + rails (7.1.5.1) + actioncable (= 7.1.5.1) + actionmailbox (= 7.1.5.1) + actionmailer (= 7.1.5.1) + actionpack (= 7.1.5.1) + actiontext (= 7.1.5.1) + actionview (= 7.1.5.1) + activejob (= 7.1.5.1) + activemodel (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + bundler (>= 1.15.0) + railties (= 7.1.5.1) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.2) + loofah (~> 2.21) + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.1.5.1) + actionpack (= 7.1.5.1) + activesupport (= 7.1.5.1) + irb + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rake (13.2.1) + rdoc (6.10.0) + psych (>= 4.0.0) + regexp_parser (2.9.3) + reline (0.6.0) + io-console (~> 0.5) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.2) + securerandom (0.4.1) + sorbet-runtime (0.5.11711) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin + x86_64-darwin + x86_64-linux + +DEPENDENCIES + aggregate_root! + google-protobuf (~> 3.24) + mutant (= 0.12.0) + mutant-minitest (= 0.12.0) + mutant-rspec (= 0.12.0) + protobuf_nested_struct + rails (~> 7.1.5) + rails_event_store! + rails_event_store_active_record! + rake (>= 10.0) + rspec (~> 3.6) + ruby_event_store! + ruby_event_store-active_record! + ruby_event_store-browser! + ruby_event_store-protobuf! + +BUNDLED WITH + 2.5.15 diff --git a/contrib/ruby_event_store-rom/Gemfile b/contrib/ruby_event_store-rom/Gemfile index ed7f1b2d22..ad7144c43f 100644 --- a/contrib/ruby_event_store-rom/Gemfile +++ b/contrib/ruby_event_store-rom/Gemfile @@ -8,6 +8,5 @@ eval_gemfile "../../support/bundler/Gemfile.database" gem "ruby_event_store", path: "../.." -gem "activesupport", "~> 7.1.3" +gem "activesupport", "~> 7.2.2.1" gem "dry-core", "<= 1.0.0" - diff --git a/contrib/ruby_event_store-rom/Gemfile.lock b/contrib/ruby_event_store-rom/Gemfile.lock index 9e08ecbb89..53e94f1145 100644 --- a/contrib/ruby_event_store-rom/Gemfile.lock +++ b/contrib/ruby_event_store-rom/Gemfile.lock @@ -20,18 +20,21 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) bigdecimal (3.1.8) concurrent-ruby (1.3.3) connection_pool (2.4.1) @@ -62,9 +65,10 @@ GEM dry-inflector (~> 1.0) dry-logic (~> 1.4) zeitwerk (~> 2.6) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) ice_nine (0.11.2) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -78,7 +82,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) mysql2 (0.5.6) parser (3.3.3.0) ast (~> 2.4.1) @@ -126,6 +129,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sequel (5.72.0) bigdecimal sorbet-runtime (0.5.11429) @@ -146,7 +150,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activesupport (~> 7.1.3) + activesupport (~> 7.2.2.1) dry-core (<= 1.0.0) mutant (= 0.12.0) mutant-minitest (= 0.12.0) diff --git a/contrib/ruby_event_store-sequel/Gemfile b/contrib/ruby_event_store-sequel/Gemfile index 26f6a75d09..6d279358b4 100644 --- a/contrib/ruby_event_store-sequel/Gemfile +++ b/contrib/ruby_event_store-sequel/Gemfile @@ -8,4 +8,5 @@ eval_gemfile "../../support/bundler/Gemfile.database" gem "ruby_event_store", path: "../.." -gem "activesupport", "~> 7.1.3" \ No newline at end of file +gem "activesupport", "~> 7.2.2.1" + diff --git a/contrib/ruby_event_store-sequel/Gemfile.lock b/contrib/ruby_event_store-sequel/Gemfile.lock index 7a5256421d..fbfbd378e0 100644 --- a/contrib/ruby_event_store-sequel/Gemfile.lock +++ b/contrib/ruby_event_store-sequel/Gemfile.lock @@ -14,25 +14,29 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) bigdecimal (3.1.8) concurrent-ruby (1.3.3) connection_pool (2.4.1) diff-lcs (1.5.1) drb (2.2.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -46,7 +50,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) mysql2 (0.5.6) parser (3.3.3.0) ast (~> 2.4.1) @@ -68,6 +71,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sequel (5.72.0) bigdecimal sorbet-runtime (0.5.11429) @@ -86,7 +90,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activesupport (~> 7.1.3) + activesupport (~> 7.2.2.1) mutant (= 0.12.0) mutant-minitest (= 0.12.0) mutant-rspec (= 0.12.0) diff --git a/contrib/ruby_event_store-sidekiq_scheduler/Gemfile b/contrib/ruby_event_store-sidekiq_scheduler/Gemfile index 12d8c4a020..e3b2af34a2 100644 --- a/contrib/ruby_event_store-sidekiq_scheduler/Gemfile +++ b/contrib/ruby_event_store-sidekiq_scheduler/Gemfile @@ -8,4 +8,4 @@ eval_gemfile "../../support/bundler/Gemfile.shared" gem "sidekiq", "~> 7.2" gem "ruby_event_store", path: "../.." gem "rails_event_store", path: "../.." -gem "rails", "~> 7.1.3" +gem "rails", "~> 7.2.2.1" diff --git a/contrib/ruby_event_store-sidekiq_scheduler/Gemfile.lock b/contrib/ruby_event_store-sidekiq_scheduler/Gemfile.lock index 2c5281c772..9487aabe9e 100644 --- a/contrib/ruby_event_store-sidekiq_scheduler/Gemfile.lock +++ b/contrib/ruby_event_store-sidekiq_scheduler/Gemfile.lock @@ -32,102 +32,101 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) + actioncable (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (>= 2.7.1) - net-imap - net-pop - net-smtp - actionmailer (7.1.3.4) - actionpack (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (~> 2.5, >= 2.5.4) - net-imap - net-pop - net-smtp + actionmailbox (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) + actionmailer (7.2.2.1) + actionpack (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (7.1.3.4) - actionview (= 7.1.3.4) - activesupport (= 7.1.3.4) + actionpack (7.2.2.1) + actionview (= 7.2.2.1) + activesupport (= 7.2.2.1) nokogiri (>= 1.8.5) racc - rack (>= 2.2.4) + rack (>= 2.2.4, < 3.2) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actiontext (7.1.3.4) - actionpack (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + useragent (~> 0.16) + actiontext (7.2.2.1) + actionpack (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.1.3.4) - activesupport (= 7.1.3.4) + actionview (7.2.2.1) + activesupport (= 7.2.2.1) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (7.1.3.4) - activesupport (= 7.1.3.4) + activejob (7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.3.6) - activemodel (7.1.3.4) - activesupport (= 7.1.3.4) - activerecord (7.1.3.4) - activemodel (= 7.1.3.4) - activesupport (= 7.1.3.4) + activemodel (7.2.2.1) + activesupport (= 7.2.2.1) + activerecord (7.2.2.1) + activemodel (= 7.2.2.1) + activesupport (= 7.2.2.1) timeout (>= 0.4.0) - activestorage (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activesupport (= 7.1.3.4) + activestorage (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activesupport (= 7.2.2.1) marcel (~> 1.0) - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) arkency-command_bus (0.4.1) concurrent-ruby ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) bigdecimal (3.1.8) builder (3.3.0) concurrent-ruby (1.3.3) connection_pool (2.4.1) crass (1.0.6) - date (3.3.4) + date (3.4.1) diff-lcs (1.5.1) drb (2.2.1) - erubi (1.12.0) + erubi (1.13.1) globalid (1.2.1) activesupport (>= 6.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - io-console (0.7.2) - irb (1.13.1) + io-console (0.8.0) + irb (1.14.3) rdoc (>= 4.0.0) reline (>= 0.4.2) - loofah (2.22.0) + logger (1.6.4) + loofah (2.24.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -150,8 +149,7 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) - net-imap (0.4.12) + net-imap (0.5.4) date net-protocol net-pop (0.1.2) @@ -160,63 +158,64 @@ GEM timeout net-smtp (0.5.0) net-protocol - nio4r (2.7.3) - nokogiri (1.16.5-arm64-darwin) + nio4r (2.7.4) + nokogiri (1.18.1-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-darwin) + nokogiri (1.18.1-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-linux) + nokogiri (1.18.1-x86_64-linux-gnu) racc (~> 1.4) parser (3.3.3.0) ast (~> 2.4.1) racc - psych (5.1.2) + psych (5.2.2) + date stringio racc (1.8.0) rack (2.2.9) rack-session (1.0.2) rack (< 3) - rack-test (2.1.0) + rack-test (2.2.0) rack (>= 1.3) - rackup (1.0.0) + rackup (1.0.1) rack (< 3) webrick - rails (7.1.3.4) - actioncable (= 7.1.3.4) - actionmailbox (= 7.1.3.4) - actionmailer (= 7.1.3.4) - actionpack (= 7.1.3.4) - actiontext (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activemodel (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + rails (7.2.2.1) + actioncable (= 7.2.2.1) + actionmailbox (= 7.2.2.1) + actionmailer (= 7.2.2.1) + actionpack (= 7.2.2.1) + actiontext (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activemodel (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) bundler (>= 1.15.0) - railties (= 7.1.3.4) + railties (= 7.2.2.1) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.0) + rails-html-sanitizer (1.6.2) loofah (~> 2.21) - nokogiri (~> 1.14) - railties (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) - irb + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) + irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rake (13.2.1) - rdoc (6.7.0) + rdoc (6.10.0) psych (>= 4.0.0) redis-client (0.21.1) connection_pool regexp_parser (2.9.2) - reline (0.5.9) + reline (0.6.0) io-console (~> 0.5) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -231,25 +230,27 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sidekiq (7.2.4) concurrent-ruby (< 2) connection_pool (>= 2.3.0) rack (>= 2.2.4) redis-client (>= 0.19.0) sorbet-runtime (0.5.11429) - stringio (3.1.0) - thor (1.3.1) + stringio (3.1.2) + thor (1.3.2) timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unparser (0.6.14) diff-lcs (~> 1.3) parser (>= 3.3.0) - webrick (1.8.1) + useragent (0.16.11) + webrick (1.9.1) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) - zeitwerk (2.6.15) + zeitwerk (2.7.1) PLATFORMS arm64-darwin @@ -260,7 +261,7 @@ DEPENDENCIES mutant (= 0.12.0) mutant-minitest (= 0.12.0) mutant-rspec (= 0.12.0) - rails (~> 7.1.3) + rails (~> 7.2.2.1) rails_event_store! rake (>= 10.0) rspec (~> 3.6) diff --git a/rails_event_store/Gemfile b/rails_event_store/Gemfile index 26fc066bc5..f49d16446f 100644 --- a/rails_event_store/Gemfile +++ b/rails_event_store/Gemfile @@ -13,5 +13,5 @@ gem "aggregate_root", path: ".." gem "sidekiq" gem "rack-test" -gem "rails", "~> 7.1.3" +gem "rails", "~> 7.2.2.1" gem "sqlite3", "~> 1.7" diff --git a/rails_event_store/Gemfile.lock b/rails_event_store/Gemfile.lock index dfed455c7a..5b651488bb 100644 --- a/rails_event_store/Gemfile.lock +++ b/rails_event_store/Gemfile.lock @@ -30,102 +30,101 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) + actioncable (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (>= 2.7.1) - net-imap - net-pop - net-smtp - actionmailer (7.1.3.4) - actionpack (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activesupport (= 7.1.3.4) - mail (~> 2.5, >= 2.5.4) - net-imap - net-pop - net-smtp + actionmailbox (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) + actionmailer (7.2.2.1) + actionpack (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activesupport (= 7.2.2.1) + mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (7.1.3.4) - actionview (= 7.1.3.4) - activesupport (= 7.1.3.4) + actionpack (7.2.2.1) + actionview (= 7.2.2.1) + activesupport (= 7.2.2.1) nokogiri (>= 1.8.5) racc - rack (>= 2.2.4) + rack (>= 2.2.4, < 3.2) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actiontext (7.1.3.4) - actionpack (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + useragent (~> 0.16) + actiontext (7.2.2.1) + actionpack (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.1.3.4) - activesupport (= 7.1.3.4) + actionview (7.2.2.1) + activesupport (= 7.2.2.1) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (7.1.3.4) - activesupport (= 7.1.3.4) + activejob (7.2.2.1) + activesupport (= 7.2.2.1) globalid (>= 0.3.6) - activemodel (7.1.3.4) - activesupport (= 7.1.3.4) - activerecord (7.1.3.4) - activemodel (= 7.1.3.4) - activesupport (= 7.1.3.4) + activemodel (7.2.2.1) + activesupport (= 7.2.2.1) + activerecord (7.2.2.1) + activemodel (= 7.2.2.1) + activesupport (= 7.2.2.1) timeout (>= 0.4.0) - activestorage (7.1.3.4) - actionpack (= 7.1.3.4) - activejob (= 7.1.3.4) - activerecord (= 7.1.3.4) - activesupport (= 7.1.3.4) + activestorage (7.2.2.1) + actionpack (= 7.2.2.1) + activejob (= 7.2.2.1) + activerecord (= 7.2.2.1) + activesupport (= 7.2.2.1) marcel (~> 1.0) - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) arkency-command_bus (0.4.1) concurrent-ruby ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) bigdecimal (3.1.8) builder (3.3.0) concurrent-ruby (1.3.3) connection_pool (2.4.1) crass (1.0.6) - date (3.3.4) + date (3.4.1) diff-lcs (1.5.1) drb (2.2.1) - erubi (1.12.0) + erubi (1.13.1) globalid (1.2.1) activesupport (>= 6.1) i18n (1.14.5) concurrent-ruby (~> 1.0) - io-console (0.7.2) - irb (1.13.1) + io-console (0.8.0) + irb (1.14.3) rdoc (>= 4.0.0) reline (>= 0.4.2) - loofah (2.22.0) + logger (1.6.4) + loofah (2.24.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) mail (2.8.1) @@ -148,8 +147,7 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) - net-imap (0.4.12) + net-imap (0.5.4) date net-protocol net-pop (0.1.2) @@ -158,17 +156,18 @@ GEM timeout net-smtp (0.5.0) net-protocol - nio4r (2.7.3) - nokogiri (1.16.5-arm64-darwin) + nio4r (2.7.4) + nokogiri (1.18.1-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-darwin) + nokogiri (1.18.1-x86_64-darwin) racc (~> 1.4) - nokogiri (1.16.5-x86_64-linux) + nokogiri (1.18.1-x86_64-linux-gnu) racc (~> 1.4) parser (3.3.3.0) ast (~> 2.4.1) racc - psych (5.1.2) + psych (5.2.2) + date stringio racc (1.8.0) rack (3.1.3) @@ -176,45 +175,44 @@ GEM rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rackup (2.1.0) + rackup (2.2.1) rack (>= 3) - webrick (~> 1.8) - rails (7.1.3.4) - actioncable (= 7.1.3.4) - actionmailbox (= 7.1.3.4) - actionmailer (= 7.1.3.4) - actionpack (= 7.1.3.4) - actiontext (= 7.1.3.4) - actionview (= 7.1.3.4) - activejob (= 7.1.3.4) - activemodel (= 7.1.3.4) - activerecord (= 7.1.3.4) - activestorage (= 7.1.3.4) - activesupport (= 7.1.3.4) + rails (7.2.2.1) + actioncable (= 7.2.2.1) + actionmailbox (= 7.2.2.1) + actionmailer (= 7.2.2.1) + actionpack (= 7.2.2.1) + actiontext (= 7.2.2.1) + actionview (= 7.2.2.1) + activejob (= 7.2.2.1) + activemodel (= 7.2.2.1) + activerecord (= 7.2.2.1) + activestorage (= 7.2.2.1) + activesupport (= 7.2.2.1) bundler (>= 1.15.0) - railties (= 7.1.3.4) + railties (= 7.2.2.1) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.0) + rails-html-sanitizer (1.6.2) loofah (~> 2.21) - nokogiri (~> 1.14) - railties (7.1.3.4) - actionpack (= 7.1.3.4) - activesupport (= 7.1.3.4) - irb + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.2.2.1) + actionpack (= 7.2.2.1) + activesupport (= 7.2.2.1) + irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rake (13.2.1) - rdoc (6.7.0) + rdoc (6.10.0) psych (>= 4.0.0) redis-client (0.22.2) connection_pool regexp_parser (2.9.2) - reline (0.5.9) + reline (0.6.0) io-console (~> 0.5) rspec (3.13.0) rspec-core (~> 3.13.0) @@ -229,6 +227,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sidekiq (7.2.4) concurrent-ruby (< 2) connection_pool (>= 2.3.0) @@ -238,19 +237,19 @@ GEM sqlite3 (1.7.3-arm64-darwin) sqlite3 (1.7.3-x86_64-darwin) sqlite3 (1.7.3-x86_64-linux) - stringio (3.1.0) - thor (1.3.1) + stringio (3.1.2) + thor (1.3.2) timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unparser (0.6.14) diff-lcs (~> 1.3) parser (>= 3.3.0) - webrick (1.8.1) + useragent (0.16.11) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) - zeitwerk (2.6.15) + zeitwerk (2.7.1) PLATFORMS arm64-darwin @@ -263,7 +262,7 @@ DEPENDENCIES mutant-minitest (= 0.12.0) mutant-rspec (= 0.12.0) rack-test - rails (~> 7.1.3) + rails (~> 7.2.2.1) rails_event_store! rails_event_store_active_record! rake (>= 10.0) diff --git a/rails_event_store/Gemfile.rails_7_1 b/rails_event_store/Gemfile.rails_7_1 new file mode 100644 index 0000000000..3eac56911f --- /dev/null +++ b/rails_event_store/Gemfile.rails_7_1 @@ -0,0 +1,17 @@ +# frozen_string_literal: true + +source "https://rubygems.org" +gemspec + +eval_gemfile "../support/bundler/Gemfile.shared" + +gem "ruby_event_store", path: ".." +gem "ruby_event_store-browser", path: ".." +gem "ruby_event_store-active_record", path: ".." +gem "rails_event_store_active_record", path: ".." +gem "aggregate_root", path: ".." + +gem "sidekiq" +gem "rack-test" +gem "rails", "~> 7.1.5" +gem "sqlite3", "~> 1.7" diff --git a/rails_event_store/Gemfile.rails_7_1.lock b/rails_event_store/Gemfile.rails_7_1.lock new file mode 100644 index 0000000000..5952e7da8a --- /dev/null +++ b/rails_event_store/Gemfile.rails_7_1.lock @@ -0,0 +1,295 @@ +PATH + remote: .. + specs: + aggregate_root (2.15.0) + ruby_event_store (= 2.15.0) + rails_event_store_active_record (2.15.0) + ruby_event_store-active_record (= 2.15.0) + ruby_event_store (2.15.0) + concurrent-ruby (~> 1.0, >= 1.1.6) + ruby_event_store-active_record (2.15.0) + activerecord (>= 6.0) + ruby_event_store (= 2.15.0) + ruby_event_store-browser (2.15.0) + rack + ruby_event_store (= 2.15.0) + +PATH + remote: . + specs: + rails_event_store (2.15.0) + activejob (>= 6.0) + activemodel (>= 6.0) + activesupport (>= 6.0) + aggregate_root (= 2.15.0) + arkency-command_bus (>= 0.4) + rails_event_store_active_record (= 2.15.0) + ruby_event_store (= 2.15.0) + ruby_event_store-browser (= 2.15.0) + +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.1.5.1) + actionpack (= 7.1.5.1) + activesupport (= 7.1.5.1) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (7.1.5.1) + actionpack (= 7.1.5.1) + activejob (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + mail (>= 2.7.1) + net-imap + net-pop + net-smtp + actionmailer (7.1.5.1) + actionpack (= 7.1.5.1) + actionview (= 7.1.5.1) + activejob (= 7.1.5.1) + activesupport (= 7.1.5.1) + mail (~> 2.5, >= 2.5.4) + net-imap + net-pop + net-smtp + rails-dom-testing (~> 2.2) + actionpack (7.1.5.1) + actionview (= 7.1.5.1) + activesupport (= 7.1.5.1) + 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.5.1) + actionpack (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.1.5.1) + activesupport (= 7.1.5.1) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.1.5.1) + activesupport (= 7.1.5.1) + globalid (>= 0.3.6) + activemodel (7.1.5.1) + activesupport (= 7.1.5.1) + activerecord (7.1.5.1) + activemodel (= 7.1.5.1) + activesupport (= 7.1.5.1) + timeout (>= 0.4.0) + activestorage (7.1.5.1) + actionpack (= 7.1.5.1) + activejob (= 7.1.5.1) + activerecord (= 7.1.5.1) + activesupport (= 7.1.5.1) + marcel (~> 1.0) + activesupport (7.1.5.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + arkency-command_bus (0.4.1) + concurrent-ruby + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + builder (3.3.0) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crass (1.0.6) + date (3.4.1) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.1) + globalid (1.2.1) + activesupport (>= 6.1) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + io-console (0.8.0) + irb (1.14.3) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + logger (1.6.4) + loofah (2.24.0) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + mini_mime (1.1.5) + minitest (5.25.4) + mutant (0.12.0) + diff-lcs (~> 1.3) + parser (~> 3.3.0) + regexp_parser (~> 2.9.0) + sorbet-runtime (~> 0.5.0) + unparser (~> 0.6.9) + mutant-minitest (0.12.0) + minitest (~> 5.11) + mutant (= 0.12.0) + mutant-rspec (0.12.0) + mutant (= 0.12.0) + rspec-core (>= 3.8.0, < 4.0.0) + mutex_m (0.3.0) + net-imap (0.5.4) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.4) + nokogiri (1.18.1-aarch64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-aarch64-linux-musl) + racc (~> 1.4) + nokogiri (1.18.1-arm-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-arm-linux-musl) + racc (~> 1.4) + nokogiri (1.18.1-arm64-darwin) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-darwin) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-linux-gnu) + racc (~> 1.4) + nokogiri (1.18.1-x86_64-linux-musl) + racc (~> 1.4) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + psych (5.2.2) + date + stringio + racc (1.8.1) + rack (3.1.8) + rack-session (2.0.0) + rack (>= 3.0.0) + rack-test (2.2.0) + rack (>= 1.3) + rackup (2.2.1) + rack (>= 3) + rails (7.1.5.1) + actioncable (= 7.1.5.1) + actionmailbox (= 7.1.5.1) + actionmailer (= 7.1.5.1) + actionpack (= 7.1.5.1) + actiontext (= 7.1.5.1) + actionview (= 7.1.5.1) + activejob (= 7.1.5.1) + activemodel (= 7.1.5.1) + activerecord (= 7.1.5.1) + activestorage (= 7.1.5.1) + activesupport (= 7.1.5.1) + bundler (>= 1.15.0) + railties (= 7.1.5.1) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.2) + loofah (~> 2.21) + nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0) + railties (7.1.5.1) + actionpack (= 7.1.5.1) + activesupport (= 7.1.5.1) + irb + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rake (13.2.1) + rdoc (6.10.0) + psych (>= 4.0.0) + redis-client (0.23.0) + connection_pool + regexp_parser (2.9.3) + reline (0.6.0) + io-console (~> 0.5) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.2) + securerandom (0.4.1) + sidekiq (7.3.7) + connection_pool (>= 2.3.0) + logger + rack (>= 2.2.4) + redis-client (>= 0.22.2) + sorbet-runtime (0.5.11710) + sqlite3 (1.7.3-aarch64-linux) + sqlite3 (1.7.3-arm-linux) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86_64-darwin) + sqlite3 (1.7.3-x86_64-linux) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin + x86_64-darwin + x86_64-linux + +DEPENDENCIES + aggregate_root! + mutant (= 0.12.0) + mutant-minitest (= 0.12.0) + mutant-rspec (= 0.12.0) + rack-test + rails (~> 7.1.5) + rails_event_store! + rails_event_store_active_record! + rake (>= 10.0) + rspec (~> 3.6) + ruby_event_store! + ruby_event_store-active_record! + ruby_event_store-browser! + sidekiq + sqlite3 (~> 1.7) + +BUNDLED WITH + 2.5.15 diff --git a/rails_event_store/spec/dummy_7_2/Gemfile.lock b/rails_event_store/spec/dummy_7_2/Gemfile.lock index 6d10ae1360..02233cf62f 100644 --- a/rails_event_store/spec/dummy_7_2/Gemfile.lock +++ b/rails_event_store/spec/dummy_7_2/Gemfile.lock @@ -229,16 +229,9 @@ GEM zeitwerk (2.7.1) PLATFORMS - aarch64-linux - aarch64-linux-gnu - aarch64-linux-musl - arm-linux-gnu - arm-linux-musl arm64-darwin x86_64-darwin x86_64-linux - x86_64-linux-gnu - x86_64-linux-musl DEPENDENCIES aggregate_root! diff --git a/ruby_event_store-active_record/Gemfile b/ruby_event_store-active_record/Gemfile index a37997c25f..295568f320 100644 --- a/ruby_event_store-active_record/Gemfile +++ b/ruby_event_store-active_record/Gemfile @@ -9,4 +9,4 @@ eval_gemfile "../support/bundler/Gemfile.database" gem "ruby_event_store", path: ".." gem "childprocess" -gem "activerecord", "~> 7.1.3" +gem "activerecord", "~> 7.2.2.1" diff --git a/ruby_event_store-active_record/Gemfile.activerecord_7_1 b/ruby_event_store-active_record/Gemfile.activerecord_7_1 new file mode 100644 index 0000000000..60d4ae40bb --- /dev/null +++ b/ruby_event_store-active_record/Gemfile.activerecord_7_1 @@ -0,0 +1,12 @@ +# frozen_string_literal: true + +source "https://rubygems.org" +gemspec name: "ruby_event_store-active_record" + +eval_gemfile "../support/bundler/Gemfile.shared" +eval_gemfile "../support/bundler/Gemfile.database" + +gem "ruby_event_store", path: ".." + +gem "childprocess" +gem "activerecord", "~> 7.1.5" diff --git a/ruby_event_store-active_record/Gemfile.activerecord_7_1.lock b/ruby_event_store-active_record/Gemfile.activerecord_7_1.lock new file mode 100644 index 0000000000..6bf7c020e1 --- /dev/null +++ b/ruby_event_store-active_record/Gemfile.activerecord_7_1.lock @@ -0,0 +1,119 @@ +PATH + remote: .. + specs: + ruby_event_store (2.15.0) + concurrent-ruby (~> 1.0, >= 1.1.6) + +PATH + remote: . + specs: + ruby_event_store-active_record (2.15.0) + activerecord (>= 6.0) + ruby_event_store (= 2.15.0) + +GEM + remote: https://rubygems.org/ + specs: + activemodel (7.1.5.1) + activesupport (= 7.1.5.1) + activerecord (7.1.5.1) + activemodel (= 7.1.5.1) + activesupport (= 7.1.5.1) + timeout (>= 0.4.0) + activesupport (7.1.5.1) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + childprocess (5.1.0) + logger (~> 1.5) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + diff-lcs (1.5.1) + drb (2.2.1) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + logger (1.6.4) + minitest (5.25.4) + mutant (0.12.0) + diff-lcs (~> 1.3) + parser (~> 3.3.0) + regexp_parser (~> 2.9.0) + sorbet-runtime (~> 0.5.0) + unparser (~> 0.6.9) + mutant-minitest (0.12.0) + minitest (~> 5.11) + mutant (= 0.12.0) + mutant-rspec (0.12.0) + mutant (= 0.12.0) + rspec-core (>= 3.8.0, < 4.0.0) + mutex_m (0.3.0) + mysql2 (0.5.6) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + pg (1.5.9) + racc (1.8.1) + rake (13.2.1) + regexp_parser (2.9.3) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.13.0) + rspec-support (3.13.2) + securerandom (0.4.1) + sorbet-runtime (0.5.11710) + sqlite3 (1.7.3-aarch64-linux) + sqlite3 (1.7.3-arm-linux) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86-linux) + sqlite3 (1.7.3-x86_64-darwin) + sqlite3 (1.7.3-x86_64-linux) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + +PLATFORMS + arm64-darwin + x86_64-darwin + x86_64-linux + +DEPENDENCIES + activerecord (~> 7.1.5) + childprocess + mutant (= 0.12.0) + mutant-minitest (= 0.12.0) + mutant-rspec (= 0.12.0) + mysql2 (~> 0.5.6) + pg (~> 1.5.6) + rake (>= 10.0) + rspec (~> 3.6) + ruby_event_store! + ruby_event_store-active_record! + sqlite3 (~> 1.7) + +BUNDLED WITH + 2.5.15 diff --git a/ruby_event_store-active_record/Gemfile.lock b/ruby_event_store-active_record/Gemfile.lock index f9aa0dafe1..621b0464d4 100644 --- a/ruby_event_store-active_record/Gemfile.lock +++ b/ruby_event_store-active_record/Gemfile.lock @@ -14,32 +14,36 @@ PATH GEM remote: https://rubygems.org/ specs: - activemodel (7.1.3.4) - activesupport (= 7.1.3.4) - activerecord (7.1.3.4) - activemodel (= 7.1.3.4) - activesupport (= 7.1.3.4) + activemodel (7.2.2.1) + activesupport (= 7.2.2.1) + activerecord (7.2.2.1) + activemodel (= 7.2.2.1) + activesupport (= 7.2.2.1) timeout (>= 0.4.0) - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) - bigdecimal (3.1.8) + benchmark (0.4.0) + bigdecimal (3.1.9) childprocess (5.0.0) concurrent-ruby (1.3.3) connection_pool (2.4.1) diff-lcs (1.5.1) drb (2.2.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -53,7 +57,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) mysql2 (0.5.6) parser (3.3.3.0) ast (~> 2.4.1) @@ -75,11 +78,12 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sorbet-runtime (0.5.11429) sqlite3 (1.7.3-arm64-darwin) sqlite3 (1.7.3-x86_64-darwin) sqlite3 (1.7.3-x86_64-linux) - timeout (0.4.1) + timeout (0.4.3) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unparser (0.6.14) @@ -92,7 +96,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activerecord (~> 7.1.3) + activerecord (~> 7.2.2.1) childprocess mutant (= 0.12.0) mutant-minitest (= 0.12.0) diff --git a/ruby_event_store/Gemfile b/ruby_event_store/Gemfile index 42ea998895..d56b6149c8 100644 --- a/ruby_event_store/Gemfile +++ b/ruby_event_store/Gemfile @@ -6,5 +6,5 @@ gemspec eval_gemfile "../support/bundler/Gemfile.shared" -gem "activesupport", "~> 7.1.3" +gem "activesupport", "~> 7.2.2.1" gem "concurrent-ruby", "~> 1.2" diff --git a/ruby_event_store/Gemfile.lock b/ruby_event_store/Gemfile.lock index e58e1c4701..82136570bc 100644 --- a/ruby_event_store/Gemfile.lock +++ b/ruby_event_store/Gemfile.lock @@ -7,25 +7,29 @@ PATH GEM remote: https://rubygems.org/ specs: - activesupport (7.1.3.4) + activesupport (7.2.2.1) base64 + benchmark (>= 0.3) bigdecimal - concurrent-ruby (~> 1.0, >= 1.0.2) + concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) - mutex_m - tzinfo (~> 2.0) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) base64 (0.2.0) - bigdecimal (3.1.8) + benchmark (0.4.0) + bigdecimal (3.1.9) concurrent-ruby (1.3.3) connection_pool (2.4.1) diff-lcs (1.5.1) drb (2.2.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.4) minitest (5.23.1) mutant (0.12.0) diff-lcs (~> 1.3) @@ -39,7 +43,6 @@ GEM mutant-rspec (0.12.0) mutant (= 0.12.0) rspec-core (>= 3.8.0, < 4.0.0) - mutex_m (0.2.0) ostruct (0.6.1) parser (3.3.3.0) ast (~> 2.4.1) @@ -60,6 +63,7 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.13.0) rspec-support (3.13.1) + securerandom (0.4.1) sorbet-runtime (0.5.11429) tzinfo (2.0.6) concurrent-ruby (~> 1.0) @@ -73,7 +77,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - activesupport (~> 7.1.3) + activesupport (~> 7.2.2.1) concurrent-ruby (~> 1.2) mutant (= 0.12.0) mutant-minitest (= 0.12.0) diff --git a/support/ci/generate b/support/ci/generate index bd242e0f8a..1ec388e0bd 100755 --- a/support/ci/generate +++ b/support/ci/generate @@ -33,11 +33,23 @@ class CI GEMFILE = "Gemfile" - RAILS_GEMFILES = [GEMFILE_RAILS_7_0 = "Gemfile.rails_7_0", GEMFILE_RAILS_6_1 = "Gemfile.rails_6_1"].flatten - - AS_GEMFILES = [GEMFILE_AS_7_0 = "Gemfile.activesupport_7_0", GEMFILE_AS_6_1 = "Gemfile.activesupport_6_1"] + RAILS_GEMFILES = [ + GEMFILE_RAILS_7_1 = "Gemfile.rails_7_1", + GEMFILE_RAILS_7_0 = "Gemfile.rails_7_0", + GEMFILE_RAILS_6_1 = "Gemfile.rails_6_1", + ].flatten - AR_GEMFILES = [GEMFILE_AR_7_0 = "Gemfile.activerecord_7_0", GEMFILE_AR_6_1 = "Gemfile.activerecord_6_1"] + AS_GEMFILES = [ + GEMFILE_AS_7_1 = "Gemfile.activesupport_7_1", + GEMFILE_AS_7_0 = "Gemfile.activesupport_7_0", + GEMFILE_AS_6_1 = "Gemfile.activesupport_6_1", + ] + + AR_GEMFILES = [ + GEMFILE_AR_7_1 = "Gemfile.activerecord_7_1", + GEMFILE_AR_7_0 = "Gemfile.activerecord_7_0", + GEMFILE_AR_6_1 = "Gemfile.activerecord_6_1", + ] SIDEKIQ_GEMFILES = [GEMFILE_SIDEKIQ_6_5 = "Gemfile.sidekiq_6_5"]