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

Add a CHANGELOG entry for to_h deprecation

We deprecated `to_h` in https://github.com/rails/rails/pull/37231, and
this commit adds the appropriate `CHANGELOG` entry!
This commit is contained in:
John Crepezzi 2019-09-18 17:58:44 -04:00
parent 84496b85cb
commit 694c962980

View file

@ -1,3 +1,7 @@
* Deprecate `DatabaseConfigurations#to_h`. These connection hashes are still available via `ActiveRecord::Base.configurations.configs_for`.
*Eileen Uchitelle*, *John Crepezzi*
* Add `DatabaseConfig#configuration_hash` to return database configuration hashes with symbol keys, and use all symbol-key configuration hashes internally. Deprecate `DatabaseConfig#config` which returns a String-keyed `Hash` with the same values.
*John Crepezzi*, *Eileen Uchitelle*