pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc



Module Name:    pkgsrc
Committed By:   taca
Date:           Sun Dec  1 15:47:47 UTC 2024

Modified Files:
        pkgsrc/databases/ruby-activerecord71: distinfo
        pkgsrc/devel/ruby-activejob71: distinfo
        pkgsrc/devel/ruby-activemodel71: distinfo
        pkgsrc/devel/ruby-activestorage71: distinfo
        pkgsrc/devel/ruby-activesupport71: distinfo
        pkgsrc/devel/ruby-railties71: distinfo
        pkgsrc/lang/ruby: rails.mk
        pkgsrc/mail/ruby-actionmailbox71: distinfo
        pkgsrc/mail/ruby-actionmailer71: distinfo
        pkgsrc/textproc/ruby-actiontext71: distinfo
        pkgsrc/www/ruby-actioncable71: distinfo
        pkgsrc/www/ruby-actionpack71: distinfo
        pkgsrc/www/ruby-actionview71: distinfo
        pkgsrc/www/ruby-rails71: distinfo

Log Message:
www/rails71: update to 7.1.5

Ruby on Rails 7.1.5 (2024-10-31)

Active Model

* Fix regression in alias_attribute to work with user defined methods.

   alias_attribute would wrongly assume the attribute accessor was generated
   by Active Model.

        class Person
          include ActiveModel::AttributeMethods

          define_attribute_methods :name
          attr_accessor :name

          alias_attribute :full_name, :name
        end

    person.full_name # => NoMethodError: undefined method `attribute' for an
    instance of Person

    Jean Boussier

Active Record

* Fix marshalling of unsaved associated records in 7.1 format.

  The 7.1 format would only marshal associated records if the association
  was loaded.  But associations that would only contain unsaved records
  would be skipped.

  Jean Boussier

* Fix an issue where .left_outer_joins used with multiple associations that
  have the same child association but different parents does not join all
  parents.

  Previously, using .left_outer_joins with the same child association would
  only join one of the parents.

  Now it will correctly join both parents.

    Fixes #41498.

    Garrett Blehm

* Ensure ActiveRecord::Encryption.config is always ready before access.

  Previously, ActiveRecord::Encryption configuration was deferred until
  ActiveRecord::Base was loaded. Therefore, accessing
  ActiveRecord::Encryption.config properties before ActiveRecord::Base was
  loaded would give incorrect results.

  ActiveRecord::Encryption now has its own loading hook so that its
  configuration is set as soon as needed.

  When ActiveRecord::Base is loaded, even lazily, it in turn triggers the
  loading of ActiveRecord::Encryption, thus preserving the original behavior
  of having its config ready before any use of ActiveRecord::Base.

  Maxime Réty

* Add TimeZoneConverter#== method, so objects will be properly compared by
  their type, scale, limit & precision.

  Address #52699.

  Ruy Rocha


To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/databases/ruby-activerecord71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-activejob71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-activemodel71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-activestorage71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-activesupport71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/devel/ruby-railties71/distinfo
cvs rdiff -u -r1.171 -r1.172 pkgsrc/lang/ruby/rails.mk
cvs rdiff -u -r1.8 -r1.9 pkgsrc/mail/ruby-actionmailbox71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/mail/ruby-actionmailer71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/textproc/ruby-actiontext71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/ruby-actioncable71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/ruby-actionpack71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/ruby-actionview71/distinfo
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/ruby-rails71/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-activerecord71/distinfo
diff -u pkgsrc/databases/ruby-activerecord71/distinfo:1.8 pkgsrc/databases/ruby-activerecord71/distinfo:1.9
--- pkgsrc/databases/ruby-activerecord71/distinfo:1.8   Sun Oct 27 14:35:26 2024
+++ pkgsrc/databases/ruby-activerecord71/distinfo       Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (activerecord-7.1.4.2.gem) = e4122c55b8f61b2271340543098e7d0981c5dfc1e27eba053ba3a8de459405a8
-SHA512 (activerecord-7.1.4.2.gem) = 42113efe981785a6e2d48f455b83229e616493022197855711c4a486658e83716f74eaef4390c5ca33bf9905dc9004b8d2f32ba1094cfd94f3f233817d475994
-Size (activerecord-7.1.4.2.gem) = 547840 bytes
+BLAKE2s (activerecord-7.1.5.gem) = 17ded7b357a89f90a2ac2fd57d0549d266e12af04643ab90baa02766c17882f7
+SHA512 (activerecord-7.1.5.gem) = 4788ce9ea316d4a19d28b003b3d491b1fc68f514b545591d3d4e51a154eebb92a3b7ffe700cd78345a85ec7552a188ef0f966b79829248b0aa3719487e70c0df
+Size (activerecord-7.1.5.gem) = 548352 bytes

