|
|
|
|
Changelog for ruby3.2-rubygem-activesupport-5_0-5.0.7.2-22.74.x86_64.rpm :
* Thu Mar 14 2019 Stephan Kulow - updated to version 5.0.7.2 see installed CHANGELOG.md [#]# Rails 5.0.7.2 (March 11, 2019) ## * No changes. * Sat Dec 08 2018 Stephan Kulow - updated to version 5.0.7.1 see installed CHANGELOG.md [#]# Rails 5.0.7.1 (November 27, 2018) ## * No changes. * Fri Mar 30 2018 factory-autoAATTkulow.org- updated to version 5.0.7 see installed CHANGELOG.md [#]# Rails 5.0.7 (March 29, 2018) ## * Return all mappings for a timezone identifier in `country_zones` Some timezones like `Europe/London` have multiple mappings in `ActiveSupport::TimeZone::MAPPING` so return all of them instead of the first one found by using `Hash#value`. e.g: [#] Before ActiveSupport::TimeZone.country_zones(\"GB\") # => [\"Edinburgh\"] [#] After ActiveSupport::TimeZone.country_zones(\"GB\") # => [\"Edinburgh\", \"London\"] Fixes #31668. * Andrew White * * Mon Sep 11 2017 cooloAATTsuse.com- updated to version 5.0.6 see installed CHANGELOG.md [#]# Rails 5.0.6 (September 07, 2017) ## * No changes. [#]# Rails 5.0.6.rc1 (August 24, 2017) ## * No changes. * Thu Aug 03 2017 cooloAATTsuse.com- updated to version 5.0.5 see installed CHANGELOG.md [#]# Rails 5.0.5 (July 31, 2017) ## * No changes. [#]# Rails 5.0.5.rc2 (July 25, 2017) ## * No changes. [#]# Rails 5.0.5.rc1 (July 19, 2017) ## * No changes. * Tue Jun 20 2017 cooloAATTsuse.com- updated to version 5.0.4 see installed CHANGELOG.md [#]# Rails 5.0.4 (June 19, 2017) ## * No changes. [#]# Rails 5.0.3 (May 12, 2017) ## * Tue May 23 2017 cooloAATTsuse.com- updated to version 5.0.3 see installed CHANGELOG.md * `ActiveSupport::EventedFileUpdateChecker` no longer listens to directories outside of the application directory. * radiospiel * * Return unmapped timezones from `country_zones` If a country doesn\'t exist in the MAPPINGS hash then create a new `ActiveSupport::Timezone` instance using the supplied timezone id. Fixes #28431. * Andrew White * * Fixed bug in `DateAndTime::Compatibility#to_time` that caused it to raise `RuntimeError: can\'t modify frozen Time` when called on any frozen `Time`. Properly pass through the frozen `Time` or `ActiveSupport::TimeWithZone` object when calling `#to_time`. * Kevin McPhillips * & *Andrew White * * Fix inconsistent results when parsing large durations and constructing durations from code ActiveSupport::Duration.parse(\'P3Y\') == 3.years # It should be true Duration parsing made independent from any moment of time: Fixed length in seconds is assigned to each duration part during parsing. Methods on `Numeric` like `2.days` now use these predefined durations to avoid duplicating of duration constants through the codebase and eliminate creation of intermediate durations. * Andrey Novikov, Andrew White * * Thu Mar 02 2017 cooloAATTsuse.com- updated to version 5.0.2 see installed CHANGELOG.md [#]# Rails 5.0.2 (March 01, 2017) ## * In Core Extensions, make `MarshalWithAutoloading#load` pass through the second, optional argument for `Marshal#load( source [, proc] )`. This way we don\'t have to do `Marshal.method(:load).super_method.call(sourse, proc)` just to be able to pass a proc. * Jeff Latz * * `ActiveSupport::Gzip.decompress` now checks checksum and length in footer. * Dylan Thacker-Smith * * Cache `ActiveSupport::TimeWithZone#to_datetime` before freezing. * Adam Rice * * Wed Dec 21 2016 cooloAATTsuse.com- updated to version 5.0.1 see installed CHANGELOG.md [#]# Rails 5.0.1 (December 21, 2016) ## * No changes. [#]# Rails 5.0.1.rc2 (December 10, 2016) ## * No changes. [#]# Rails 5.0.1.rc1 (December 01, 2016) ## * Ensure duration parsing is consistent across DST changes Previously `ActiveSupport::Duration.parse` used `Time.current` and `Time#advance` to calculate the number of seconds in the duration from an arbitrary collection of parts. However as `advance` tries to be consistent across DST boundaries this meant that either the duration was shorter or longer depending on the time of year. This was fixed by using an absolute reference point in UTC which isn\'t subject to DST transitions. An arbitrary date of Jan 1st, 2000 was chosen for no other reason that it seemed appropriate. Additionally, duration parsing should now be marginally faster as we are no longer creating instances of `ActiveSupport::TimeWithZone` every time we parse a duration string. Fixes #26941. * Andrew White * * Fix `DateAndTime::Calculations#copy_time_to`. Copy `nsec` instead of `usec`. Jumping forward or backward between weeks now preserves nanosecond digits. * Josua Schmid * * Avoid bumping the class serial when invoking executor. * Matthew Draper * * Fix `ActiveSupport::TimeWithZone#in` across DST boundaries. Previously calls to `in` were being sent to the non-DST aware method `Time#since` via `method_missing`. It is now aliased to the DST aware `ActiveSupport::TimeWithZone#+` which handles transitions across DST boundaries, e.g: Time.zone = \"US/Eastern\" t = Time.zone.local(2016,11,6,1) [#] => Sun, 06 Nov 2016 01:00:00 EDT -05:00 t.in(1.hour) [#] => Sun, 06 Nov 2016 01:00:00 EST -05:00 Fixes #26580. * Thomas Balthazar * * Fix `thread_mattr_accessor` subclass no longer overwrites parent. Assigning a value to a subclass using `thread_mattr_accessor` no longer changes the value of the parent class. This brings the behavior inline with the documentation. Given: class Account thread_mattr_accessor :user end class Customer < Account end Account.user = \"DHH\" Customer.user = \"Rafael\" Before: Account.user # => \"Rafael\" After: Account.user # => \"DHH\" * Shinichi Maeshima * * Since weeks are no longer converted to days, add `:weeks` to the list of parts that `ActiveSupport::TimeWithZone` will recognize as possibly being of variable duration to take account of DST transitions. Fixes #26039. * Andrew White * * Fix `ActiveSupport::TimeZone#strptime`. Now raises `ArgumentError` when the given time doesn\'t match the format. The error is the same as the one given by Ruby\'s `Date.strptime`. Previously it raised `NoMethodError: undefined method empty? for nil:NilClass.` due to a bug. Fixes #25701. * John Gesimondo * * Fri Aug 12 2016 cooloAATTsuse.com- updated to version 5.0.0.1 see installed CHANGELOG.md
|
|
|