1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/activemodel/CHANGELOG.md

61 lines
1.7 KiB
Markdown
Raw Normal View History

2021-09-15 18:22:51 -04:00
## Rails 7.0.0.alpha2 (September 15, 2021) ##
* No changes.
2021-09-15 17:55:08 -04:00
## Rails 7.0.0.alpha1 (September 15, 2021) ##
* Introduce `ActiveModel::API`.
Make `ActiveModel::API` the minimum API to talk with Action Pack and Action View.
This will allow adding more functionality to `ActiveModel::Model`.
*Petrik de Heus*, *Nathaniel Watts*
* Fix dirty check for Float::NaN and BigDecimal::NaN.
Float::NaN and BigDecimal::NaN in Ruby are [special values](https://bugs.ruby-lang.org/issues/1720)
and can't be compared with `==`.
*Marcelo Lauxen*
* Fix `to_json` for `ActiveModel::Dirty` object.
2021-06-29 19:31:17 -04:00
2021-07-20 21:08:08 -04:00
Exclude `mutations_from_database` attribute from json as it lead to recursion.
*Anil Maurya*
2021-07-20 21:08:08 -04:00
* Add `ActiveModel::AttributeSet#values_for_database`.
Returns attributes with values for assignment to the database.
*Chris Salzberg*
2021-07-20 21:08:08 -04:00
* Fix delegation in ActiveModel::Type::Registry#lookup and ActiveModel::Type.lookup.
Passing a last positional argument `{}` would be incorrectly considered as keyword argument.
*Benoit Daloze*
* Cache and re-use generated attribute methods.
Generated methods with identical implementations will now share their instruction sequences
leading to reduced memory retention, and slightly faster load time.
*Jean Boussier*
2021-01-05 13:42:16 -05:00
* Add `in: range` parameter to `numericality` validator.
2021-02-06 15:45:53 -05:00
*Michal Papis*
2021-01-05 13:42:16 -05:00
2020-12-29 14:25:04 -05:00
* Add `locale` argument to `ActiveModel::Name#initialize` to be used to generate the `singular`,
`plural`, `route_key` and `singular_route_key` values.
2020-11-02 16:12:47 -05:00
2021-02-06 15:45:53 -05:00
*Lukas Pokorny*
2020-10-22 15:45:53 -04:00
* Make ActiveModel::Errors#inspect slimmer for readability
*lulalala*
2020-11-02 13:16:45 -05:00
2020-12-02 18:37:26 -05:00
Please check [6-1-stable](https://github.com/rails/rails/blob/6-1-stable/activemodel/CHANGELOG.md) for previous changes.