- Drop upper limit on Rails, test with Rails main.
- Drop support for Rails < 6.0.
- Drop support for Ruby 2.7 & 3.0.
- Add support for Rails 7.1
- Drop support for Rails 5.2 and 6.0
- Drop support for Ruby 2.6
- Drop support for Rails 5.0 & 5.1
- Test against Ruby 3.2
- Fix keyword arguments error for
method_missing
.
- Add support for Rails 7.0
- Add support for Ruby 2.7, 3.0, & 3.1
- Drop support for Ruby 2.4 & 2.5
- Drop support for Rails 4.2
- Drop support for Ruby 2.2 and 2.3.
- Drop support for Rails 4.1.
- Test against Rails 6.0 and 6.1.
- Test against Rails 5.2 final.
- Test against Rails 5.2.
- Test against Ruby 2.5.
- Don't implement
respond_to_missing?
when implementingmethod_missing
or it won't work on Ruby 2.5.0. Truly confusing.
- Test against Rails 5.1.
- Implement
respond_to_missing?
when implementingmethod_missing
or it won't work on Ruby 2.3.0.
- Fix a
to_a
vsrecords
bug for Rails 5.0.
- Test against Rails 5.0.
- Fix counter_cache behavior in Rails 4.2.
- Fewer queries when soft deleting.
- Test against Rails 4.2.
- Add compatibility with Rails 4.1.
- Remove compatibility with Rails 3, instead adding compatibility with Rails 4.0.
-
Allow accessing associated records on deleted objects, even if they themselves are deleted, e.g.
post = Post.with_deleted.find(...) post.comments post.category