File rubygem-activesupport-6.1.changes of Package rubygem-activesupport-6.1
-------------------------------------------------------------------
Mon Nov 4 16:01:32 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>
- ## Rails 6.1.7.10 (October 23, 2024) ##
* No changes.
## Rails 6.1.7.9 (October 15, 2024) ##
* No changes.
-------------------------------------------------------------------
Fri Jun 21 09:16:16 UTC 2024 - Dan Čermák <dan.cermak@posteo.net>
- ## Rails 6.1.7.8 (June 04, 2024) ##
* No changes.
## Rails 6.1.7.7 (February 21, 2024) ##
* No changes.
-------------------------------------------------------------------
Thu Nov 2 15:34:36 UTC 2023 - Dan Čermák <dan.cermak@posteo.net>
- ## Rails 6.1.7.6 (August 22, 2023) ##
* No changes.
## Rails 6.1.7.5 (August 22, 2023) ##
* Use a temporary file for storing unencrypted files while editing
[CVE-2023-38037]
## Rails 6.1.7.4 (June 26, 2023) ##
* No changes.
## Rails 6.1.7.3 (March 13, 2023) ##
* Implement SafeBuffer#bytesplice
[CVE-2023-28120]
## Rails 6.1.7.2 (January 24, 2023) ##
* No changes.
## Rails 6.1.7.1 (January 17, 2023) ##
* Avoid regex backtracking in Inflector.underscore
[CVE-2023-22796]
-------------------------------------------------------------------
Mon Oct 10 12:55:10 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 6.1.7
see installed CHANGELOG.md
## Rails 6.1.7 (September 09, 2022) ##
* No changes.
-------------------------------------------------------------------
Thu Aug 4 12:53:24 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 6.1.6.1
see installed CHANGELOG.md
## Rails 6.1.6.1 (July 12, 2022) ##
* No changes.
-------------------------------------------------------------------
Thu Apr 28 05:16:12 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 6.1.5.1
see installed CHANGELOG.md
## Rails 6.1.5.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 6.1.5 (March 09, 2022) ##
* Fix `ActiveSupport::Duration.build` to support negative values.
The algorithm to collect the `parts` of the `ActiveSupport::Duration`
ignored the sign of the `value` and accumulated incorrect part values. This
impacted `ActiveSupport::Duration#sum` (which is dependent on `parts`) but
not `ActiveSupport::Duration#eql?` (which is dependent on `value`).
*Caleb Buxton*, *Braden Staudacher*
* `Time#change` and methods that call it (eg. `Time#advance`) will now
return a `Time` with the timezone argument provided, if the caller was
initialized with a timezone argument.
Fixes [#42467](https://github.com/rails/rails/issues/42467).
*Alex Ghiculescu*
* Clone to keep extended Logger methods for tagged logger.
*Orhan Toy*
* `assert_changes` works on including `ActiveSupport::Assertions` module.
*Pedro Medeiros*
## Rails 6.1.4.7 (March 08, 2022) ##
* No changes.
-------------------------------------------------------------------
Tue Feb 15 07:13:53 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 6.1.4.6
see installed CHANGELOG.md
## Rails 6.1.4.6 (February 11, 2022) ##
* Fix Reloader method signature to work with the new Executor signature
## Rails 6.1.4.5 (February 11, 2022) ##
* No changes.
-------------------------------------------------------------------
Tue Jan 25 06:27:00 UTC 2022 - Stephan Kulow <coolo@suse.com>
updated to version 6.1.4.4
see installed CHANGELOG.md
## Rails 6.1.4.4 (December 15, 2021) ##
* No changes.
## Rails 6.1.4.3 (December 14, 2021) ##
* No changes.
## Rails 6.1.4.2 (December 14, 2021) ##
* No changes.
-------------------------------------------------------------------
Wed Aug 25 05:03:30 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.4.1
* no changes
-------------------------------------------------------------------
Fri Jul 9 12:28:31 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.4
* MemCacheStore: convert any underlying value (including `false`) to an `Entry`.
See [#42559](https://github.com/rails/rails/pull/42559).
*Alex Ghiculescu*
* Fix bug in `number_with_precision` when using large `BigDecimal` values.
Fixes #42302.
*Federico Aldunate*, *Zachary Scott*
* Check byte size instead of length on `secure_compare`.
*Tietew*
* Fix `Time.at` to not lose `:in` option.
*Ryuta Kamizono*
* Require a path for `config.cache_store = :file_store`.
*Alex Ghiculescu*
* Avoid having to store complex object in the default translation file.
*Rafael Mendonça França*
-------------------------------------------------------------------
Fri May 14 15:56:56 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.3.2
* no changes
-------------------------------------------------------------------
Tue Apr 20 13:00:05 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.3.1
* no changes
-------------------------------------------------------------------
Mon Mar 15 04:13:17 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.3
* no changes
-------------------------------------------------------------------
Mon Feb 15 12:32:23 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.2.1
## Rails 6.1.2.1 (February 10, 2021) ##
* No changes.
## Rails 6.1.2 (February 09, 2021) ##
* `ActiveSupport::Cache::MemCacheStore` now accepts an explicit `nil` for its `addresses` argument.
```ruby
config.cache_store = :mem_cache_store, nil
# is now equivalent to
config.cache_store = :mem_cache_store
# and is also equivalent to
config.cache_store = :mem_cache_store, ENV["MEMCACHE_SERVERS"] || "localhost:11211"
# which is the fallback behavior of Dalli
```
This helps those migrating from `:dalli_store`, where an explicit `nil` was permitted.
*Michael Overmeyer*
-------------------------------------------------------------------
Wed Jan 20 07:14:50 UTC 2021 - Manuel Schnitzer <mschnitzer@suse.com>
- updated to version 6.1.1
* Change `IPAddr#to_json` to match the behavior of the json gem returning the string representation
instead of the instance variables of the object.
Before:
```ruby
IPAddr.new("127.0.0.1").to_json
# => "{\"addr\":2130706433,\"family\":2,\"mask_addr\":4294967295}"
```
After:
```ruby
IPAddr.new("127.0.0.1").to_json
# => "\"127.0.0.1\""
-------------------------------------------------------------------
Fri Dec 11 02:46:18 UTC 2020 - Manuel Schnitzer <mschnitzer@suse.com>
- removed build flags for Ruby 2.6 and 2.7 only
We need to have Ruby 2.5 binaries as well.
- removed disable_docs gem2rpm option (not available)
-------------------------------------------------------------------
Wed Dec 9 23:53:30 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>
- update to version 6.1.0:
https://weblog.rubyonrails.org/2020/12/9/Rails-6-1-0-release/
-------------------------------------------------------------------
Mon Nov 2 23:24:05 UTC 2020 - Marcus Rueckert <mrueckert@suse.de>
- initial package