Index: pkgsrc/devel/ruby-activejob71/distinfo
diff -u pkgsrc/devel/ruby-activejob71/distinfo:1.8 pkgsrc/devel/ruby-activejob71/distinfo:1.9
--- pkgsrc/devel/ruby-activejob71/distinfo:1.8  Sun Oct 27 14:35:26 2024
+++ pkgsrc/devel/ruby-activejob71/distinfo      Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (activejob-7.1.4.2.gem) = 0b54eedfbb6d9d5e589c66e4ce415553e8715ecf76a174a37e36f2559799162f
-SHA512 (activejob-7.1.4.2.gem) = 73bcb60e3966f3abdcc0c9c966e962b59778a10b73992ca2c46682a82239fcfa63f2d280a618bd5f6b46a9bf7190889eda2016128e65ef4792afd2ddcb9f6276
-Size (activejob-7.1.4.2.gem) = 37376 bytes
+BLAKE2s (activejob-7.1.5.gem) = cb684c25a712480c797137c756a62546386ba15c2101ed759f3379dcb7aea743
+SHA512 (activejob-7.1.5.gem) = f06c93b3860d5db548753bdd9d6a01e16287caad7f4ae9d730194a5db616db91676e98b2b8fbe8455c76752357ecd7bf6c1d0c060cc27595edf1e7cce3f851f5
+Size (activejob-7.1.5.gem) = 37376 bytes

Index: pkgsrc/devel/ruby-activemodel71/distinfo
diff -u pkgsrc/devel/ruby-activemodel71/distinfo:1.8 pkgsrc/devel/ruby-activemodel71/distinfo:1.9
--- pkgsrc/devel/ruby-activemodel71/distinfo:1.8        Sun Oct 27 14:35:26 2024
+++ pkgsrc/devel/ruby-activemodel71/distinfo    Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (activemodel-7.1.4.2.gem) = af5f526cf667395c343a35bf8e9840e13aba8567de842a3f856725acbb3d555f
-SHA512 (activemodel-7.1.4.2.gem) = 5ae0802ae6788317991304790eedc08bd9c871f745bab5ccb5cb9fd5c20892dd7064113b8aa01aa40c1dddfe066987f3288c1dfc66eef7a7594c9a5b6ffeeac5
-Size (activemodel-7.1.4.2.gem) = 69120 bytes
+BLAKE2s (activemodel-7.1.5.gem) = 64b4fb4b05029bc2265cca5f682a07b9724dcddaba53196d2d8ebad9e4feef48
+SHA512 (activemodel-7.1.5.gem) = 693bf5b98bb7da9adc03240ec7f2b950094c1baf3f39f9d26bb40ffa8920df081235f6ac5a482f51264d72a0f200149736b9ced7e6e78d90c255814ed2f06072
+Size (activemodel-7.1.5.gem) = 69120 bytes

