Changelog for
ruby2.7-rubygem-activerecord-3_2-3.2.22.5-lp156.1.1.x86_64.rpm :
* Thu Sep 15 2016 cooloAATTsuse.com- updated to version 3.2.22.5 see installed CHANGELOG.md
* Support Ruby 2.3 by not unexpectedly calling `.to_proc` on Hash objects Fixes #25010
* tlrdstd
*
* Fri Aug 12 2016 cooloAATTsuse.com- updated to version 3.2.22.4 see installed CHANGELOG.md
* Tue Mar 01 2016 cooloAATTsuse.com- updated to version 3.2.22.2 see installed CHANGELOG.md
* Tue Jan 26 2016 cooloAATTsuse.com- updated to version 3.2.22.1 see installed CHANGELOG.md
* Wed Jun 17 2015 cooloAATTsuse.com- updated to version 3.2.22 see installed CHANGELOG.md [#]# Rails 3.2.22 (Jun 16, 2015) ##
* No changes.
* Wed Feb 11 2015 cooloAATTsuse.com- updated to version 3.2.21 obsolete CVE-2014-3482.patch
* Thu Jul 17 2014 jmassaguerplaAATTsuse.com- fix CVE-2014-3482: SQL injection vulnerability in \'bitstring\' quoting (bnc#885636) CVE-2014-3482.patch: patch that fixes the vulnerability
* Thu Apr 03 2014 jmassaguerplaAATTsuse.com- updated to version 3.2.17
* I had to update other rails components because of security issues, thus I am updating this one so that we have all rails components in the same version
* Tue Mar 19 2013 cooloAATTsuse.com- updated to version 3.2.13
* Fix overriding of attributes by default_scope on `ActiveRecord::Base#dup`.
* Fix issue with overriding Active Record reader methods with a composed object and using that attribute as the scope of a `uniqueness_of` validation.
* Sqlite now preserves custom primary keys when copying or altering tables. Fixes #9367.
* Preloading `has_many :through` associations with conditions won\'t cache the `:through` association. This will prevent invalid subsets to be cached.
* Fix handling of dirty time zone aware attributes
* Tue Feb 12 2013 cooloAATTsuse.com- updated to version 3.2.12
* Quote numeric values being compared to non-numeric columns. Otherwise, in some database, the string column values will be coerced to a numeric allowing 0, 0.0 or false to match any string starting with a non-digit. Example: App.where(apikey: 0) # => SELECT
* FROM users WHERE apikey = \'0\'