File rubygem-activesupport-5.2.changes of Package rubygem-activesupport-5.2

-------------------------------------------------------------------
Thu Aug  4 12:53:13 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 5.2.8.1
 see installed CHANGELOG.md

  ## Rails 5.2.8.1 (July 12, 2022) ##
  
  *   No changes.
  
  
  ## Rails 5.2.8 (May 09, 2022) ##
  
  *   No changes.
  
  

-------------------------------------------------------------------
Thu Apr 28 05:15:43 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 5.2.7.1
 see installed CHANGELOG.md

  ## Rails 5.2.7.1 (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 5.2.7 (March 10, 2022) ##
  
  *   Restore support to Ruby 2.2.
  
      *ojab*
  
  
  ## Rails 5.2.6.3 (March 08, 2022) ##
  
  *   No changes.
  
  

-------------------------------------------------------------------
Tue Feb 15 07:13:23 UTC 2022 - Stephan Kulow <coolo@suse.com>

updated to version 5.2.6.2
 see installed CHANGELOG.md

  ## Rails 5.2.6.2 (February 11, 2022) ##
  
  *   Fix Reloader method signature to work with the new Executor signature
  
  
  ## Rails 5.2.6.1 (February 11, 2022) ##
  
  *   No changes.
  
  

-------------------------------------------------------------------
Thu Jun 24 16:52:00 UTC 2021 - Stephan Kulow <coolo@suse.com>

updated to version 5.2.6
 see installed CHANGELOG.md

  ## Rails 5.2.6 (May 05, 2021) ##
  
  *   No changes.
  
  
  ## Rails 5.2.5 (March 26, 2021) ##
  
  *   No changes.
  
  
  ## Rails 5.2.4.6 (May 05, 2021) ##
  
  *   No changes.
  
  
  ## Rails 5.2.4.5 (February 10, 2021) ##
  
  *   No changes.
  
  

-------------------------------------------------------------------
Fri Sep 25 13:24:20 UTC 2020 - Stephan Kulow <coolo@suse.com>

updated to version 5.2.4.4
 see installed CHANGELOG.md

  ## Rails 5.2.4.4 (September 09, 2020) ##
  
  *   No changes.
  
  
  ## Rails 5.2.4.3 (May 18, 2020) ##
  
  *   [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  7 20:04:18 UTC 2020 - Stephan Kulow <coolo@suse.com>

- updated to version 5.2.4.2
 see installed CHANGELOG.md

-------------------------------------------------------------------
Fri Dec 20 15:13:14 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- update to version 5.2.4.1 (CVE-2019-16782):
  https://weblog.rubyonrails.org/2019/12/18/Rails-5-2-4-1-has-been-released/

-------------------------------------------------------------------
Thu Nov 28 13:07:37 UTC 2019 - Manuel Schnitzer <mschnitzer@suse.com>

- updated to version 5.2.4

  *   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*

-------------------------------------------------------------------
Fri Mar 29 05:54:45 UTC 2019 - Stephan Kulow <coolo@suse.com>

- updated to version 5.2.3
 see installed CHANGELOG.md

  ## Rails 5.2.3 (March 27, 2019) ##
  
  *   Add `ActiveSupport::HashWithIndifferentAccess#assoc`.
  
      `assoc` can now be called with either a string or a symbol.
  
      *Stefan Schüßler*
  
  *   Fix `String#safe_constantize` throwing a `LoadError` for incorrectly cased constant references.
  
      *Keenan Brock*
  
  *   Allow Range#=== and Range#cover? on Range
  
      `Range#cover?` can now accept a range argument like `Range#include?` and
      `Range#===`. `Range#===` works correctly on Ruby 2.6. `Range#include?` is moved
      into a new file, with these two methods.
  
      *utilum*
  
  *   If the same block is `included` multiple times for a Concern, an exception is no longer raised.
  
      *Mark J. Titorenko*, *Vlad Bokov*

-------------------------------------------------------------------
Thu Mar 14 03:44:45 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- update to version 5.2.2.1:
  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 19:51:02 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- rb_build_ruby_abi needs to be rb_build_ruby_abis

-------------------------------------------------------------------
Fri Jan 18 16:24:43 UTC 2019 - Marcus Rueckert <mrueckert@suse.de>

- limit to ruby 2.5 and above for 42.3/sle12

-------------------------------------------------------------------
Sat Dec  8 16:17:32 UTC 2018 - Stephan Kulow <coolo@suse.com>

- updated to version 5.2.2
 see installed CHANGELOG.md

  ## Rails 5.2.2 (December 04, 2018) ##
  
  *   Fix bug where `#to_options` for `ActiveSupport::HashWithIndifferentAccess`
      would not act as alias for `#symbolize_keys`.
  
      *Nick Weiland*
  
  *   Improve the logic that detects non-autoloaded constants.
  
      *Jan Habermann*, *Xavier Noria*
  
  *   Fix bug where `URI.unescape` would fail with mixed Unicode/escaped character input:
  
          URI.unescape("バ")  # => "バ"
          URI.unescape("%E3%83%90")  # => "バ"
          URI.unescape("バ%E3%83%90")  # => Encoding::CompatibilityError
  
      *Ashe Connor*, *Aaron Patterson*

-------------------------------------------------------------------
Mon Dec  3 06:29:17 UTC 2018 - mschnitzer@suse.com

- updated to version 5.2.1.1 (boo#1118076)

  * No changes / Just a version bump to match with Rails 5.2.1.1

-------------------------------------------------------------------
Wed Aug  8 14:55:31 UTC 2018 - mschnitzer@suse.com

- updated to version 5.2.1 (boo#1104209)

* Redis cache store: `delete_matched` no longer blocks the Redis server.
  (Switches from evaled Lua to a batched SCAN + DEL loop.)
  (Gleb Mazovetskiy)

* Fix bug where `ActiveSupport::Timezone.all` would fail when tzinfo data for
  any timezone defined in `ActiveSupport::TimeZone::MAPPING` is missing.
  (Dominik Sander)

* Fix bug where `ActiveSupport::Cache` will massively inflate the storage
  size when compression is enabled (which is true by default). This patch
  does not attempt to repair existing data: please manually flush the cache
  to clear out the problematic entries.
  (Godfrey Chan)

* Fix `ActiveSupport::Cache#read_multi` bug with local cache enabled that was
  returning instances of `ActiveSupport::Cache::Entry` instead of the raw values.
  (Jason Lee)

-------------------------------------------------------------------
Mon Apr 16 12:20:40 UTC 2018 - mschnitzer@suse.com

- initialize package

  see changelog: https://github.com/rails/rails/blob/v5.2.0/activesupport/CHANGELOG.md
openSUSE Build Service is sponsored by