Index: pkgsrc/devel/ruby-activestorage71/distinfo
diff -u pkgsrc/devel/ruby-activestorage71/distinfo:1.8 pkgsrc/devel/ruby-activestorage71/distinfo:1.9
--- pkgsrc/devel/ruby-activestorage71/distinfo:1.8      Sun Oct 27 14:35:26 2024
+++ pkgsrc/devel/ruby-activestorage71/distinfo  Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (activestorage-7.1.4.2.gem) = 27262b5a65b18470da6dbdbcf2aa5b8ab22d972a1320ae5e04c587d7bf65c524
-SHA512 (activestorage-7.1.4.2.gem) = 866d2d451fea76b29e55141bb95ecdb3ad89bd6e054f09b74aa414785715be0f251545dbff8da5a2a3e251cb3222d1f4cd70f26e4fc22e610ece8ff21f2dd79c
-Size (activestorage-7.1.4.2.gem) = 67584 bytes
+BLAKE2s (activestorage-7.1.5.gem) = 6ac0d99e140736498d888a8ebe4edcab7119a1254ecfaf07e208bcc8c3eda555
+SHA512 (activestorage-7.1.5.gem) = c2340b124d1888e7295a1388980a4508fd62b095821111417e65d171987334f79d01e8740444a7eec01b9c2c5849e2ab6994963b5acb3fc9e30f80f1ec678320
+Size (activestorage-7.1.5.gem) = 67584 bytes

Index: pkgsrc/devel/ruby-activesupport71/distinfo
diff -u pkgsrc/devel/ruby-activesupport71/distinfo:1.8 pkgsrc/devel/ruby-activesupport71/distinfo:1.9
--- pkgsrc/devel/ruby-activesupport71/distinfo:1.8      Sun Oct 27 14:35:25 2024
+++ pkgsrc/devel/ruby-activesupport71/distinfo  Sun Dec  1 15:47:45 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:25 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:45 taca Exp $
 
-BLAKE2s (activesupport-7.1.4.2.gem) = 28bd97990acbaf1eed1c83b03c2d6f1659910e36b1c169d9d742c150bfd8c43c
-SHA512 (activesupport-7.1.4.2.gem) = 5385c4b8e1bae5d8d11769101f941323c1f69a0b8541a3e54b48dce266ad93e9af0bc4ef63b0a9c954a3c95480624fb689ed63167aa9b8967a5a5bb3c8064703
-Size (activesupport-7.1.4.2.gem) = 258560 bytes
+BLAKE2s (activesupport-7.1.5.gem) = e422e7528f089f224932277c6bfa6126d8bf7157fe1d78088892ee31e2dd2209
+SHA512 (activesupport-7.1.5.gem) = 0bd603324960f37af7d22db73557f208c4e00338648ecc6950880b86775baafb55ce0034249aabf557413c3e41523eb93ead2b2a8e39658a6fac85a252cb7023
+Size (activesupport-7.1.5.gem) = 258560 bytes

Index: pkgsrc/devel/ruby-railties71/distinfo
diff -u pkgsrc/devel/ruby-railties71/distinfo:1.8 pkgsrc/devel/ruby-railties71/distinfo:1.9
--- pkgsrc/devel/ruby-railties71/distinfo:1.8   Sun Oct 27 14:35:27 2024
+++ pkgsrc/devel/ruby-railties71/distinfo       Sun Dec  1 15:47:47 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:27 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:47 taca Exp $
 
-BLAKE2s (railties-7.1.4.2.gem) = d248be4a18bb5ed0187bb293b4c99fa28c9630ba32ca8eec4ccb18f221dc1df3
-SHA512 (railties-7.1.4.2.gem) = e2670313fada5a2f40c6ff60d73e45fa6250d74083f985775486e8877b86da73970ce6443b3632a0e677ac93306a29c649555976e735d8795febc95026ca7853
-Size (railties-7.1.4.2.gem) = 182272 bytes
+BLAKE2s (railties-7.1.5.gem) = ad9bf9f41cf1526ed88573e1be79cbb4316dd402e9e9398cde660b7e5786cc9a
+SHA512 (railties-7.1.5.gem) = 2a458c43db5730f2ae457ce70bbb8f615316cdb3eae0eff054f1321c629e9594fcadbac5d5708df469d17a81d01d788d22aa6e009466b12640f239b783d8d4cf
+Size (railties-7.1.5.gem) = 182272 bytes

