pkgsrc-Changes-HG archive

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

[pkgsrc/pkgsrc-2021Q4]: pkgsrc Pullup ticket #6594 - requested by taca



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0fb03c345a50
branches:  pkgsrc-2021Q4
changeset: 374941:0fb03c345a50
user:      bsiegert <bsiegert%pkgsrc.org@localhost>
date:      Thu Mar 03 19:32:33 2022 +0000

description:
Pullup ticket #6594 - requested by taca
www/ruby-rails70: security fix

Revisions pulled up:
- databases/ruby-activerecord70/distinfo                        1.2-1.3
- devel/ruby-activejob70/distinfo                               1.2-1.3
- devel/ruby-activemodel70/distinfo                             1.2-1.3
- devel/ruby-activestorage70/PLIST                              1.2
- devel/ruby-activestorage70/distinfo                           1.2-1.3
- devel/ruby-activesupport70/distinfo                           1.2-1.3
- devel/ruby-railties70/distinfo                                1.2-1.3
- lang/ruby/rails.mk                                            1.110,1.114
- mail/ruby-actionmailbox70/distinfo                            1.2-1.3
- mail/ruby-actionmailer70/distinfo                             1.2-1.3
- textproc/ruby-actiontext70/distinfo                           1.2-1.3
- www/ruby-actioncable70/distinfo                               1.2-1.3
- www/ruby-actionpack70/distinfo                                1.2-1.3
- www/ruby-actionview70/distinfo                                1.2-1.3
- www/ruby-rails70/distinfo                                     1.2-1.3

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:02:54 UTC 2022

   Modified Files:
        pkgsrc/lang/ruby: rails.mk

   Log Message:
   lang/ruby: start update of Ruby on Rails 7.0.1

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:05:14 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activesupport70: distinfo

   Log Message:
   devel/ruby-activesupport70: update to 7.0.1

   7.0.1 (2021-01-06)

   * Fix Class#descendants and DescendantsTracker#descendants compatibilit=
   y
     with Ruby 3.1.

     The native Class#descendants was reverted prior to Ruby 3.1 release, =
   but
     Class#subclasses was kept, breaking the feature detection.

     Jean Boussier

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:05:44 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activemodel70: distinfo

   Log Message:
   devel/ruby-activemodel70: update to 7.0.1

   7.0.1 (2021-01-06)

   * No change.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:06:14 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activejob70: distinfo

   Log Message:
   devel/ruby-activejob70: update to 7.0.1

   7.0.1 (2021-01-06)

   * Allow testing discard_on/retry_on ActiveJob::DeserializationError

     Previously in perform_enqueued_jobs, deserialize_arguments_if_needed
     was called before calling perform_now.  When a record no longer
     exists and is serialized using GlobalID this led to raising an
     ActiveJob::DeserializationError before reaching perform_now call.
     This behaviour makes difficult testing the job discard_on/retry_on
     logic.

     Now deserialize_arguments_if_needed call is postponed to when
     perform_now is called.

     Example:

        class UpdateUserJob < ActiveJob::Base
          discard_on ActiveJob::DeserializationError

          def perform(user)
            # ...
          end
        end

        # In the test
        User.destroy_all
        assert_nothing_raised do
          perform_enqueued_jobs only: UpdateUserJob
        end

     Jacopo Beschi

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:06:39 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-actionview70: distinfo

   Log Message:
   devel/ruby-actionview70: update to 7.0.1

   7.0.1 (2021-01-06)

   * Fix button_to to work with a hash parameter as URL.

     MingyuanQin

   * Fix link_to with a model passed as an argument twice.

     Alex Ghiculescu

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:07:02 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-actionpack70: distinfo

   Log Message:
   devel/ruby-actionpack70: update to 7.0.1

   7.0.1 (2021-01-06)

   * Fix ActionController::Parameters methods to keep the original logger
     context when creating a new copy of the original object.

     Yutaka Kamei

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:07:29 UTC 2022

   Modified Files:
        pkgsrc/databases/ruby-activerecord70: distinfo

   Log Message:
   databases/ruby-activerecord70: update to 7.0.1

   7.0.1 (2021-01-06)

   * Change QueryMethods#in_order_of to drop records not listed in values.=


     in_order_of now filters down to the values provided, to match the
     behavior of the Enumerable version.

     Kevin Newton

   * Allow named expression indexes to be revertible.

     Previously, the following code would raise an error in a reversible
     migration executed while rolling back, due to the index name not
     being used in the index removal.

        add_index(:settings, "(data->'property')", using: :gin, name: :index_s=
   ettings_data_property)

     Fixes #43331.

     Oliver G=FCnther

   * Better error messages when association name is invalid in the
     argument of ActiveRecord::QueryMethods::WhereChain#missing.

     ykpythemind

   * Fix ordered migrations for single db in multi db environment.

     Himanshu

   * Extract on update CURRENT_TIMESTAMP for mysql2 adapter.

     Kazuhiro Masuda

   * Fix incorrect argument in PostgreSQL structure dump tasks.
     Updating the --no-comment argument added in Rails 7 to the correct
     --no-comments argument.

     Alex Dent

   * Fix schema dumping column default SQL values for sqlite3.

     fatkodima

   * Correctly parse complex check constraint expressions for PostgreSQL.

     fatkodima

   * Fix timestamptz attributes on PostgreSQL handle blank inputs.

     Alex Ghiculescu

     Fix migration compatibility to create SQLite references/belongs_to
     column as integer when migration version is 6.0.

     Reference/belongs_to in migrations with version 6.0 were creating
     columns as bigint instead of integer for the SQLite Adapter.

     Marcelo Lauxen

   * Fix joining through a polymorphic association.

     Alexandre Ruban

   * Fix QueryMethods#in_order_of to handle empty order list.

     Post.in_order_of(:id, []).to_a Also more explicitly set the column
     as secondary order, so that any other value is still ordered.

     Jean Boussier

   * Fix rails dbconsole for 3-tier config.

     Eileen M. Uchitelle

   * Fix quoting of column aliases generated by calculation methods.

     Since the alias is derived from the table name, we can't assume the
     result is a valid identifier.

        class Test < ActiveRecord::Base
          self.table_name =3D '1abc'
        end
        Test.group(:id).count
        # syntax error at or near "1" (ActiveRecord::StatementInvalid)
        # LINE 1: SELECT COUNT(*) AS count_all, "1abc"."id" AS 1abc_id FROM "1=
   ...

     Jean Boussier

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:07:49 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activestorage70: distinfo

   Log Message:
   devel/ruby-activestorage70: update to 7.0.1

   7.0.1 (2021-01-06)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:08:13 UTC 2022

   Modified Files:
        pkgsrc/mail/ruby-actionmailer70: distinfo

   Log Message:
   mail/ruby-actionmailer70: update to 7.0.1

   * Keep configuration of smtp_settings consistent between 6.1 and 7.0.

     Andr=E9 Luis Leal Cardoso Junior

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:08:57 UTC 2022

   Modified Files:
        pkgsrc/mail/ruby-actionmailbox70: distinfo

   Log Message:
   mail/ruby-actionmailbox70: update to 7.0.1

   7.0.1 (2021-01-06)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:09:16 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-actioncable70: distinfo

   Log Message:
   www/ruby-actioncable70: update to 7.0.1

   7.0.1 (2021-01-06)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:10:09 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-railties70: distinfo

   Log Message:
   devel/ruby-railties70: 7.0.1 (2021-01-06)

   * Prevent duplicate entries in plugin Gemfile.

     Jonathan Hefner

   * Fix asset pipeline errors for plugin dummy apps.

     Jonathan Hefner

   * Fix generated route revocation.

     Jonathan Hefner

   * Addresses an issue in which Sidekiq jobs could not reload certain
     namespaces.
     See fxn/zeitwerk#198 for details.

     Xavier Noria

   * Fix plugin generator to a plugin that pass all the tests.

     Rafael Mendon=E7a Fran=E7a

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:10:40 UTC 2022

   Modified Files:
        pkgsrc/textproc/ruby-actiontext70: distinfo

   Log Message:
   textproc/ruby-actiontext70: 7.0.1 (2021-01-06)

   7.0.1 (2021-01-06)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Jan 16 14:12:56 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-rails70: distinfo

   Log Message:
   www/ruby-rails70: update to 7.0.1

   This is meta gem (package) for Ruby on Rails 7.0.1.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:39:14 UTC 2022

   Modified Files:
        pkgsrc/lang/ruby: rails.mk

   Log Message:
   lang/ruby: start update of ruby-rails70 to 7.0.2.2

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:41:06 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activesupport70: distinfo

   Log Message:
   devel/ruby-activesupport70: update to 7.0.2

   7.0.2 (2022-02-08)

   * Fix ActiveSupport::EncryptedConfiguration to be compatible with Psych=
    4

     Stephen Sugden

   * Improve File.atomic_write error handling.

     Daniel Pepper

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * Fix Reloader method signature to work with the new Executor signature=

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:41:59 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activemodel70: distinfo

   Log Message:
   devel/ruby-activemodel70: update to 7.0.2

   7.0.2 (2022-02-08)

   * Use different cache namespace for proxy calls

     Models can currently have different attribute bodies for the same met=
   hod
     names, leading to conflicts. Adding a new namespace :active_model_pro=
   xy
     fixes the issue.

     Chris Salzberg

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:42:23 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activejob70: distinfo

   Log Message:
   devel/ruby-activejob70: update to 7.0.2

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:42:47 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-actionview70: distinfo

   Log Message:
   www/ruby-actionview70: update to 7.0.2

   7.0.2 (2022-02-08)

   * Ensure preload_link_tag preloads JavaScript modules correctly.

     M=E1ximo Mussini

   * Fix stylesheet_link_tag and similar helpers are being used to work in=

     objects with a response method.

     dark-panda

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:43:27 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-actionpack70: distinfo

   Log Message:
   www/ruby-actionpack70: update to 7.0.2

   This update contains security fix for CVE-2022-23633.

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * Under certain circumstances, the middleware isn't informed that the
     response body has been fully closed which result in request state
     not being fully reset before the next request

     [CVE-2022-23633]

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:43:55 UTC 2022

   Modified Files:
        pkgsrc/databases/ruby-activerecord70: distinfo

   Log Message:
   databases/ruby-activerecord70: update to 7.0.2

   7.0.2 (2022-02-08)

   * Fix PG.connect keyword arguments deprecation warning on ruby 2.7.

     Nikita Vasilevsky

   * Fix the ability to exclude encryption params from being autofiltered.=


     Mark Gangl

   * Dump the precision for datetime columns following the new defaults.

     Rafael Mendon=E7a Fran=E7a

   * Make sure encrypted attributes are not being filtered twice.

     Nikita Vasilevsky

   * Dump the database schema containing the current Rails version.

     Since #42297, Rails now generate datetime columns with a default prec=
   ision
     of 6.  This means that users upgrading to Rails 7.0 from 6.1, when lo=
   ading
     the database schema, would get the new precision value, which would n=
   ot
     match the production schema.

     To avoid this the schema dumper will generate the new format which wi=
   ll
     include the Rails version and will look like this:

        ActiveRecord::Schema[7.0].define

     When upgrading from Rails 6.1 to Rails 7.0, you can run the rails
     app:update task that will set the current schema version to 6.1.

     Rafael Mendon=E7a Fran=E7a

   * Fix parsing expression for PostgreSQL generated column.

     fatkodima

   * Fix Mysql2::Error: Commands out of sync; you can't run this command n=
   ow
     when bulk-inserting fixtures that exceed max_allowed_packet configura=
   tion.

     Nikita Vasilevsky

   * Fix error when saving an association with a relation named record.

     Dorian Mari=E9

   * Fix MySQL::SchemaDumper behavior about datetime precision value.

     y0t4

   * Improve associated with no reflection error.

     Nikolai

   * Fix PG.connect keyword arguments deprecation warning on ruby 2.7.

     Fixes #44307.

     Nikita Vasilevsky

   * Fix passing options to check_constraint from change_table.

     Frederick Cheung

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:44:29 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-activestorage70: PLIST distinfo

   Log Message:
   devel/ruby-activestorage70: update to 7.0.2

   7.0.2 (2022-02-08)

   * Revert the ability to pass service_name param to DirectUploadsControl=
   ler
     which was introduced in 7.0.0.

     That change caused a lot of problems to upgrade Rails applications so=
    we
     decided to remove it while in work in a more backwards compatible
     implementation.

     Gannon McGibbon

   * Allow applications to opt out of precompiling Active Storage JavaScri=
   pt
     assets.

     jlestavel

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:44:47 UTC 2022

   Modified Files:
        pkgsrc/mail/ruby-actionmailer70: distinfo

   Log Message:
   mail/ruby-actionmailer70: update to 7.0.2

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:45:05 UTC 2022

   Modified Files:
        pkgsrc/mail/ruby-actionmailbox70: distinfo

   Log Message:
   mail/ruby-actionmailbox70: update to 7.0.2

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:45:27 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-actioncable70: distinfo

   Log Message:
   www/ruby-actioncable70: update to 7.0.2

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:45:49 UTC 2022

   Modified Files:
        pkgsrc/devel/ruby-railties70: distinfo

   Log Message:
   devel/ruby-railties70: update to 7.0.2

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:46:12 UTC 2022

   Modified Files:
        pkgsrc/textproc/ruby-actiontext70: distinfo

   Log Message:
   textproc/ruby-actiontext70: update to 7.0.2

   7.0.2 (2022-02-08)

   * No changes.

   7.0.2.1 (2022-02-11)

   * No changes.

   7.0.2.2 (2022-02-11)

   * No changes.

