Changelog for
ruby2.4-rubygem-activesupport-4_2-4.2.7.1-1.1.x86_64.rpm :
Fri Aug 12 14:00:00 2016 cooloAATTsuse.com
- updated to version 4.2.7.1
see installed CHANGELOG.md
Wed Jul 13 14:00:00 2016 cooloAATTsuse.com
- updated to version 4.2.7
see installed CHANGELOG.md
[#]# Rails 4.2.7 (July 12, 2016) ##
* Fixed `ActiveSupport::Logger.broadcast` so that calls to `#silence` now
properly delegate to all loggers. Silencing now properly suppresses logging
to both the log and the console.
* Kevin McPhillips
*
* Backported `ActiveSupport::LoggerThreadSafeLevel`. Assigning the
`Rails.logger.level` is now thread safe.
* Kevin McPhillips
*
* Fixed a problem with ActiveSupport::SafeBuffer.titleize calling capitalize
on nil.
* Brian McManus
*
* Time zones: Ensure that the UTC offset reflects DST changes that occurred
since the app started. Removes UTC offset caching, reducing performance,
but this is still relatively quick and isn\'t in any hot paths.
* Alexey Shein
*
* Prevent `Marshal.load` from looping infinitely when trying to autoload a constant
which resolves to a different name.
* Olek Janiszewski
*
Tue Mar 8 13:00:00 2016 cooloAATTsuse.com
- updated to version 4.2.6
see installed CHANGELOG.md
[#]# Rails 4.2.6 (March 07, 2016) ##
* No changes.
Tue Mar 1 13:00:00 2016 cooloAATTsuse.com
- updated to version 4.2.5.2
see installed CHANGELOG.md
[#]# Rails 4.2.5.2 (February 26, 2016) ##
* No changes.
[#]# Rails 4.2.5.1 (January 25, 2015) ##
* No changes.
Tue Jan 26 13:00:00 2016 cooloAATTsuse.com
- updated to version 4.2.5.1
see installed CHANGELOG.md
Fri Nov 13 13:00:00 2015 cooloAATTsuse.com
- updated to version 4.2.5
see installed CHANGELOG.md
[#]# Rails 4.2.5 (November 12, 2015) ##
* Fix `TimeWithZone#eql?` to properly handle `TimeWithZone` created from `DateTime`:
twz = DateTime.now.in_time_zone
twz.eql?(twz.dup) => true
Fixes #14178.
* Roque Pinel
*
* Handle invalid UTF-8 characters in `MessageVerifier.verify`.
* Roque Pinel
*,
*Grey Baker
*
Tue Aug 25 14:00:00 2015 cooloAATTsuse.com
- updated to version 4.2.4
see installed CHANGELOG.md
[#]# Rails 4.2.4 (August 24, 2015) ##
* Fix a `SystemStackError` when encoding an `Enumerable` with `json` gem and
with the Active Support JSON encoder loaded.
Fixes #20775.
* Sammy Larbi
*,
*Prathamesh Sonpatki
*
* Fix not calling `#default` on `HashWithIndifferentAcess#to_hash` when only
`default_proc` is set, which could raise.
* Simon Eskildsen
*
* Fix setting `default_proc` on `HashWithIndifferentAccess#dup`
* Simon Eskildsen
*
Fri Jun 26 14:00:00 2015 cooloAATTsuse.com
- updated to version 4.2.3
see installed CHANGELOG.md
[#]# Rails 4.2.3 (June 25, 2015) ##
* Fix a range of values for parameters of the Time#change
* Nikolay Kondratyev
*
* Add some missing `require \'active_support/deprecation\'`
* Akira Matsuda
*
Wed Jun 17 14:00:00 2015 cooloAATTsuse.com
- updated to version 4.2.2
see installed CHANGELOG.md
[#]# Rails 4.2.2 (June 16, 2015) ##
* Fix XSS vulnerability in `ActiveSupport::JSON.encode` method.
CVE-2015-3226.
* Rafael Mendonça França
*
* Fix denial of service vulnerability in the XML processing.
CVE-2015-3227.
* Aaron Patterson
*
Mon Mar 23 13:00:00 2015 cooloAATTsuse.com
- updated to version 4.2.1
* Fixed a problem where String#truncate_words would get stuck with a complex
string.
* Henrik Nygren
*
* Fixed a roundtrip problem with AS::SafeBuffer where primitive-like strings
will be dumped as primitives:
Before:
YAML.load ActiveSupport::SafeBuffer.new(\"Hello\").to_yaml # => \"Hello\"
YAML.load ActiveSupport::SafeBuffer.new(\"true\").to_yaml # => true
YAML.load ActiveSupport::SafeBuffer.new(\"false\").to_yaml # => false
YAML.load ActiveSupport::SafeBuffer.new(\"1\").to_yaml # => 1
YAML.load ActiveSupport::SafeBuffer.new(\"1.1\").to_yaml # => 1.1
After:
YAML.load ActiveSupport::SafeBuffer.new(\"Hello\").to_yaml # => \"Hello\"
YAML.load ActiveSupport::SafeBuffer.new(\"true\").to_yaml # => \"true\"
YAML.load ActiveSupport::SafeBuffer.new(\"false\").to_yaml # => \"false\"
YAML.load ActiveSupport::SafeBuffer.new(\"1\").to_yaml # => \"1\"
YAML.load ActiveSupport::SafeBuffer.new(\"1.1\").to_yaml # => \"1.1\"
* Godfrey Chan
*
* Replace fixed `:en` with `I18n.default_locale` in `Duration#inspect`.
* Dominik Masur
*
* Add missing time zone definitions for Russian Federation and sync them
with `zone.tab` file from tzdata version 2014j (latest).
* Andrey Novikov
*
Mon Jan 19 13:00:00 2015 dmuellerAATTsuse.com
- update to 4.1.9:
* `Method` objects now report themselves as not `duplicable?`. This allows
hashes and arrays containing `Method` objects to be `deep_dup`ed.
Mon Nov 10 13:00:00 2014 tboergerAATTsuse.com
- To get rails 4 running on SLE 11 i have switched the
rb_build_versions definition to rub21 as it is activated within
devel:languages:ruby. That way we can get running rails 4 on
SLE 11 too.
Tue Oct 14 14:00:00 2014 cooloAATTsuse.com
- updated to version 4.1.6
* Fix DateTime comparison with DateTime::Infinity object.
* Fixed a compatibility issue with the `Oj` gem when cherry-picking the file
`active_support/core_ext/object/json` without requiring `active_support/json`.
Fixes #16131.
* Make Dependencies pass a name to NameError error.
* Fixed precision error in NumberHelper when using Rationals.
before:
ActiveSupport::NumberHelper.number_to_rounded Rational(1000, 3), precision: 2
[#]=> \"330.00\"
after:
ActiveSupport::NumberHelper.number_to_rounded Rational(1000, 3), precision: 2
[#]=> \"333.33\"
See #15379.
Wed Jul 23 14:00:00 2014 mrueckertAATTsuse.com
- - initial package