Index: pkgsrc/lang/ruby/rails.mk
diff -u pkgsrc/lang/ruby/rails.mk:1.171 pkgsrc/lang/ruby/rails.mk:1.172
--- pkgsrc/lang/ruby/rails.mk:1.171     Sun Oct 27 14:35:25 2024
+++ pkgsrc/lang/ruby/rails.mk   Sun Dec  1 15:47:45 2024
@@ -1,4 +1,4 @@
-# $NetBSD: rails.mk,v 1.171 2024/10/27 14:35:25 taca Exp $
+# $NetBSD: rails.mk,v 1.172 2024/12/01 15:47:45 taca Exp $
 
 .if !defined(_RUBY_RAILS_MK)
 _RUBY_RAILS_MK=        # defined
@@ -49,7 +49,7 @@ _RUBY_RAILS_MK=       # defined
 #
 RUBY_RAILS61_VERSION?= 6.1.7.10
 RUBY_RAILS70_VERSION?= 7.0.8.6
-RUBY_RAILS71_VERSION?= 7.1.4.2
+RUBY_RAILS71_VERSION?= 7.1.5
 
 RUBY_RAILS_ACCEPTED?=  # empty
 RUBY_RAILS_DEFAULT?=   61

Index: pkgsrc/mail/ruby-actionmailbox71/distinfo
diff -u pkgsrc/mail/ruby-actionmailbox71/distinfo:1.8 pkgsrc/mail/ruby-actionmailbox71/distinfo:1.9
--- pkgsrc/mail/ruby-actionmailbox71/distinfo:1.8       Sun Oct 27 14:35:26 2024
+++ pkgsrc/mail/ruby-actionmailbox71/distinfo   Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (actionmailbox-7.1.4.2.gem) = 9a4f97a51ec7778ecbcd55c61ededb4eb0a9a87eaf62e5da25800b64cc3626c1
-SHA512 (actionmailbox-7.1.4.2.gem) = 1c571593be916fb2c13c813fff86bb5ce21f3a1537142f03cb4c9389de6621d988e6d7dac3542ed716aeae1ba5b079030732d4c8826943ac0dfab1dbc4cd1abf
-Size (actionmailbox-7.1.4.2.gem) = 22528 bytes
+BLAKE2s (actionmailbox-7.1.5.gem) = 1646ec8cc198dde2c2a9aad7181c78003ed450a90095747eebc8e1a8bfa04216
+SHA512 (actionmailbox-7.1.5.gem) = ea54462fd7dde0350c55fcf0cc2bc6c32c5074391cfdd959eaf1781bbac5f1d6cf280a68a96605837a6b4ec8a5743301d5d58fc27f1aeca41502c80d12f0f9ef
+Size (actionmailbox-7.1.5.gem) = 22528 bytes

Index: pkgsrc/mail/ruby-actionmailer71/distinfo
diff -u pkgsrc/mail/ruby-actionmailer71/distinfo:1.8 pkgsrc/mail/ruby-actionmailer71/distinfo:1.9
--- pkgsrc/mail/ruby-actionmailer71/distinfo:1.8        Sun Oct 27 14:35:26 2024
+++ pkgsrc/mail/ruby-actionmailer71/distinfo    Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (actionmailer-7.1.4.2.gem) = 512d4d595a599fa22e9c61651c7620cf1eaa63a871949e2efc95ae6cfd136d10
-SHA512 (actionmailer-7.1.4.2.gem) = a9cbf379c740adb56a59579e5bb55a73892beb4d5b0c840c92999060027eb922619f073bb324119a45d6d6c139b1d4e8cacca94587208e399cb2ac8dad364745
-Size (actionmailer-7.1.4.2.gem) = 34304 bytes
+BLAKE2s (actionmailer-7.1.5.gem) = 90d621d0e69f1b2f84fb790f6297695a85a27203ba993aa5a511214cc0f357e1
+SHA512 (actionmailer-7.1.5.gem) = 09795c64aff09747073adf5a87990006a4bb40bead3a8da5447907a32ae63137e47523a9a00667aa29146c35a43b6a6ee5361c2f01402a5cbc757c22cb181e05
+Size (actionmailer-7.1.5.gem) = 34304 bytes