---
   Module Name: pkgsrc
   Committed By:        taca
   Date:                Sun Feb 13 07:47:25 UTC 2022

   Modified Files:
        pkgsrc/www/ruby-rails70: distinfo

   Log Message:
   www/ruby-rails70: update to 7.0.2

   This gem is a meta package for Ruby on Rails 7, so no changes here.

diffstat:

 databases/ruby-activerecord70/distinfo |  8 ++++----
 devel/ruby-activejob70/distinfo        |  8 ++++----
 devel/ruby-activemodel70/distinfo      |  8 ++++----
 devel/ruby-activestorage70/distinfo    |  8 ++++----
 devel/ruby-activesupport70/distinfo    |  8 ++++----
 devel/ruby-railties70/distinfo         |  8 ++++----
 lang/ruby/rails.mk                     |  4 ++--
 mail/ruby-actionmailbox70/distinfo     |  8 ++++----
 mail/ruby-actionmailer70/distinfo      |  8 ++++----
 textproc/ruby-actiontext70/distinfo    |  8 ++++----
 www/ruby-actioncable70/distinfo        |  8 ++++----
 www/ruby-actionpack70/distinfo         |  8 ++++----
 www/ruby-actionview70/distinfo         |  8 ++++----
 www/ruby-rails70/distinfo              |  8 ++++----
 14 files changed, 54 insertions(+), 54 deletions(-)

