cgriego / active_attr

What ActiveModel left out
MIT License
1.19k stars 91 forks source link

Support Rails 7.2 #201

Closed elliotlarson closed 1 month ago

elliotlarson commented 2 months ago

It looks like active_attr does not support Rails 7.2 at this point:

Could not find compatible versions Because active_attr >= 0.16.0 depends on activesupport >= 3.0.2, < 7.2 and rails >= 7.2.0 depends on activesupport = 7.2.0, active_attr >= 0.16.0 is incompatible with rails >= 7.2.0. So, because Gemfile depends on rails ~> 7.2 and Gemfile depends on active_attr ~> 0.16, version solving has failed.

brandondrew commented 2 months ago

Is this simply a case of it not yet being tested?

elliotlarson commented 2 months ago

Yeah, my guess is that it probably will work out of the box but that the limitation was put in place to guard against potential breaking changes in an ActiveSupport version upgrade.

aramprice commented 2 months ago

See also https://github.com/cgriego/active_attr/pull/202

cgriego commented 1 month ago

This has been released as part of v0.17. Sorry for the delay.

elliotlarson commented 1 month ago

Sweet! Thank you, @cgriego.