Index: pkgsrc/textproc/ruby-actiontext71/distinfo
diff -u pkgsrc/textproc/ruby-actiontext71/distinfo:1.8 pkgsrc/textproc/ruby-actiontext71/distinfo:1.9
--- pkgsrc/textproc/ruby-actiontext71/distinfo:1.8      Sun Oct 27 14:35:27 2024
+++ pkgsrc/textproc/ruby-actiontext71/distinfo  Sun Dec  1 15:47:47 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:27 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:47 taca Exp $
 
-BLAKE2s (actiontext-7.1.4.2.gem) = 6d06fbef65fb8ec3e9f78d22999c100e5160d806a24e96be722c4f4f728bfda1
-SHA512 (actiontext-7.1.4.2.gem) = 2d67e347917e15175f8a702c0fb2d89e353f12bd46f6788a42b1ee962c332f1890552c3a422ec3773281fcceb33ad5581c265f34c2fd1fdf09e456ccab24f6bb
-Size (actiontext-7.1.4.2.gem) = 118272 bytes
+BLAKE2s (actiontext-7.1.5.gem) = b50c552999f839f16e9bafdec0240668e37abb375a6f7ea95ce1a34fba8a8397
+SHA512 (actiontext-7.1.5.gem) = e986c489133043cd5fc85b0015ac36aadb791a4724e936973e3cdd0c048d4e77e5b9e11af4d6e0e07d37e8b0828f843e927e2ff94fed6d13f38ffdcbaf4e82c7
+Size (actiontext-7.1.5.gem) = 118272 bytes

Index: pkgsrc/www/ruby-actioncable71/distinfo
diff -u pkgsrc/www/ruby-actioncable71/distinfo:1.8 pkgsrc/www/ruby-actioncable71/distinfo:1.9
--- pkgsrc/www/ruby-actioncable71/distinfo:1.8  Sun Oct 27 14:35:27 2024
+++ pkgsrc/www/ruby-actioncable71/distinfo      Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:27 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (actioncable-7.1.4.2.gem) = 2ae4d88fc7763c33a392a8c55585c03454d1f85ae3c46b5b07dc39cf787724cb
-SHA512 (actioncable-7.1.4.2.gem) = 76a8bad23941c4c38e63645bcdd3aeee5f1676f2f9eadeaa2e24f3dadabc84954ca9c7a4de521b3540ffa635d017d380a0d6cf0e5b211cd5b1b4e4f6d388783d
-Size (actioncable-7.1.4.2.gem) = 48128 bytes
+BLAKE2s (actioncable-7.1.5.gem) = 0c7ba4f9673e8cf2555af08463f83c0d1e7c243811b1c8c28e8844b114d233ca
+SHA512 (actioncable-7.1.5.gem) = c510f50d63ff1493738c083d54bf6cc2bb0a29a737cba5e798f467e4e01e49611854a4a0c3170dc928efa16e4c473ee67222c35ea4a766931cf20de8ea2b5cfb
+Size (actioncable-7.1.5.gem) = 48128 bytes