diffs (187 lines):

diff -r 42b7dc3a53b3 -r 0fb03c345a50 databases/ruby-activerecord70/distinfo
--- a/databases/ruby-activerecord70/distinfo    Thu Mar 03 19:29:07 2022 +0000
+++ b/databases/ruby-activerecord70/distinfo    Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:04:27 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (activerecord-7.0.0.gem) = 097834067e9a581a47e15695955d50b1c4d451f50c548dd0be4409100aea34a8
-SHA512 (activerecord-7.0.0.gem) = e65434ca1e21d6225850d2b332a79bc29fa6e761564b1f1a54660d01f9a748c8336f5c35eaf179e5fe36a3e5bf08638230fc6f2a516828642e6fe1fc92d02ab8
-Size (activerecord-7.0.0.gem) = 470528 bytes
+BLAKE2s (activerecord-7.0.1.gem) = 84c75d56271c1d6f3fda2ae5a4ce323bedad422120ffe992dec7f6a5a32326c7
+SHA512 (activerecord-7.0.1.gem) = 506b37f9ec81d4f931ae5726e92d422d58c6557db27fcc720cfa0688441ca8d4b48fe1d95a2223fba7c53bd6679c1af54bfc386db65c5f586abeb41585d938c1
+Size (activerecord-7.0.1.gem) = 472064 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 devel/ruby-activejob70/distinfo
--- a/devel/ruby-activejob70/distinfo   Thu Mar 03 19:29:07 2022 +0000
+++ b/devel/ruby-activejob70/distinfo   Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 05:53:19 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (activejob-7.0.0.gem) = ecda540ba6c4bc1856933ba7ac22fedc3fff9e08b9a1b16eff07b54a78850882
-SHA512 (activejob-7.0.0.gem) = 19de95c908c6b4d6670ae23de63d40d595380ece98f7e067694d02b6e9b506a68d841c8e5b08ad844c4938a2d09fa2bc493b2097916a464c9c9ad1551e22e88e
-Size (activejob-7.0.0.gem) = 32768 bytes
+BLAKE2s (activejob-7.0.1.gem) = f74aa4a6f5c85da71327a8114ac6219882571346074bf8c87987a146981199cb
+SHA512 (activejob-7.0.1.gem) = b73f284bd7ed9ddf90e2a44d154d20262dc64573f53571cccc700f221c199d0862ecd196cdd145189cce7d8ceebecb14799710aab2e64fa5bc15b86eb6550f49
+Size (activejob-7.0.1.gem) = 32768 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 devel/ruby-activemodel70/distinfo
--- a/devel/ruby-activemodel70/distinfo Thu Mar 03 19:29:07 2022 +0000
+++ b/devel/ruby-activemodel70/distinfo Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 05:48:19 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (activemodel-7.0.0.gem) = 233d34babf09545c06e3428a8389b7c910f59abaff2acb122ad066b7887951a5
-SHA512 (activemodel-7.0.0.gem) = 8fbee5eef343df85704f7b1b637eebe39a425de8a900fa630eed685ea17500f637c8a67b983718a3559a65781a0b580b5d23a38854ada8b58fca1dc7a1b00e9d
-Size (activemodel-7.0.0.gem) = 60928 bytes
+BLAKE2s (activemodel-7.0.1.gem) = 8b956528ebae707ac35aee7b0757dadcfc505a3b10b0dad1e7b96e55c7dfcab4
+SHA512 (activemodel-7.0.1.gem) = d1d7e37e2ca27900da22031870d1da87b39555244eb7f486511ececf32482efbdded58c8a26c8e89df433a58dbe9f628465a660652b68d6660d0c0ffc6e05d09
+Size (activemodel-7.0.1.gem) = 60928 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 devel/ruby-activestorage70/distinfo
--- a/devel/ruby-activestorage70/distinfo       Thu Mar 03 19:29:07 2022 +0000
+++ b/devel/ruby-activestorage70/distinfo       Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:07:35 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (activestorage-7.0.0.gem) = d97898711fc50a25620bd19fc3417dda3d3bc21b9ac80373d8db43a5d5db8d3a
-SHA512 (activestorage-7.0.0.gem) = bd81ebc53414ef3ae641f0dde3d0af412b47a3d4ac537fd2257b7ba89bd64d114100ebe9387ae3da8c29c880bfb82c024d29bf91704158650e567e028db6fd30
-Size (activestorage-7.0.0.gem) = 64000 bytes
+BLAKE2s (activestorage-7.0.1.gem) = 32ad5b664c51b49ef5e24fd3a1f977e33d141fdff9e93d186dcb744115fcc951
+SHA512 (activestorage-7.0.1.gem) = a601ae6f932149817819ffd7574163609c4996183039e1cf29754277aa96ceeb91dda0e896d0ff3b935a8167e69bc55ebe0a54d0d73df828452b10854ca42047
+Size (activestorage-7.0.1.gem) = 64000 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 devel/ruby-activesupport70/distinfo
--- a/devel/ruby-activesupport70/distinfo       Thu Mar 03 19:29:07 2022 +0000
+++ b/devel/ruby-activesupport70/distinfo       Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 05:45:22 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (activesupport-7.0.0.gem) = a2f4d4e1bcc32e78fc7781fb6384e24f29275a19dfb192241774a9764ad88532
-SHA512 (activesupport-7.0.0.gem) = e7524ed76c392422c34320d6039ec4be70100f435ab38cc6fa6ba1cc46139de83763593804bbba81c09976fefcb8a5eb7e044078d2c3da391785fffe1b342122
-Size (activesupport-7.0.0.gem) = 221696 bytes
+BLAKE2s (activesupport-7.0.1.gem) = efeb4092ea70b9fa453a6ade726c14d23f4dd39edf1625c673ca803a97b2f2e5
+SHA512 (activesupport-7.0.1.gem) = 38747dabe8364d07899525e8b2feeedad0e7aa1efc591f3747a0a0eca91b73049bdf1a4397f3d4ac554e92bfa17898c509bc8a66de5a1ef30490ec14947ee0e7
+Size (activesupport-7.0.1.gem) = 222208 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 devel/ruby-railties70/distinfo
--- a/devel/ruby-railties70/distinfo    Thu Mar 03 19:29:07 2022 +0000
+++ b/devel/ruby-railties70/distinfo    Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:18:55 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (railties-7.0.0.gem) = 4d81cb54fe1c8e8970e0faa5745624eade32f208cc130df433710e79eca07505
-SHA512 (railties-7.0.0.gem) = 83ac51d68151a0476f319caa639e4b45f8882e38272e0b4d5828105f51bbfa8cd406ac301f92fcb2d07bb8e306ce5f53e3c61b26d3ed6b3700048c6ecad10921
-Size (railties-7.0.0.gem) = 158208 bytes
+BLAKE2s (railties-7.0.1.gem) = aac68c59e24b4a782563b4147b865d6817ddc58b4c032140bb3409d15ec93751
+SHA512 (railties-7.0.1.gem) = 87ee0fbc38c898c340e13142c48101eabcd7f1ed16af7241cf0fecb6ad5aef0321d757c5bc380f221a08d0ad01f7bae837f4057e02c206ed036124e2a956b76c
+Size (railties-7.0.1.gem) = 159232 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 lang/ruby/rails.mk
--- a/lang/ruby/rails.mk        Thu Mar 03 19:29:07 2022 +0000
+++ b/lang/ruby/rails.mk        Thu Mar 03 19:32:33 2022 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: rails.mk,v 1.109.2.3 2022/03/03 19:11:59 bsiegert Exp $
+# $NetBSD: rails.mk,v 1.109.2.4 2022/03/03 19:32:33 bsiegert Exp $
 
 .if !defined(_RUBY_RAILS_MK)
 _RUBY_RAILS_MK=        # defined
