You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 16, 2026. It is now read-only.
Describe the bug
Starting from v0.7.0, passageidentity is dependable on ActiveSupport (added in 34df698), and required version is < 8.0 so it is not possible to use Rails 8 and the last version of passageidentity together.
To Reproduce
Steps to reproduce the behavior:
Create a project with Rails 8
Update version of passageidentity to v.0.7.0 (gem 'passageidentity', '0.7.0')
Run bundle install
Expected behavior
Successful installing of the gem
Actual behavior
> bundle
> Fetching gem metadata from https://rubygems.org/........
Resolving dependencies...
Could not find compatible versions
Because rails >= 8.0.1, < 8.0.2 depends on activesupport = 8.0.1
and passageidentity >= 0.7.0 depends on activesupport >= 7.2, < 8.A,
rails >= 8.0.1, < 8.0.2 is incompatible with passageidentity >= 0.7.0.
So, because Gemfile depends on rails = 8.0.1
and Gemfile depends on passageidentity = 0.7.0,
version solving has failed
Describe the bug
Starting from v0.7.0, passageidentity is dependable on ActiveSupport (added in 34df698), and required version is < 8.0 so it is not possible to use Rails 8 and the last version of passageidentity together.
To Reproduce
Steps to reproduce the behavior:
gem 'passageidentity', '0.7.0')Expected behavior
Successful installing of the gem
Actual behavior