From c6dd23f5df9f3653cbede04c0b1e86198c0fc04d Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Thu, 9 Jan 2025 10:26:40 -0600 Subject: [PATCH] Fix sqlite appraisals --- .github/workflows/ci.yml | 1 + Appraisals | 10 ++ gemfiles/rails_6_1.gemfile | 2 +- gemfiles/rails_6_1.gemfile.lock | 6 +- gemfiles/rails_7_0.gemfile | 2 +- gemfiles/rails_7_0.gemfile.lock | 8 +- gemfiles/rails_7_1.gemfile | 2 +- gemfiles/rails_7_1.gemfile.lock | 6 +- gemfiles/rails_7_2.gemfile | 12 ++ gemfiles/rails_7_2.gemfile.lock | 259 ++++++++++++++++++++++++++++++++ gemfiles/rails_8_0.gemfile | 2 +- gemfiles/rails_8_0.gemfile.lock | 2 +- 12 files changed, 295 insertions(+), 17 deletions(-) create mode 100644 gemfiles/rails_7_2.gemfile create mode 100644 gemfiles/rails_7_2.gemfile.lock diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a6f2cc04..24187209 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,7 @@ jobs: - rails_6_1 - rails_7_0 - rails_7_1 + - rails_7_2 - rails_8_0 - rails_main env: diff --git a/Appraisals b/Appraisals index 8314da81..a8a8aba7 100644 --- a/Appraisals +++ b/Appraisals @@ -1,19 +1,29 @@ appraise "rails-6-1" do gem "rails", "~> 6.1.0" + gem "sqlite3", "~> 1.7" end appraise "rails-7-0" do gem "rails", "~> 7.0.0" + gem "sqlite3", "~> 1.7" end appraise "rails-7-1" do gem "rails", "~> 7.1.0" + gem "sqlite3", "~> 1.7" +end + +appraise "rails-7-2" do + gem "rails", "~> 7.2.0" + gem "sqlite3", "~> 1.7" end appraise "rails-8-0" do gem "rails", "~> 8.0.0" + gem "sqlite3", "~> 2.0" end appraise "rails-main" do gem "rails", github: "rails/rails" + gem "sqlite3" end diff --git a/gemfiles/rails_6_1.gemfile b/gemfiles/rails_6_1.gemfile index f619fb86..67370821 100644 --- a/gemfiles/rails_6_1.gemfile +++ b/gemfiles/rails_6_1.gemfile @@ -5,7 +5,7 @@ source "http://rubygems.org" gem "appraisal", github: "thoughtbot/appraisal" gem "standard" gem "puma" -gem "sqlite3" +gem "sqlite3", "~> 1.7" gem "web-console", "~> 4.2", group: :development gem "rails", "~> 6.1.0" diff --git a/gemfiles/rails_6_1.gemfile.lock b/gemfiles/rails_6_1.gemfile.lock index 61bd38e3..be9e9f87 100644 --- a/gemfiles/rails_6_1.gemfile.lock +++ b/gemfiles/rails_6_1.gemfile.lock @@ -183,10 +183,8 @@ GEM actionpack (>= 6.1) activesupport (>= 6.1) sprockets (>= 3.0.0) - sqlite3 (2.5.0) + sqlite3 (1.7.3) mini_portile2 (~> 2.8.0) - sqlite3 (2.5.0-x86_64-darwin) - sqlite3 (2.5.0-x86_64-linux-gnu) standard (1.43.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) @@ -227,7 +225,7 @@ DEPENDENCIES puma rails (~> 6.1.0) simple_calendar! - sqlite3 + sqlite3 (~> 1.7) standard web-console (~> 4.2) diff --git a/gemfiles/rails_7_0.gemfile b/gemfiles/rails_7_0.gemfile index 24d09d7e..ba2fda73 100644 --- a/gemfiles/rails_7_0.gemfile +++ b/gemfiles/rails_7_0.gemfile @@ -5,7 +5,7 @@ source "http://rubygems.org" gem "appraisal", github: "thoughtbot/appraisal" gem "standard" gem "puma" -gem "sqlite3" +gem "sqlite3", "~> 1.7" gem "web-console", "~> 4.2", group: :development gem "rails", "~> 7.0.0" diff --git a/gemfiles/rails_7_0.gemfile.lock b/gemfiles/rails_7_0.gemfile.lock index 4a81203d..7f584f83 100644 --- a/gemfiles/rails_7_0.gemfile.lock +++ b/gemfiles/rails_7_0.gemfile.lock @@ -107,6 +107,7 @@ GEM marcel (1.0.4) method_source (1.1.0) mini_mime (1.1.5) + mini_portile2 (2.8.8) minitest (5.25.4) net-imap (0.5.5) date @@ -180,9 +181,8 @@ GEM rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) - sqlite3 (2.5.0-arm64-darwin) - sqlite3 (2.5.0-x86_64-darwin) - sqlite3 (2.5.0-x86_64-linux-gnu) + sqlite3 (1.7.3) + mini_portile2 (~> 2.8.0) standard (1.43.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) @@ -225,7 +225,7 @@ DEPENDENCIES puma rails (~> 7.0.0) simple_calendar! - sqlite3 + sqlite3 (~> 1.7) standard web-console (~> 4.2) diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile index be4acae0..9f93dfe3 100644 --- a/gemfiles/rails_7_1.gemfile +++ b/gemfiles/rails_7_1.gemfile @@ -5,7 +5,7 @@ source "http://rubygems.org" gem "appraisal", github: "thoughtbot/appraisal" gem "standard" gem "puma" -gem "sqlite3" +gem "sqlite3", "~> 1.7" gem "web-console", "~> 4.2", group: :development gem "rails", "~> 7.1.0" diff --git a/gemfiles/rails_7_1.gemfile.lock b/gemfiles/rails_7_1.gemfile.lock index df7eedff..5556de02 100644 --- a/gemfiles/rails_7_1.gemfile.lock +++ b/gemfiles/rails_7_1.gemfile.lock @@ -217,10 +217,8 @@ GEM rubocop-ast (>= 1.31.1, < 2.0) ruby-progressbar (1.13.0) securerandom (0.4.1) - sqlite3 (2.5.0) + sqlite3 (1.7.3) mini_portile2 (~> 2.8.0) - sqlite3 (2.5.0-x86_64-darwin) - sqlite3 (2.5.0-x86_64-linux-gnu) standard (1.43.0) language_server-protocol (~> 3.17.0.2) lint_roller (~> 1.0) @@ -262,7 +260,7 @@ DEPENDENCIES puma rails (~> 7.1.0) simple_calendar! - sqlite3 + sqlite3 (~> 1.7) standard web-console (~> 4.2) diff --git a/gemfiles/rails_7_2.gemfile b/gemfiles/rails_7_2.gemfile new file mode 100644 index 00000000..718d8ef7 --- /dev/null +++ b/gemfiles/rails_7_2.gemfile @@ -0,0 +1,12 @@ +# This file was generated by Appraisal + +source "http://rubygems.org" + +gem "appraisal", github: "thoughtbot/appraisal" +gem "standard" +gem "puma" +gem "sqlite3", "~> 1.7" +gem "web-console", "~> 4.2", group: :development +gem "rails", "~> 7.2.0" + +gemspec path: "../" diff --git a/gemfiles/rails_7_2.gemfile.lock b/gemfiles/rails_7_2.gemfile.lock new file mode 100644 index 00000000..adc4036c --- /dev/null +++ b/gemfiles/rails_7_2.gemfile.lock @@ -0,0 +1,259 @@ +GIT + remote: https://github.com/thoughtbot/appraisal.git + revision: 602cdd9b5f8cb8f36992733422f69312b172f427 + specs: + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) + +PATH + remote: .. + specs: + simple_calendar (3.0.4) + rails (>= 6.1) + +GEM + remote: http://rubygems.org/ + specs: + 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.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.2.2.1) + actionview (= 7.2.2.1) + activesupport (= 7.2.2.1) + nokogiri (>= 1.8.5) + racc + 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) + 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.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.2.2.1) + activesupport (= 7.2.2.1) + globalid (>= 0.3.6) + 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.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.2.2.1) + 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) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + bigdecimal (3.1.9) + bindex (0.8.1) + builder (3.3.0) + concurrent-ruby (1.3.4) + connection_pool (2.5.0) + crass (1.0.6) + date (3.4.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) + json (2.9.1) + language_server-protocol (3.17.0.3) + lint_roller (1.1.0) + 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) + mini_portile2 (2.8.8) + minitest (5.25.4) + net-imap (0.5.5) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + nio4r (2.7.4) + nokogiri (1.18.1) + mini_portile2 (~> 2.8.2) + racc (~> 1.4) + nokogiri (1.18.1-arm64-darwin) + racc (~> 1.4) + parallel (1.26.3) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + psych (5.2.2) + date + stringio + puma (6.5.0) + nio4r (~> 2.0) + racc (1.8.1) + rack (3.1.8) + rack-session (2.1.0) + base64 (>= 0.1.0) + rack (>= 3.0.0) + rack-test (2.2.0) + rack (>= 1.3) + rackup (2.2.1) + rack (>= 3) + 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.2.2.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.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) + rainbow (3.1.1) + rake (13.2.1) + rdoc (6.10.0) + psych (>= 4.0.0) + regexp_parser (2.10.0) + reline (0.6.0) + io-console (~> 0.5) + rubocop (1.69.2) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.9.3, < 3.0) + rubocop-ast (>= 1.36.2, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.37.0) + parser (>= 3.3.1.0) + rubocop-performance (1.23.1) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (1.13.0) + securerandom (0.4.1) + sqlite3 (1.7.3) + mini_portile2 (~> 2.8.0) + standard (1.43.0) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.69.1) + standard-custom (~> 1.0.0) + standard-performance (~> 1.6) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.6.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.23.0) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.3) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (3.1.3) + unicode-emoji (~> 4.0, >= 4.0.4) + unicode-emoji (4.0.4) + useragent (0.16.11) + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + websocket-driver (0.7.7) + base64 + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin-24 + ruby + +DEPENDENCIES + appraisal! + puma + rails (~> 7.2.0) + simple_calendar! + sqlite3 (~> 1.7) + standard + web-console (~> 4.2) + +BUNDLED WITH + 2.6.2 diff --git a/gemfiles/rails_8_0.gemfile b/gemfiles/rails_8_0.gemfile index f1bd2bea..8b89a8af 100644 --- a/gemfiles/rails_8_0.gemfile +++ b/gemfiles/rails_8_0.gemfile @@ -5,7 +5,7 @@ source "http://rubygems.org" gem "appraisal", github: "thoughtbot/appraisal" gem "standard" gem "puma" -gem "sqlite3" +gem "sqlite3", "~> 2.0" gem "web-console", "~> 4.2", group: :development gem "rails", "~> 8.0.0" diff --git a/gemfiles/rails_8_0.gemfile.lock b/gemfiles/rails_8_0.gemfile.lock index 934e75d0..5024d2a1 100644 --- a/gemfiles/rails_8_0.gemfile.lock +++ b/gemfiles/rails_8_0.gemfile.lock @@ -274,7 +274,7 @@ DEPENDENCIES puma rails (~> 8.0.0) simple_calendar! - sqlite3 + sqlite3 (~> 2.0) standard web-console (~> 4.2)