Path to this page:
Subject: CVS commit: pkgsrc
From: Takahiro Kambe
Date: 2023-07-09 05:30:34
Message id: 20230709033034.3A4FFFBDB@cvs.NetBSD.org
Log Message:
www/ruby-rails70: update to 7.0.6
Active Support
* Fix EncryptedConfiguration returning incorrect values for some Hash
methods. (Hartley McGuire)
* Fix arguments being destructed Enumerable#many? with block. (Andrew
Novoselac)
* Fix humanize for strings ending with id. (fatkodima)
Active Model
* No changes.
Active Record
* Fix autosave associations with validations added on :base of the
associated objects. (fatkodima)
* Fix result with anonymous PostgreSQL columns of different type from json.
(Oleksandr Avoiants)
* Preserve timestamp when setting an ActiveSupport::TimeWithZone value to
timestamptz attribute. (fatkodima)
* Fix where on association with has_one/has_many polymorphic relations.
Before:
Treasure.where(price_estimates: PriceEstimate.all)
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT \
"price_estimates"."estimate_of_id" FROM \
"price_estimates")
Later:
Treasure.where(price_estimates: PriceEstimate.all)
#=> SELECT (...) WHERE "treasures"."id" IN (SELECT \
"price_estimates"."estimate_of_id" FROM \
"price_estimates" WHERE \
"price_estimates"."estimate_of_type" = 'Treasure')
(Lázaro Nixon)
* Fix decrementing counter caches on optimistically locked record deletion.
(fatkodima)
* Ensure binary-destined values have binary encoding during type cast.
(Matthew Draper)
* Preserve existing column default functions when altering table in SQLite.
(fatkodima)
* Remove table alias added when using where.missing or where.associated.
(fatkodima)
* Fix Enumerable#in_order_of to only flatten first level to preserve
nesting. (Miha Rekar)
Action View
* No changes.
Action Pack
* No changes.
Active Job
* Fix error Active Job passed class with permitted?. (Alex Baldwin)
Action Mailer
* No changes.
Action Cable
* Fix Action Cable Redis configuration with sentinels. (Dmitriy Ivliev)
Active Storage
* Fix retrieving rotation value from FFmpeg on version 5.0+.
In FFmpeg version 5.0+ the rotation value has been removed from tags.
Instead the value can be found in side_data_list. Along with this update
it's possible to have values of -90, -270 to denote the video has been
rotated.
(Haroon Ahmed)
Action Mailbox
* No changes.
Action Text
* No changes.
Railties
* Avoid escaping paths when editing credentials. (Jonathan Hefner)
Files: