Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upsqlite3_adapter has conflict with new version of sqlite3 gem #35153
Comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
no-reply
commented
Feb 4, 2019
•
@sponomarev any thoughts on what the work-around is for folks trying to test engines against existing rails versions? My CI process generates rails apps to run the engine's suite against for a supported Ruby/Rails build matrix to. I've thought about adding a generator to adjust the |
This comment has been minimized.
This comment has been minimized.
@no-reply It looks that you're running some database-related code in |
It was necessary to manually set the `sqlite3` Gem version after the release of version `1.4.0`. See rails/rails#35153 for more info.
It was necessary to manually set the `sqlite3` Gem version after the release of version `1.4.0`. See rails/rails#35153 for more info.
This comment has been minimized.
This comment has been minimized.
femotizo
commented
Feb 9, 2019
@jasnow @sponomarev |
This comment has been minimized.
This comment has been minimized.
@femotizo - Thank you for confirming that this is real rails issue. |
Related: rails/rails#35153 and rails/rails#35154
Related: rails/rails#35153 and rails/rails#35154
Rails 5.2.2 is incompatible with sqlite 1.4 Fixes rails/rails#35153
Rails 5.2.2 is incompatible with sqlite 1.4 Refs [rails/rails#35153](rails/rails#35153)
Rails 5.2.2 is incompatible with sqlite 1.4 Refs [rails/rails#35153](rails/rails#35153)
Rails sqlite_adapter does not work with the latest sqlite gem, as per rails/rails#35153 Bump some deps based on dependabot rec's.
- Update engine_cart to 2.2.0 - Work around add to test_app_generator for rails/rails#35153 - Update rubocop to 0.66.0 - Update TravisCI config to test 2.6.2
See issue rails/rails#35153
See rails/rails#35153.
sqlite3 1.4 is conflicting with sqlite3_adapter which requires 1.3.x See rails/rails#35153
sqlite3 1.4 is conflicting with sqlite3_adapter which requires 1.3.x See rails/rails#35153
Also compare to rails/rails#35153
Squashed commit of the following: commit 9828193 Author: Vladimir Dobriakov <vladimir.dobriakov@dm.de> Date: Thu Apr 4 19:20:50 2019 +0200 Try more explicit sqlite3 gem spec for Rails 4.2 commit 7294a09 Author: Vladimir Dobriakov <vladimir.dobriakov@dm.de> Date: Thu Apr 4 19:17:48 2019 +0200 Try more explicit sqlite3 gem spec commit 6c275a2 Author: Vladimir Dobriakov <vladimir.dobriakov@dm.de> Date: Thu Apr 4 19:04:19 2019 +0200 Explicitly specify compatible sqlite3 version in Gemfiles commit c1b1bee Author: Vladimir Dobriakov <vladimir.dobriakov@dm.de> Date: Thu Apr 4 18:51:39 2019 +0200 Explicitly specify compatible sqlite3 version Also compare to rails/rails#35153
Related: rails/rails#35153 and rails/rails#35154
Also bumped sqlite from 1.3.6 to 1.4 because besides conflicting with the version that the sqlite adapter was trying to load [0], it is supported officially since rails 6 [1]. Related: [0] rails/rails#35153 [1] rails/rails#35844
Also bumped sqlite from 1.3.6 to 1.4 because besides conflicting with the version that the sqlite adapter was trying to load [0], it is supported officially since rails 6 [1]. Related: [0] rails/rails#35153 [1] rails/rails#35844
Rails SQLite 3 adaptor specifies SQLite gem version 1.3.6. Rails produces an error message if one attempts to use version 1.4.0. See rails/rails#35153 for more information.
Also bumped sqlite from 1.3.6 to 1.4 because besides conflicting with the version that the sqlite adapter was trying to load [0], it is supported officially since rails 6 [1]. Related: [0] rails/rails#35153 [1] rails/rails#35844
See here for more info: rails/rails#35153 and rails/rails#35154
See here for more info: rails/rails#35153 and rails/rails#35154
See here for more info: rails/rails#35153 and rails/rails#35154
There is a rails bug which causes compatability issues with 1.4 of this gem: rails/rails#35153 When new rails versions are released we can relax this requirement.
Related: rails/rails#35153 and rails/rails#35154
jasnow commentedFeb 4, 2019
•
edited
Line 12 of activerecord-6.0.0.beta1/lib/active_record/connection_adapters/sqlite3_adapter.rb
is
and it conflicts with the new sqlite 1.4.0 gem release.
Getting these two messages:
and