-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ActiveModel::API is only included in ActiveRecord::Base since rails/rails@2c57ec6. It gets a little messy to explicitly handle ActiveRecord before then. I'd rather not run Active Record in specs and need to run a sqlite DB or whatever. Instead, let us for now settle for mixing this into all objects, like with_options. The gem is still conceptually for ActiveModel/ActiveRecord, even though it no longer strictly depends on either outside of specs.
- Loading branch information
Showing
5 changed files
with
10 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
## [1.1.0] - 2024-12-22 | ||
|
||
- Support Active Record prior to 8.0.1 | ||
|
||
## [1.0.0] - 2024-12-22 | ||
|
||
- Initial release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module WithConditions | ||
VERSION = "1.0.0" | ||
VERSION = "1.1.0" | ||
end |