@@ -50,7 +50,7 @@
 RUBY_RAILS52_VERSION?= 5.2.6.2
 RUBY_RAILS60_VERSION?= 6.0.4.6
 RUBY_RAILS61_VERSION?= 6.1.4.6
-RUBY_RAILS70_VERSION?= 7.0.0
+RUBY_RAILS70_VERSION?= 7.0.1
 
 RUBY_RAILS_ACCEPTED?=  # defined
 RUBY_RAILS_DEFAULT?=   52
diff -r 42b7dc3a53b3 -r 0fb03c345a50 mail/ruby-actionmailbox70/distinfo
--- a/mail/ruby-actionmailbox70/distinfo        Thu Mar 03 19:29:07 2022 +0000
+++ b/mail/ruby-actionmailbox70/distinfo        Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:13:39 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (actionmailbox-7.0.0.gem) = a744fb89c2ac7e063f5c94ecb83dc3af234a9c6ce5c483e5029841ed0a0d4728
-SHA512 (actionmailbox-7.0.0.gem) = dada6ff7f67b6fb7ff0c4873b6698691987da9862b12a2f337596ee089ec2fc34cf37414ce85ad6de78186e047bb3077b111b6ffa7d18a3d2ede4a14e95ae040
-Size (actionmailbox-7.0.0.gem) = 22016 bytes
+BLAKE2s (actionmailbox-7.0.1.gem) = 71c9a0275f3c57022ec5672fc7e42377f49795e147267b740a9d1df6940cfc9d
+SHA512 (actionmailbox-7.0.1.gem) = 13fca26ec863409c81b5455531d425e03bdfb010bd4c06ffcfab1dc083b46b252dd8606a2b5b4441ca51e7a721a9f9b230b904bd46a52d73788ae7ee0bbb37b1
+Size (actionmailbox-7.0.1.gem) = 22016 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 mail/ruby-actionmailer70/distinfo
--- a/mail/ruby-actionmailer70/distinfo Thu Mar 03 19:29:07 2022 +0000
+++ b/mail/ruby-actionmailer70/distinfo Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:10:43 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:33 bsiegert Exp $
 
