pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/databases/ruby-activerecord70
Module Name: pkgsrc
Committed By: taca
Date: Mon Nov 3 07:59:48 UTC 2025
Modified Files:
pkgsrc/databases/ruby-activerecord70: distinfo
Log Message:
databases/ruby-activerecord70: update to 7.0.10
7.0.10 (2029-10-28)
* Fix an issue that could cause database connection leaks
If Active Record successfully connected to the database, but then failed
to read the server informations, the connection would be leaked until the
Ruby garbage collector triggers.
Jean Boussier
* Fix single quote escapes on default generated MySQL columns
MySQL 5.7.5+ supports generated columns, which can be used to create a
column that is computed from an expression.
Previously, the schema dump would output a string with double escapes for
generated columns with single quotes in the default expression.
This would result in issues when importing the schema on a fresh instance
of a MySQL database.
Now, the string will not be escaped and will be valid Ruby upon importing
of the schema.
Yash Kapadia
* Fix Relation#transaction to not apply a default scope
The method was incorrectly setting a default scope around its block:
Post.where(published: true).transaction do
Post.count # SELECT COUNT(*) FROM posts WHERE published = FALSE;
end
Jean Boussier
* Fix renaming primary key index when renaming a table with a UUID primary
key in PostgreSQL.
fatkodima
* Fix where(field: values) queries when field is a serialized attribute
(for example, when field uses ActiveRecord::Base.serialize or is a JSON
column).
João Alves
* Don't mark Float::INFINITY as changed when reassigning it
When saving a record with a float infinite value, it shouldn't mark as
changed
Maicol Bentancor
* ActiveRecord::Base.table_name now returns nil instead of raising
"undefined method abstract_class? for Object:Class".
a5-stable
* Fix upserting for custom :on_duplicate and :unique_by consisting of all
inserts keys.
fatkodima
* Fix NoMethodError when casting a PostgreSQL money value that uses a comma
as its radix point and has no leading currency symbol. For example, when
casting "3,50".
Andreas Reischuck and Jonathan Hefner
* Fix duplicate quoting for check constraint expressions in schema dump when
using MySQL
A check constraint with an expression, that already contains quotes, lead
to an invalid schema dump with the mysql2 adapter.
Fixes #42424.
Felix Tscheulin
* Fix MySQL expression index dumping with escaped quotes.
fatkodima
* Fix uniqueness validation on association not using overridden primary key.
fatkodima
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 pkgsrc/databases/ruby-activerecord70/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/databases/ruby-activerecord70/distinfo
diff -u pkgsrc/databases/ruby-activerecord70/distinfo:1.23 pkgsrc/databases/ruby-activerecord70/distinfo:1.24
--- pkgsrc/databases/ruby-activerecord70/distinfo:1.23 Wed Dec 11 15:33:15 2024
+++ pkgsrc/databases/ruby-activerecord70/distinfo Mon Nov 3 07:59:48 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.23 2024/12/11 15:33:15 taca Exp $
+$NetBSD: distinfo,v 1.24 2025/11/03 07:59:48 taca Exp $
-BLAKE2s (activerecord-7.0.8.7.gem) = 9423d7ce5f49abc837739501ec2e7a3ceff94617f51220dbf09b1142f1e93ce2
-SHA512 (activerecord-7.0.8.7.gem) = f1dd576d8eddefd363007d33ce3187a368d259b5f88b76ad10c3ddd6c354dfda03f21d102c9f3f9794b5c8520be5aa98924b42a152aa91a7703309d12d59793f
-Size (activerecord-7.0.8.7.gem) = 480768 bytes
+BLAKE2s (activerecord-7.0.10.gem) = 46f3021a0d7720189edc3975ef441ad7f27126b771f3e63bf565c49637f30201
+SHA512 (activerecord-7.0.10.gem) = 3be4a54655583b97c99680a89431f9f51d3d6aa4547b9523d264953d29aa2311d8a4dc167ecee54d3b07eb5492945cb4b877bba733df89720ea05e206dcf6c49
+Size (activerecord-7.0.10.gem) = 481280 bytes
Home |
Main Index |
Thread Index |
Old Index