SEARCH
NEW RPMS
DIRECTORIES
ABOUT
FAQ
VARIOUS
BLOG

 
 
Changelog for ruby3.1-rubygem-activesupport-6.0-6.0.4.8-22.1.x86_64.rpm :

* Thu Apr 28 2022 Stephan Kulow updated to version 6.0.4.8 see installed CHANGELOG.md [#]# Rails 6.0.4.8 (April 26, 2022) ##
* Fix and add protections for XSS in `ActionView::Helpers` and `ERB::Util`. Add the method `ERB::Util.xml_name_escape` to escape dangerous characters in names of tags and names of attributes, following the specification of XML.
* Álvaro Martín Fraguas
* [#]# Rails 6.0.4.7 (March 08, 2022) ##
* No changes.
* Thu Feb 24 2022 Dominique Leuenberger - Update to version 6.0.4.6: + Fix Reloader method signature to work with the new Executor signature.
* Tue Jan 25 2022 Stephan Kulow updated to version 6.0.4.4 see installed CHANGELOG.md [#]# Rails 6.0.4.4 (December 15, 2021) ##
* No changes. [#]# Rails 6.0.4.3 (December 14, 2021) ##
* No changes. [#]# Rails 6.0.4.2 (December 14, 2021) ##
* No changes. [#]# Rails 6.0.4.1 (August 19, 2021) ##
* No changes.
* Thu Jun 24 2021 Stephan Kulow updated to version 6.0.4 see installed CHANGELOG.md [#]# Rails 6.0.4 (June 15, 2021) ##
* Fixed issue in `ActiveSupport::Cache::RedisCacheStore` not passing options to `read_multi` causing `fetch_multi` to not work properly.
* Rajesh Sharma
*
* `with_options` copies its options hash again to avoid leaking mutations. Fixes #39343.
* Eugene Kenny
* [#]# Rails 6.0.3.7 (May 05, 2021) ##
* No changes. [#]# Rails 6.0.3.6 (March 26, 2021) ##
* No changes. [#]# Rails 6.0.3.5 (February 10, 2021) ##
* No changes.
* Fri Oct 16 2020 Marcus Rueckert - update to version 6.0.3.4: CVE-2020-8264 (boo#1177521) https://weblog.rubyonrails.org/2020/10/7/Rails-6-0-3-4-has-been-released/
* Sat Sep 12 2020 Manuel Schnitzer - updated to version 6.0.3.3
* no changes
* Thu Jun 25 2020 Manuel Schnitzer - updated to version 6.0.3.2
* no changes
* Wed May 27 2020 Manuel Schnitzer - updated to version 6.0.3.1
* CVE-2020-8165: Deprecate Marshal.load on raw cache read in RedisCacheStore
* CVE-2020-8165: Avoid Marshal.load on raw cache value in MemCacheStore
* Thu May 07 2020 Stephan Kulow - updated to version 6.0.3 see installed CHANGELOG.md [#]# Rails 6.0.3 (May 06, 2020) ##
* `Array#to_sentence` no longer returns a frozen string. Before: [\'one\', \'two\'].to_sentence.frozen? [#] => true After: [\'one\', \'two\'].to_sentence.frozen? [#] => false
* Nicolas Dular
*
* Update `ActiveSupport::Messages::Metadata#fresh?` to work for cookies with expiry set when `ActiveSupport.parse_json_times = true`.
* Christian Gregg
* [#]# Rails 6.0.2.2 (March 19, 2020) ##
* No changes.
* Mon Apr 27 2020 Manuel Schnitzer - Updated to version 6.0.2.2 no changes
* Fri Dec 20 2019 Manuel Schnitzer - updated to version 6.0.2.1
* no changes
* Sat Dec 14 2019 Manuel Schnitzer - updated to version 6.0.2
* Eager load translations during initialization.
* Diego Plentz
*
* Use per-thread CPU time clock on `ActiveSupport::Notifications`.
* George Claghorn
*
* Tue Nov 12 2019 Manuel Schnitzer - updated to version 6.0.1
* `ActiveSupport::SafeBuffer` supports `Enumerator` methods.
* Shugo Maeda
*
* The Redis cache store fails gracefully when the server returns a \"max number of clients reached\" error.
* Brandon Medenwald
*
* Fixed that mutating a value returned by a memory cache store would unexpectedly change the cached value.
* Jonathan Hyman
*
* The default inflectors in `zeitwerk` mode support overrides: ```ruby [#] config/initializers/zeitwerk.rb Rails.autoloaders.each do |autoloader| autoloader.inflector.inflect( \"html_parser\" => \"HTMLParser\", \"ssl_error\" => \"SSLError\" ) end ``` That way, you can tweak how individual basenames are inflected without touching Active Support inflection rules, which are global. These inflectors fallback to `String#camelize`, so existing inflection rules are still taken into account for non-overridden basenames. Please, check the [autoloading guide for `zeitwerk` mode](https://guides.rubyonrails.org/v6.0/autoloading_and_reloading_constants.html#customizing-inflections) if you prefer not to depend on `String#camelize` at all.
* Xavier Noria
*
* Improve `Range#===`, `Range#include?`, and `Range#cover?` to work with beginless (startless) and endless range targets.
* Allen Hsu
*,
*Andrew Hodgkinson
*
* Don\'t use `Process#clock_gettime(CLOCK_PROCESS_CPUTIME_ID)` on Solaris
* Iain Beeston
*
* Sat Aug 17 2019 Manuel Schnitzer - updated to version 6.0.0
* Let `require_dependency` in `zeitwerk` mode look the autoload paths up for better backwards compatibility.
* Xavier Noria
*
* Let `require_dependency` in `zeitwerk` mode support arguments that respond to `to_path` for better backwards compatibility.
* Xavier Noria
*
* Make ActiveSupport::Logger Fiber-safe. Fixes #36752. Use `Fiber.current.__id__` in `ActiveSupport::Logger#local_level=` in order to make log level local to Ruby Fibers in addition to Threads. Example: logger = ActiveSupport::Logger.new(STDOUT) logger.level = 1 p \"Main is debug? #{logger.debug?}\" Fiber.new { logger.local_level = 0 p \"Thread is debug? #{logger.debug?}\" }.resume p \"Main is debug? #{logger.debug?}\" Before: Main is debug? false Thread is debug? true Main is debug? true After: Main is debug? false Thread is debug? true Main is debug? false
* Alexander Varnin
*
* Do not delegate missing `marshal_dump` and `_dump` methods via the `delegate_missing_to` extension. This avoids unintentionally adding instance variables when calling `Marshal.dump(object)`, should the delegation target of `object` be a method which would otherwise add them. Fixes #36522.
* Aaron Lipman
*
* Mon Jul 22 2019 Manuel Schnitzer - updated to version 6.0.0.rc2
* `truncate` would return the original string if it was too short to be truncated and a frozen string if it were long enough to be truncated. Now truncate will consistently return an unfrozen string regardless. This behavior is consistent with `gsub` and `strip`. Before: \'foobar\'.truncate(5).frozen? [#] => true \'foobar\'.truncate(6).frozen? [#] => false After: \'foobar\'.truncate(5).frozen? [#] => false \'foobar\'.truncate(6).frozen? [#] => false
* Jordan Thomas
*
* Sun Jun 30 2019 Manuel Schnitzer - disable \'disable_docs\' option temporarily until we get an updated gem2rpm and ruby-common package in our devel project.
* Sat May 04 2019 Marcus Rueckert - update to version 6.0.0.rc1: https://weblog.rubyonrails.org/2019/4/27/this-week-in-rails-rails-6-0-0-rc1-is-here-say-hi-at-railsconf/
* Thu Mar 14 2019 Marcus Rueckert - update to version 6.0.0.beta3: https://weblog.rubyonrails.org/2019/3/13/Rails-4-2-5-1-5-1-6-2-have-been-released/ CVE-2019-5418 CVE-2019-5419 CVE-2019-5420
* Sat Jan 19 2019 Marcus Rueckert - rb_build_ruby_abi needs to be rb_build_ruby_abis
* Sat Jan 19 2019 Marcus Rueckert - initial package
 
ICM