-BLAKE2s (actionmailer-7.0.0.gem) = 7c3cf5329325af6c96d64f6b2cf8245fcc326f2730c2845ee805d5ba1fb69dd8
-SHA512 (actionmailer-7.0.0.gem) = 5e5ea24fc96fe8af66253eedde4199f6558d8acbeda1207ead8812ae4bdf95010a0cf20353a66ef15594edffa38a00d4a1ee21251efe6f876ed9a9dfd29a9907
-Size (actionmailer-7.0.0.gem) = 30208 bytes
+BLAKE2s (actionmailer-7.0.1.gem) = f562dd7f7eb31cf0f4110ac1bfb684a54fb9f06c883705493640ea5083d7223d
+SHA512 (actionmailer-7.0.1.gem) = d6e62d166f9b775219a9da09264eecceda826937f2e95005acd52bda2ae10d0e74839148b141f366926b9e2fa2356e6311f4c54f04f1078e80f2f51cb74e04df
+Size (actionmailer-7.0.1.gem) = 30208 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 textproc/ruby-actiontext70/distinfo
--- a/textproc/ruby-actiontext70/distinfo       Thu Mar 03 19:29:07 2022 +0000
+++ b/textproc/ruby-actiontext70/distinfo       Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:21:17 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:34 bsiegert Exp $
 
