diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index 73e9b38..3be6fa6 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -13,9 +13,41 @@ jobs: strategy: fail-fast: false matrix: - ruby-version: [3.2, 3.3, 3.4] - lockfile: ['Gemfile.activerecord-6.1.lock', 'Gemfile.activerecord-7.0.lock', 'Gemfile.activerecord-7.1.lock', 'Gemfile.activerecord-7.2.lock', 'Gemfile.lock'] - + include: + - lockfile: Gemfile.activerecord-6.1.lock + ruby-version: 3.2 + - lockfile: Gemfile.activerecord-7.0.lock + ruby-version: 3.2 + - lockfile: Gemfile.activerecord-7.0.lock + ruby-version: 3.3 + - lockfile: Gemfile.activerecord-7.1.lock + ruby-version: 3.2 + - lockfile: Gemfile.activerecord-7.1.lock + ruby-version: 3.3 + - lockfile: Gemfile.activerecord-7.1.lock + ruby-version: 3.4 + - lockfile: Gemfile.activerecord-7.2.lock + ruby-version: 3.2 + - lockfile: Gemfile.activerecord-7.2.lock + ruby-version: 3.3 + - lockfile: Gemfile.activerecord-7.2.lock + ruby-version: 3.4 + - lockfile: Gemfile.activerecord-8.0.lock + ruby-version: 3.2 + - lockfile: Gemfile.activerecord-8.0.lock + ruby-version: 3.3 + - lockfile: Gemfile.activerecord-8.0.lock + ruby-version: 3.4 + - lockfile: Gemfile.activerecord-8.0.lock + ruby-version: "4.0" + - lockfile: Gemfile.lock + ruby-version: 3.2 + - lockfile: Gemfile.lock + ruby-version: 3.3 + - lockfile: Gemfile.lock + ruby-version: 3.4 + - lockfile: Gemfile.lock + ruby-version: "4.0" steps: - uses: actions/checkout@v3 - name: Set up Ruby diff --git a/Gemfile b/Gemfile index 65a6277..1ec74df 100644 --- a/Gemfile +++ b/Gemfile @@ -28,8 +28,14 @@ lockfile "activerecord-7.2" do gem "railties", "~> 7.2.0" end -lockfile do +lockfile "activerecord-8.0" do gem "activerecord", "~> 8.0.0" gem "rack", "~> 3.2" gem "railties", "~> 8.0.0" end + +lockfile do + gem "activerecord", "~> 8.1.0" + gem "rack", "~> 3.2" + gem "railties", "~> 8.1.0" +end diff --git a/Gemfile.activerecord-6.1.lock b/Gemfile.activerecord-6.1.lock index 219fe2a..e01c787 100644 --- a/Gemfile.activerecord-6.1.lock +++ b/Gemfile.activerecord-6.1.lock @@ -1,9 +1,9 @@ PATH remote: . specs: - guardrail (3.1.0) - activerecord (>= 6.1, < 8.1) - railties (>= 6.1, < 8.1) + guardrail (3.1.1) + activerecord (>= 6.1, < 8.2) + railties (>= 6.1, < 8.2) GEM remote: https://rubygems.org/ @@ -33,45 +33,51 @@ GEM tzinfo (~> 2.0) zeitwerk (~> 2.3) builder (3.3.0) - concurrent-ruby (1.3.5) + concurrent-ruby (1.3.6) crass (1.0.6) - date (3.4.1) - debug (1.10.0) + date (3.5.1) + debug (1.11.1) irb (~> 1.10) reline (>= 0.3.8) + drb (2.2.3) + erb (6.0.4) erubi (1.13.1) - i18n (1.14.7) + i18n (1.14.8) concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.1) + io-console (0.8.2) + irb (1.18.0) pp (>= 0.6.0) + prism (>= 1.3.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - loofah (2.24.1) + loofah (2.25.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) method_source (1.1.0) mini_portile2 (2.8.9) - minitest (5.25.5) - nokogiri (1.18.9) + minitest (6.0.5) + drb (~> 2.0) + prism (~> 1.5) + nokogiri (1.19.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) - pp (0.6.2) + pp (0.6.3) prettyprint prettyprint (0.2.0) - psych (5.2.3) + prism (1.9.0) + psych (5.3.1) date stringio racc (1.8.1) - rack (2.2.17) + rack (2.2.23) rack-test (2.2.0) rack (>= 1.3) rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.2) - loofah (~> 2.21) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) 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 (6.1.7.10) actionpack (= 6.1.7.10) @@ -79,16 +85,19 @@ GEM method_source rake (>= 12.2) thor (~> 1.0) - rake (13.3.0) - rdoc (6.12.0) + rake (13.4.2) + rdoc (7.2.0) + erb psych (>= 4.0.0) - reline (0.6.0) + tsort + reline (0.6.3) io-console (~> 0.5) - stringio (3.1.5) - thor (1.4.0) + stringio (3.2.0) + thor (1.5.0) + tsort (0.2.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - zeitwerk (2.7.3) + zeitwerk (2.7.5) PLATFORMS ruby diff --git a/Gemfile.activerecord-7.0.lock b/Gemfile.activerecord-7.0.lock index aabf266..3d18b2b 100644 --- a/Gemfile.activerecord-7.0.lock +++ b/Gemfile.activerecord-7.0.lock @@ -1,94 +1,117 @@ PATH remote: . specs: - guardrail (3.1.0) - activerecord (>= 6.1, < 8.1) - railties (>= 6.1, < 8.1) + guardrail (3.1.1) + activerecord (>= 6.1, < 8.2) + railties (>= 6.1, < 8.2) GEM remote: https://rubygems.org/ specs: - actionpack (7.0.8.7) - actionview (= 7.0.8.7) - activesupport (= 7.0.8.7) + actionpack (7.0.10) + actionview (= 7.0.10) + activesupport (= 7.0.10) + racc rack (~> 2.0, >= 2.2.4) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (7.0.8.7) - activesupport (= 7.0.8.7) + actionview (7.0.10) + activesupport (= 7.0.10) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - 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) - activesupport (7.0.8.7) + activemodel (7.0.10) + activesupport (= 7.0.10) + activerecord (7.0.10) + activemodel (= 7.0.10) + activesupport (= 7.0.10) + activesupport (7.0.10) + base64 + benchmark (>= 0.3) + bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) + drb i18n (>= 1.6, < 2) + logger (>= 1.4.2) minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) tzinfo (~> 2.0) + base64 (0.3.0) + benchmark (0.5.0) + bigdecimal (4.1.2) builder (3.3.0) - concurrent-ruby (1.3.5) + concurrent-ruby (1.3.6) crass (1.0.6) - date (3.4.1) - debug (1.10.0) + date (3.5.1) + debug (1.11.1) irb (~> 1.10) reline (>= 0.3.8) + drb (2.2.3) + erb (6.0.4) erubi (1.13.1) - i18n (1.14.7) + i18n (1.14.8) concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.1) + io-console (0.8.2) + irb (1.18.0) pp (>= 0.6.0) + prism (>= 1.3.0) rdoc (>= 4.0.0) reline (>= 0.4.2) - loofah (2.24.1) + logger (1.7.0) + loofah (2.25.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) method_source (1.1.0) mini_portile2 (2.8.9) - minitest (5.25.5) - nokogiri (1.18.9) + minitest (6.0.5) + drb (~> 2.0) + prism (~> 1.5) + mutex_m (0.3.0) + nokogiri (1.19.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) - pp (0.6.2) + pp (0.6.3) prettyprint prettyprint (0.2.0) - psych (5.2.3) + prism (1.9.0) + psych (5.3.1) date stringio racc (1.8.1) - rack (2.2.17) + rack (2.2.23) rack-test (2.2.0) rack (>= 1.3) rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.2) - loofah (~> 2.21) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) 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) + railties (7.0.10) + actionpack (= 7.0.10) + activesupport (= 7.0.10) method_source rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) - rake (13.3.0) - rdoc (6.12.0) + rake (13.4.2) + rdoc (7.2.0) + erb psych (>= 4.0.0) - reline (0.6.0) + tsort + reline (0.6.3) io-console (~> 0.5) - stringio (3.1.5) - thor (1.4.0) + securerandom (0.4.1) + stringio (3.2.0) + thor (1.5.0) + tsort (0.2.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - zeitwerk (2.7.3) + zeitwerk (2.7.5) PLATFORMS ruby diff --git a/Gemfile.activerecord-7.1.lock b/Gemfile.activerecord-7.1.lock index 926a9f2..315379f 100644 --- a/Gemfile.activerecord-7.1.lock +++ b/Gemfile.activerecord-7.1.lock @@ -1,16 +1,17 @@ PATH remote: . specs: - guardrail (3.1.0) - activerecord (>= 6.1, < 8.1) - railties (>= 6.1, < 8.1) + guardrail (3.1.1) + activerecord (>= 6.1, < 8.2) + railties (>= 6.1, < 8.2) GEM remote: https://rubygems.org/ specs: - actionpack (7.1.5.2) - actionview (= 7.1.5.2) - activesupport (= 7.1.5.2) + actionpack (7.1.6) + actionview (= 7.1.6) + activesupport (= 7.1.6) + cgi nokogiri (>= 1.8.5) racc rack (>= 2.2.4) @@ -18,19 +19,20 @@ GEM rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actionview (7.1.5.2) - activesupport (= 7.1.5.2) + actionview (7.1.6) + activesupport (= 7.1.6) builder (~> 3.1) + cgi erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activemodel (7.1.5.2) - activesupport (= 7.1.5.2) - activerecord (7.1.5.2) - activemodel (= 7.1.5.2) - activesupport (= 7.1.5.2) + activemodel (7.1.6) + activesupport (= 7.1.6) + activerecord (7.1.6) + activemodel (= 7.1.6) + activesupport (= 7.1.6) timeout (>= 0.4.0) - activesupport (7.1.5.2) + activesupport (7.1.6) base64 benchmark (>= 0.3) bigdecimal @@ -44,77 +46,88 @@ GEM securerandom (>= 0.3) tzinfo (~> 2.0) base64 (0.3.0) - benchmark (0.4.1) - bigdecimal (3.2.2) + benchmark (0.5.0) + bigdecimal (4.1.2) builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.3) + cgi (0.5.1) + concurrent-ruby (1.3.6) + connection_pool (3.0.2) crass (1.0.6) - date (3.4.1) - debug (1.10.0) + date (3.5.1) + debug (1.11.1) irb (~> 1.10) reline (>= 0.3.8) drb (2.2.3) + erb (6.0.4) erubi (1.13.1) - i18n (1.14.7) + i18n (1.14.8) concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.1) + io-console (0.8.2) + irb (1.18.0) pp (>= 0.6.0) + prism (>= 1.3.0) rdoc (>= 4.0.0) reline (>= 0.4.2) logger (1.7.0) - loofah (2.24.1) + loofah (2.25.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mini_portile2 (2.8.9) - minitest (5.25.5) + minitest (6.0.5) + drb (~> 2.0) + prism (~> 1.5) mutex_m (0.3.0) - nokogiri (1.18.9) + nokogiri (1.19.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) - pp (0.6.2) + pp (0.6.3) prettyprint prettyprint (0.2.0) - psych (5.2.3) + prism (1.9.0) + psych (5.3.1) date stringio racc (1.8.1) - rack (3.2.0) - rack-session (2.1.1) + rack (3.2.6) + rack-session (2.1.2) base64 (>= 0.1.0) rack (>= 3.0.0) rack-test (2.2.0) rack (>= 1.3) - rackup (2.2.1) + rackup (2.3.1) rack (>= 3) rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.2) - loofah (~> 2.21) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) 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.2) - actionpack (= 7.1.5.2) - activesupport (= 7.1.5.2) + railties (7.1.6) + actionpack (= 7.1.6) + activesupport (= 7.1.6) + cgi irb rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) zeitwerk (~> 2.6) - rake (13.3.0) - rdoc (6.12.0) + rake (13.4.2) + rdoc (7.2.0) + erb psych (>= 4.0.0) - reline (0.6.0) + tsort + reline (0.6.3) io-console (~> 0.5) securerandom (0.4.1) - stringio (3.1.5) - thor (1.4.0) - timeout (0.4.3) + stringio (3.2.0) + thor (1.5.0) + timeout (0.6.1) + tsort (0.2.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - zeitwerk (2.7.3) + zeitwerk (2.7.5) PLATFORMS ruby diff --git a/Gemfile.activerecord-7.2.lock b/Gemfile.activerecord-7.2.lock index 94b8328..987e123 100644 --- a/Gemfile.activerecord-7.2.lock +++ b/Gemfile.activerecord-7.2.lock @@ -1,37 +1,39 @@ PATH remote: . specs: - guardrail (3.1.0) - activerecord (>= 6.1, < 8.1) - railties (>= 6.1, < 8.1) + guardrail (3.1.1) + activerecord (>= 6.1, < 8.2) + railties (>= 6.1, < 8.2) GEM remote: https://rubygems.org/ specs: - actionpack (7.2.2.2) - actionview (= 7.2.2.2) - activesupport (= 7.2.2.2) + actionpack (7.2.3) + actionview (= 7.2.3) + activesupport (= 7.2.3) + cgi nokogiri (>= 1.8.5) racc - rack (>= 2.2.4, < 3.2) + rack (>= 2.2.4, < 3.3) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) useragent (~> 0.16) - actionview (7.2.2.2) - activesupport (= 7.2.2.2) + actionview (7.2.3) + activesupport (= 7.2.3) builder (~> 3.1) + cgi erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activemodel (7.2.2.2) - activesupport (= 7.2.2.2) - activerecord (7.2.2.2) - activemodel (= 7.2.2.2) - activesupport (= 7.2.2.2) + activemodel (7.2.3) + activesupport (= 7.2.3) + activerecord (7.2.3) + activemodel (= 7.2.3) + activesupport (= 7.2.3) timeout (>= 0.4.0) - activesupport (7.2.2.2) + activesupport (7.2.3) base64 benchmark (>= 0.3) bigdecimal @@ -44,77 +46,88 @@ GEM securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) base64 (0.3.0) - benchmark (0.4.1) - bigdecimal (3.2.2) + benchmark (0.5.0) + bigdecimal (4.1.2) builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.3) + cgi (0.5.1) + concurrent-ruby (1.3.6) + connection_pool (3.0.2) crass (1.0.6) - date (3.4.1) - debug (1.10.0) + date (3.5.1) + debug (1.11.1) irb (~> 1.10) reline (>= 0.3.8) drb (2.2.3) + erb (6.0.4) erubi (1.13.1) - i18n (1.14.7) + i18n (1.14.8) concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.1) + io-console (0.8.2) + irb (1.18.0) pp (>= 0.6.0) + prism (>= 1.3.0) rdoc (>= 4.0.0) reline (>= 0.4.2) logger (1.7.0) - loofah (2.24.1) + loofah (2.25.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mini_portile2 (2.8.9) - minitest (5.25.5) - nokogiri (1.18.9) + minitest (6.0.5) + drb (~> 2.0) + prism (~> 1.5) + nokogiri (1.19.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) - pp (0.6.2) + pp (0.6.3) prettyprint prettyprint (0.2.0) - psych (5.2.3) + prism (1.9.0) + psych (5.3.1) date stringio racc (1.8.1) - rack (3.1.16) - rack-session (2.1.1) + rack (3.1.21) + rack-session (2.1.2) base64 (>= 0.1.0) rack (>= 3.0.0) rack-test (2.2.0) rack (>= 1.3) - rackup (2.2.1) + rackup (2.3.1) rack (>= 3) rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.2) - loofah (~> 2.21) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) 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.2) - actionpack (= 7.2.2.2) - activesupport (= 7.2.2.2) + railties (7.2.3) + actionpack (= 7.2.3) + activesupport (= 7.2.3) + cgi irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) zeitwerk (~> 2.6) - rake (13.3.0) - rdoc (6.12.0) + rake (13.4.2) + rdoc (7.2.0) + erb psych (>= 4.0.0) - reline (0.6.0) + tsort + reline (0.6.3) io-console (~> 0.5) securerandom (0.4.1) - stringio (3.1.5) - thor (1.4.0) - timeout (0.4.3) + stringio (3.2.0) + thor (1.5.0) + timeout (0.6.1) + tsort (0.2.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) useragent (0.16.11) - zeitwerk (2.7.3) + zeitwerk (2.7.5) PLATFORMS ruby diff --git a/Gemfile.activerecord-8.0.lock b/Gemfile.activerecord-8.0.lock new file mode 100644 index 0000000..ee265c5 --- /dev/null +++ b/Gemfile.activerecord-8.0.lock @@ -0,0 +1,140 @@ +PATH + remote: . + specs: + guardrail (3.1.1) + activerecord (>= 6.1, < 8.2) + railties (>= 6.1, < 8.2) + +GEM + remote: https://rubygems.org/ + specs: + actionpack (8.0.5) + actionview (= 8.0.5) + activesupport (= 8.0.5) + nokogiri (>= 1.8.5) + rack (>= 2.2.4) + rack-session (>= 1.0.1) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + useragent (~> 0.16) + actionview (8.0.5) + activesupport (= 8.0.5) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activemodel (8.0.5) + activesupport (= 8.0.5) + activerecord (8.0.5) + activemodel (= 8.0.5) + activesupport (= 8.0.5) + timeout (>= 0.4.0) + activesupport (8.0.5) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + base64 (0.3.0) + benchmark (0.5.0) + bigdecimal (4.1.2) + builder (3.3.0) + concurrent-ruby (1.3.6) + connection_pool (3.0.2) + crass (1.0.6) + date (3.5.1) + debug (1.11.1) + irb (~> 1.10) + reline (>= 0.3.8) + drb (2.2.3) + erb (6.0.4) + erubi (1.13.1) + i18n (1.14.8) + concurrent-ruby (~> 1.0) + io-console (0.8.2) + irb (1.18.0) + pp (>= 0.6.0) + prism (>= 1.3.0) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + logger (1.7.0) + loofah (2.25.1) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mini_portile2 (2.8.9) + minitest (6.0.5) + drb (~> 2.0) + prism (~> 1.5) + nokogiri (1.19.2) + mini_portile2 (~> 2.8.2) + racc (~> 1.4) + pp (0.6.3) + prettyprint + prettyprint (0.2.0) + prism (1.9.0) + psych (5.3.1) + date + stringio + racc (1.8.1) + rack (3.2.6) + rack-session (2.1.2) + base64 (>= 0.1.0) + rack (>= 3.0.0) + rack-test (2.2.0) + rack (>= 1.3) + rackup (2.3.1) + rack (>= 3) + rails-dom-testing (2.3.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) + 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 (8.0.5) + actionpack (= 8.0.5) + activesupport (= 8.0.5) + irb (~> 1.13) + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) + zeitwerk (~> 2.6) + rake (13.4.2) + rdoc (7.2.0) + erb + psych (>= 4.0.0) + tsort + reline (0.6.3) + io-console (~> 0.5) + securerandom (0.4.1) + stringio (3.2.0) + thor (1.5.0) + timeout (0.6.1) + tsort (0.2.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + uri (1.1.1) + useragent (0.16.11) + zeitwerk (2.7.5) + +PLATFORMS + ruby + +DEPENDENCIES + activerecord (~> 8.0.0) + debug + guardrail! + rack (~> 3.2) + railties (~> 8.0.0) + +BUNDLED WITH + 2.4.19 diff --git a/Gemfile.lock b/Gemfile.lock index 9db49a9..50b6fdc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,16 +1,16 @@ PATH remote: . specs: - guardrail (3.1.0) - activerecord (>= 6.1, < 8.1) - railties (>= 6.1, < 8.1) + guardrail (3.1.1) + activerecord (>= 6.1, < 8.2) + railties (>= 6.1, < 8.2) GEM remote: https://rubygems.org/ specs: - actionpack (8.0.2.1) - actionview (= 8.0.2.1) - activesupport (= 8.0.2.1) + actionpack (8.1.3) + actionview (= 8.1.3) + activesupport (= 8.1.3) nokogiri (>= 1.8.5) rack (>= 2.2.4) rack-session (>= 1.0.1) @@ -18,114 +18,123 @@ GEM rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) useragent (~> 0.16) - actionview (8.0.2.1) - activesupport (= 8.0.2.1) + actionview (8.1.3) + activesupport (= 8.1.3) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activemodel (8.0.2.1) - activesupport (= 8.0.2.1) - activerecord (8.0.2.1) - activemodel (= 8.0.2.1) - activesupport (= 8.0.2.1) + activemodel (8.1.3) + activesupport (= 8.1.3) + activerecord (8.1.3) + activemodel (= 8.1.3) + activesupport (= 8.1.3) timeout (>= 0.4.0) - activesupport (8.0.2.1) + activesupport (8.1.3) base64 - benchmark (>= 0.3) bigdecimal concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) drb i18n (>= 1.6, < 2) + json logger (>= 1.4.2) minitest (>= 5.1) securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) uri (>= 0.13.1) base64 (0.3.0) - benchmark (0.4.1) - bigdecimal (3.2.2) + bigdecimal (4.1.2) builder (3.3.0) - concurrent-ruby (1.3.5) - connection_pool (2.5.3) + concurrent-ruby (1.3.6) + connection_pool (3.0.2) crass (1.0.6) - date (3.4.1) - debug (1.10.0) + date (3.5.1) + debug (1.11.1) irb (~> 1.10) reline (>= 0.3.8) drb (2.2.3) + erb (6.0.4) erubi (1.13.1) - i18n (1.14.7) + i18n (1.14.8) concurrent-ruby (~> 1.0) - io-console (0.8.0) - irb (1.15.1) + io-console (0.8.2) + irb (1.18.0) pp (>= 0.6.0) + prism (>= 1.3.0) rdoc (>= 4.0.0) reline (>= 0.4.2) + json (2.19.4) logger (1.7.0) - loofah (2.24.1) + loofah (2.25.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) mini_portile2 (2.8.9) - minitest (5.25.5) - nokogiri (1.18.9) + minitest (6.0.5) + drb (~> 2.0) + prism (~> 1.5) + nokogiri (1.19.2) mini_portile2 (~> 2.8.2) racc (~> 1.4) - pp (0.6.2) + pp (0.6.3) prettyprint prettyprint (0.2.0) - psych (5.2.3) + prism (1.9.0) + psych (5.3.1) date stringio racc (1.8.1) - rack (3.2.0) - rack-session (2.1.1) + rack (3.2.6) + rack-session (2.1.2) base64 (>= 0.1.0) rack (>= 3.0.0) rack-test (2.2.0) rack (>= 1.3) - rackup (2.2.1) + rackup (2.3.1) rack (>= 3) rails-dom-testing (2.3.0) activesupport (>= 5.0.0) minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.6.2) - loofah (~> 2.21) + rails-html-sanitizer (1.7.0) + loofah (~> 2.25) 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 (8.0.2.1) - actionpack (= 8.0.2.1) - activesupport (= 8.0.2.1) + railties (8.1.3) + actionpack (= 8.1.3) + activesupport (= 8.1.3) irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) + tsort (>= 0.2) zeitwerk (~> 2.6) - rake (13.3.0) - rdoc (6.12.0) + rake (13.4.2) + rdoc (7.2.0) + erb psych (>= 4.0.0) - reline (0.6.0) + tsort + reline (0.6.3) io-console (~> 0.5) securerandom (0.4.1) - stringio (3.1.5) - thor (1.4.0) - timeout (0.4.3) + stringio (3.2.0) + thor (1.5.0) + timeout (0.6.1) + tsort (0.2.0) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - uri (1.0.3) + uri (1.1.1) useragent (0.16.11) - zeitwerk (2.7.3) + zeitwerk (2.7.5) PLATFORMS ruby DEPENDENCIES - activerecord (~> 8.0.0) + activerecord (~> 8.1.0) debug guardrail! rack (~> 3.2) - railties (~> 8.0.0) + railties (~> 8.1.0) BUNDLED WITH 2.4.19 diff --git a/guardrail.gemspec b/guardrail.gemspec index 02c9304..3eeb3bd 100644 --- a/guardrail.gemspec +++ b/guardrail.gemspec @@ -19,8 +19,8 @@ Gem::Specification.new do |s| s.required_ruby_version = '>= 3.2' - s.add_dependency "activerecord", ">= 6.1", "< 8.1" - s.add_dependency "railties", ">= 6.1", "< 8.1" + s.add_dependency "activerecord", ">= 6.1", "< 8.2" + s.add_dependency "railties", ">= 6.1", "< 8.2" s.add_development_dependency "debug" end diff --git a/lib/guard_rail/version.rb b/lib/guard_rail/version.rb index 2308d45..485296a 100644 --- a/lib/guard_rail/version.rb +++ b/lib/guard_rail/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module GuardRail - VERSION = "3.1.0" + VERSION = "3.1.1" end