Index: pkgsrc/www/ruby-actionpack71/distinfo
diff -u pkgsrc/www/ruby-actionpack71/distinfo:1.8 pkgsrc/www/ruby-actionpack71/distinfo:1.9
--- pkgsrc/www/ruby-actionpack71/distinfo:1.8   Sun Oct 27 14:35:26 2024
+++ pkgsrc/www/ruby-actionpack71/distinfo       Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (actionpack-7.1.4.2.gem) = 680f7e558b5d2503c94d863a9634b9e05a7c56672497b997bebed1142f81a241
-SHA512 (actionpack-7.1.4.2.gem) = ac691d8cf5112b45765ed0809bd79d0760b1f56d5b9b063cfa6e035f92aed8474302fa2eff3640dd7a9a64caaec9cbc334857f6d8c6f8c3c16f0adb1c5f7c336
-Size (actionpack-7.1.4.2.gem) = 245760 bytes
+BLAKE2s (actionpack-7.1.5.gem) = 6ffd0e66bc357056a2f9bfeb695e6f6eed36fbcb21dd40e99138129dc7aaa788
+SHA512 (actionpack-7.1.5.gem) = 390c30b5a4fed8fa4aa6bb0f83601f013bc95574dbd876586c8777a4cbe2246075293fc888d0c20416dfad5fd611f0535e309adf3f14bf3d821a95c4998df5e4
+Size (actionpack-7.1.5.gem) = 245760 bytes

Index: pkgsrc/www/ruby-actionview71/distinfo
diff -u pkgsrc/www/ruby-actionview71/distinfo:1.8 pkgsrc/www/ruby-actionview71/distinfo:1.9
--- pkgsrc/www/ruby-actionview71/distinfo:1.8   Sun Oct 27 14:35:26 2024
+++ pkgsrc/www/ruby-actionview71/distinfo       Sun Dec  1 15:47:46 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:26 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:46 taca Exp $
 
-BLAKE2s (actionview-7.1.4.2.gem) = 0a7f2f929f3c93e4d8d3df8f58d0b3bdc3e6a5083c8e376cbb42d9465617f796
-SHA512 (actionview-7.1.4.2.gem) = b8be6b5da1e781721de7e227414b49d4972e22ea3b7fbaa6fc6a1dfd3fdb92d2d67aac9ebfebdfb57f98bd08c7f8e7fa32c4823870bec719311bb0d6b5acffda
-Size (actionview-7.1.4.2.gem) = 188416 bytes
+BLAKE2s (actionview-7.1.5.gem) = 858271a94a34a394b9334e1ffd7b6c86df7526ad851eee235bcfc85275e62d60
+SHA512 (actionview-7.1.5.gem) = c48ba514811168bedb35ba51b54c15886e9fea6647a1a20206342fff5e383402fcb7c5b543ac940c259e83e1bc15f4b639b925da5143ce59a8abc7b5319370c5
+Size (actionview-7.1.5.gem) = 188416 bytes

Index: pkgsrc/www/ruby-rails71/distinfo
diff -u pkgsrc/www/ruby-rails71/distinfo:1.8 pkgsrc/www/ruby-rails71/distinfo:1.9
--- pkgsrc/www/ruby-rails71/distinfo:1.8        Sun Oct 27 14:35:27 2024
+++ pkgsrc/www/ruby-rails71/distinfo    Sun Dec  1 15:47:47 2024
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.8 2024/10/27 14:35:27 taca Exp $
+$NetBSD: distinfo,v 1.9 2024/12/01 15:47:47 taca Exp $
 
-BLAKE2s (rails-7.1.4.2.gem) = d390f3274f88615ab05e3fba0e7c8d6f7e2d30e3d7e2dde21d4efe1d4744c978
-SHA512 (rails-7.1.4.2.gem) = 33aa02a065bdf3630578d9c2356c7938cdff43774b3258fc02b93a4e598c9beee396f8c5748a1f6645e68f8d29ad0879a6980f9e6171b4417f2c957e753c403e
-Size (rails-7.1.4.2.gem) = 7168 bytes
+BLAKE2s (rails-7.1.5.gem) = 8215cd8c5965d116b44867b882f944403a44043e026a3d4dc17bc9bba097316d
+SHA512 (rails-7.1.5.gem) = 87bc14b636403b58cb2299b1dab3a831c21fa4159cd26708b3e554a1c91e498e4d92262ca9eb3d226a409a89f95009b59629afbd7823d9f8c3f64f426e71b62c
+Size (rails-7.1.5.gem) = 7168 bytes



Home | Main Index | Thread Index | Old Index