-BLAKE2s (actiontext-7.0.0.gem) = 7de8f10b58cee1f0f9c9cd66aafefe8c6c2b4668be6e84268ba308b0afe188db
-SHA512 (actiontext-7.0.0.gem) = 8e6969f16a6707ce84bfca12285ba20f61f436eb8c4792def13239eaf248a30a38aa1eff2a93ab41df2bc841edbc9fae72c6057ce31b2fe303c92fe24adc45a6
-Size (actiontext-7.0.0.gem) = 92160 bytes
+BLAKE2s (actiontext-7.0.1.gem) = ea79a8112636d98c1d9c7f1b4a6b1e8ef87a7d6805769ecc0ae96c6df10f32b8
+SHA512 (actiontext-7.0.1.gem) = 34de61129c56383892742fae6e64106fe77db3c314e3a43bb029ab55d4fe1e084b9eb44d0cd61fa843e7049bef8f2ea16fa8af3cd790285698a9855983d7465b
+Size (actiontext-7.0.1.gem) = 92160 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 www/ruby-actioncable70/distinfo
--- a/www/ruby-actioncable70/distinfo   Thu Mar 03 19:29:07 2022 +0000
+++ b/www/ruby-actioncable70/distinfo   Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:16:32 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:34 bsiegert Exp $
 
-BLAKE2s (actioncable-7.0.0.gem) = c05dbdea35e13bec38aece8de0e22ac119ae6c5ea89dd5f73f394036ab9ab1dd
-SHA512 (actioncable-7.0.0.gem) = d39d92a5e31ca18d1118dea193ca996430d0d5f027fdd234a7e71f8d0fd115893163d8a7a975a83d1318d2545c1ca56d824187aba3d67a9f7cfba12c8dcd12ab
-Size (actioncable-7.0.0.gem) = 44032 bytes
+BLAKE2s (actioncable-7.0.1.gem) = 6d062a61dd8211d8a85c3c8df2501b7ae95aab44c7c626e1d6cae8d177391699
+SHA512 (actioncable-7.0.1.gem) = 76e80d0f30dd23afb72ec381800a540ef88d29ff03e8f5600a4426365b1f4371b5bb5a4ef4e14c38bb5901c4b1f32c341e337e8beaadfb1f9e561e245de19b5a
+Size (actioncable-7.0.1.gem) = 44032 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 www/ruby-actionpack70/distinfo
--- a/www/ruby-actionpack70/distinfo    Thu Mar 03 19:29:07 2022 +0000
+++ b/www/ruby-actionpack70/distinfo    Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:01:40 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:34 bsiegert Exp $
 
-BLAKE2s (actionpack-7.0.0.gem) = 16bb5554a408d307b95af92d3c716523339e42bf97f6d7a492efcbf404daad4a
-SHA512 (actionpack-7.0.0.gem) = 7ab8965201b791677a78b1ab516fff1571a1c02d8614f681611626178700410537880803ee309e5076463f000be0f69a77dbd07c015c153abdae6466d98c87e2
-Size (actionpack-7.0.0.gem) = 228352 bytes
+BLAKE2s (actionpack-7.0.1.gem) = 463a34a9055d30e2100d31f7e0f08fa24b03d8408f80ddabb1d3e3ac317c511c
+SHA512 (actionpack-7.0.1.gem) = 6c949d6412fa5122f460da7def52de5ab7c2c2d7069501a58cae9a7c9f642ffb8cac0f22533c6f5c509fcccb48778cfa85cc38dbd2d9470fcde4a9791078cfe0
+Size (actionpack-7.0.1.gem) = 228864 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 www/ruby-actionview70/distinfo
--- a/www/ruby-actionview70/distinfo    Thu Mar 03 19:29:07 2022 +0000
+++ b/www/ruby-actionview70/distinfo    Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 05:56:58 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:34 bsiegert Exp $
 
-BLAKE2s (actionview-7.0.0.gem) = e9b6dfa06ac4810503acad48c5ee022acacec21fba4ceed29c4903c7a89a3847
-SHA512 (actionview-7.0.0.gem) = e11cb30aafaf899d0b0103408c59901c0e0b3bc5a8cdc7b489cf6b8cdbc0e4244eb4a2f1d4a3fb5cc6de989d7580c05583a7d93896fcb528a1ad4a3593c52c83
-Size (actionview-7.0.0.gem) = 178688 bytes
+BLAKE2s (actionview-7.0.1.gem) = 7e43269f77646ed7a30082cd911de915d7501142dd0691abe85f27cdafcccaef
+SHA512 (actionview-7.0.1.gem) = b066578437c546981ae26e4095011505d51167f6a61b2f59cfbd018075896f0fb29b45fca150eaa81c1ced8674cad7eef51380113098c69c9a5d4aa1a0d406a1
+Size (actionview-7.0.1.gem) = 178688 bytes
diff -r 42b7dc3a53b3 -r 0fb03c345a50 www/ruby-rails70/distinfo
--- a/www/ruby-rails70/distinfo Thu Mar 03 19:29:07 2022 +0000
+++ b/www/ruby-rails70/distinfo Thu Mar 03 19:32:33 2022 +0000
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.1 2021/12/19 06:26:54 taca Exp $
+$NetBSD: distinfo,v 1.1.2.1 2022/03/03 19:32:34 bsiegert Exp $
 
-BLAKE2s (rails-7.0.0.gem) = f05a40d743eaaf2a8fe8e1190a3396bfcbf6fde2f2d6d26d775a1657babbdf5b
-SHA512 (rails-7.0.0.gem) = 6cf01a9d6de8fa44d38f3b1165c34c1dd9fe0983bd67deae71040a6da37609f70e5b3d5b23dfe8c71be01e21451846eeb81d5085d31da3e9658a2e24a60a434c
-Size (rails-7.0.0.gem) = 6656 bytes
+BLAKE2s (rails-7.0.1.gem) = 4fdce3686b25b34364e33890230047600009fa972966a1144f5be1a8547ad6c9
+SHA512 (rails-7.0.1.gem) = f6f41f62ceda888e3b9f907e7e14e74b57180088d6da262fdc017dbe5bdcd9e86df4db2f04d8559bddd8d6bdf2c02dde781f07991b4983ff04bbd583935abe7a
+Size (rails-7.0.1.gem) = 6656 bytes



Home | Main Index | Thread Index | Old Index