NetBSD/pkgsrc IY56LdD — doc CHANGES-2026

   doc: Updated www/ruby-rails72 and related packages to 7.2.4

        devel/ruby-activesupport72
        devel/ruby-activemodel72
        devel/ruby-activejob72
        databases/ruby-activerecord72
        www/ruby-actionview72
        www/ruby-actionpack72
        www/ruby-actioncable72
        devel/ruby-railties72
        devel/ruby-activestorage72
        mail/ruby-actionmailer72
        mail/ruby-actionmailbox72
        textproc/ruby-actiontext72
        www/ruby-rails72
VersionDeltaFile
1.6439+14-1doc/CHANGES-2026
+14-11 files

NetBSD/pkgsrc i5bmSm6 — databases/ruby-activerecord72 distinfo, devel/ruby-activejob72 distinfo

   www/ruiby-rails72: update to 7.2.4

   Ruby on Rails 7.2.4 (2026-09-24) is last 7.2 release.

   Active Support

   * Improve number_to_delimited performance when delimiter_pattern is not
     specified.

     Shinichi Maeshima

   * Silence Dalli 4.0+ warning when using ActiveSupport::Cache::MemCacheStore.

     zzak

   * Fix ActiveSupport::Inflector.humanize with international characters.

        ActiveSupport::Inflector.humanize("áÉÍÓÚ")  # => "Áéíóú"
        ActiveSupport::Inflector.humanize("аБВГДЕ") # => "Абвгде"

    [62 lines not shown]
VersionDeltaFile
1.6+4-4www/ruby-rails72/distinfo
1.6+4-4www/ruby-actionview72/distinfo
1.6+4-4devel/ruby-activesupport72/distinfo
1.6+4-4devel/ruby-activemodel72/distinfo
1.6+4-4devel/ruby-activejob72/distinfo
1.6+4-4databases/ruby-activerecord72/distinfo
+24-248 files not shown
+54-5414 files

NetBSD/pkgsrc wwAgph1 — doc CHANGES-2026

   doc: Updated www/ruby-aws-sdk-s3 to 1.232.2
VersionDeltaFile
1.6438+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 3JGnEUU — www/ruby-aws-sdk-s3 Makefile distinfo

   www/ruby-aws-sdk-s3: update to 1.232.2

   1.232.2 (2026-09-25)

   * Issue - Ensure the internally-created executor is shutdown on error in
     TransferManager and Aws::S3::Object resource methods, preventing leaked
     worker threads on multipart transfer failures (#3419).
VersionDeltaFile
1.69+4-4www/ruby-aws-sdk-s3/distinfo
1.69+2-2www/ruby-aws-sdk-s3/Makefile
+6-62 files

NetBSD/pkgsrc r1BUeSH — doc CHANGES-2026

   doc: Updated www/ruby-aws-partitions to 1.1290.0
VersionDeltaFile
1.6437+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc mySaIbz — www/ruby-aws-partitions Makefile distinfo

   www/ruby-aws-partitions: update to 1.1290.0

   1.1290.0 (2026-09-24)

   * Feature - Added support for enumerating regions for Aws::EventBridgeV2.
VersionDeltaFile
1.127+4-4www/ruby-aws-partitions/distinfo
1.125+2-2www/ruby-aws-partitions/Makefile
+6-62 files

NetBSD/pkgsrc 2z6OePD — doc CHANGES-2026

   doc: Updated net/ruby-domain_name to 0.6.20260921
VersionDeltaFile
1.6436+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc bZHtXWY — net/ruby-domain_name Makefile distinfo

   net/ruby-domain_name: update to 0.6.20260921

   0.6.20260921 (2026-09-24)

   What's Changed

   * Update the eTLD database to 2026-09-21T18:50:24Z by @github-actions[bot]
     in #43
VersionDeltaFile
1.25+4-4net/ruby-domain_name/distinfo
1.23+2-2net/ruby-domain_name/Makefile
+6-62 files

NetBSD/pkgsrc 6OMOpuU — doc CHANGES-2026

   doc: Updated devel/ruby-tins to 1.59.0
VersionDeltaFile
1.6435+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 1zpMDd3 — devel/ruby-tins Makefile PLIST

   devel/ruby-tins: update to 1.59.0

   1.58.0 (2026-09-24)

   * Add Tins::EnumSqueeze module providing squeeze and squeeze! methods that
     collapse consecutive duplicate elements, mirroring String#squeeze
     semantics.

   * Freeze the UNSET sentinel constant in Tins::Delegate to prevent accidental
     mutation of the shared Object.new instance.


   1.59.0 (2026-09-25)

   * Add *sels and &block parameters to squeeze and squeeze!, allowing
     squeezing to be restricted to elements matching case-equality (===)
     selectors or a predicate block
   * Raise ArgumentError when both *sels and &block are provided
   * Change hot-loop comparison to item != prev || !block.(item) so

    [2 lines not shown]
VersionDeltaFile
1.45+4-4devel/ruby-tins/distinfo
1.24+4-1devel/ruby-tins/PLIST
1.42+2-2devel/ruby-tins/Makefile
+10-73 files

NetBSD/pkgsrc fTSX3ar — doc CHANGES-2026

   doc: Updated devel/ruby-simplecov to 1.3.1
VersionDeltaFile
1.6434+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc fzJjvij — devel/ruby-simplecov Makefile PLIST

   devel/ruby-simplecov: update to 1.3.1

   1.3.1 (2026-09-24)

   Bugfixes

   * cover_views compiles templates on Rails main again.  Rails removed
     ActionView::Template.registered_template_handler; the lookup reads
     ActionView::Template::Handlers.template_handlers and still skips an
     extension with no handler.  See #1300.

   * require "simplecov" works again on JRuby on Windows, where 1.3.0 raised
     LoadError: Could not open library '.../libprism.dll'.  Prism's FFI backend
     cannot open its native library there, and 1.3.0 required Prism as soon as
     SimpleCov loaded.  Prism now loads only when branch or method coverage
     needs the static extractor, which a line-only run never does.  Where it
     cannot load at all, the extractor falls back to empty branch and method
     tables for never-loaded files, as it did before 1.3.0.  See #1299.


    [9 lines not shown]
VersionDeltaFile
1.32+4-4devel/ruby-simplecov/distinfo
1.36+2-2devel/ruby-simplecov/Makefile
1.24+3-1devel/ruby-simplecov/PLIST
+9-73 files

NetBSD/pkgsrc usf0BO7 — doc CHANGES-2026

   doc: Added textproc/ruby-rubyXL version 3.4.38
VersionDeltaFile
1.6433+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc Vj6OFq2 — textproc Makefile

   textproc/Makefile: add and enable ruby-rubyXL
VersionDeltaFile
1.1607+2-1textproc/Makefile
+2-11 files

NetBSD/pkgsrc X7lC49A — textproc/ruby-rubyXL distinfo DESCR

   textproc/ruby-rubyXL: add package version 3.4.38

   rubyXL

   This gem supports operating on xlsx files (Open XML format).  While it is
   capable of properly parsing the entire OOXML structure, its current main
   emphasis is on reading files produced by MS Excel, making minor
   modifications to them and saving them to be opened again, while preserving
   as much of the structure as possible.

   Please note that proprietary binary xls format is *not* supported by this
   gem.
VersionDeltaFile
1.1+467-0textproc/ruby-rubyXL/PLIST
1.1+17-0textproc/ruby-rubyXL/Makefile
1.1+10-0textproc/ruby-rubyXL/DESCR
1.1+5-0textproc/ruby-rubyXL/distinfo
+499-04 files

NetBSD/pkgsrc zXCdtBQ — doc CHANGES-2026

   doc: Added textproc/ruby-caxlsx version 4.5.0
VersionDeltaFile
1.6432+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc tnyoW5b — textproc Makefile

   textproc/Makefile: Add and enable ruby-caxlsx
VersionDeltaFile
1.1606+2-1textproc/Makefile
+2-11 files

NetBSD/pkgsrc uF1Vxaa — textproc/ruby-caxlsx distinfo DESCR

   textproc/ruby-caxlsx: add package version 4.5.0

   Caxlsx (Community Continued Version)

   Axlsx is an Office Open XML Spreadsheet generator for the Ruby programming
   language.

   With Axlsx you can create Excel worksheets with charts, images (with links),
   automated and fixed column widths, customized styles, functions, tables,
   conditional formatting, print options, comments, merged cells, auto filters,
   file and stream serialization as well as full schema validation.  Axlsx
   excels at helping you generate beautiful Office Open XML Spreadsheet
   documents without having to understand the entire ECMA specification.
VersionDeltaFile
1.1+195-0textproc/ruby-caxlsx/PLIST
1.1+19-0textproc/ruby-caxlsx/Makefile
1.1+11-0textproc/ruby-caxlsx/DESCR
1.1+5-0textproc/ruby-caxlsx/distinfo
+230-04 files

NetBSD/pkgsrc Agv6nQt — doc CHANGES-2026

   Updated devel/p5-Test2-Harness to 1.000180
VersionDeltaFile
1.6431+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 3xXdO4I — devel/p5-Test2-Harness distinfo Makefile

   Update to 1.000180

   Upstream changes:
   1.000180  2026-09-11 10:37:49-07:00 America/Los_Angeles
       - Apply --cover-exclude-dirs to coverage produced by processes yath did not launch, such as a descendant that loads the coverage plugin itself.
       - Coverage events now carry file and sub counts instead of the full file map, which is already reproduced in the aggregated coverage data.
       - Resolve exclusions against the root a coverage event names, so a producer measuring against its own directory is filtered correctly rather than by guess.
       - The log now records coverage events as they are sent onward, with exclusions applied and the file map collapsed.
   1.000179  2026-09-08 14:40:06-07:00 America/Los_Angeles
       - Add --cover-exclude-dirs to leave a directory, and everything under it, out of file coverage and coverage metrics; useful when a dependency tree is installed inside the working directory.
       - File coverage and coverage metrics now require Test2::Plugin::Cover 0.000029 or newer.
   1.000178  2026-09-04 13:37:49-07:00 America/Los_Angeles
       - Cut the time `make test` takes by roughly five times, by removing fixed waits from the test suite and moving its slowest tests behind AUTHOR_TESTING.
       - Make the wait loop in App::Yath::Tester sleep the fraction of a second it asks for instead of not sleeping at all, so it stops spinning while a yath run is in progress.
       - Escalate to KILL when App::Yath::Tester gives up waiting on a yath run, so a run that ignores TERM no longer hangs the test file that started it.
   1.000177  2026-08-26 09:41:18-07:00 America/Los_Angeles
       - Print a note every ten seconds while App::Yath::Tester waits on a yath run, so a slow run does not look like a hung test to the harness running it.
       - Stop t/integration/resource.t from failing when the scheduler does not hand the same number of tests to each resource slot.
   1.000176  2026-08-25 11:05:26-07:00 America/Los_Angeles

    [57 lines not shown]
VersionDeltaFile
1.3+6-4devel/p5-Test2-Harness/Makefile
1.2+4-4devel/p5-Test2-Harness/distinfo
+10-82 files

NetBSD/pkgsrc XvTQHB8 — doc CHANGES-2026

   Added devel/p5-App-Yath-Script version 2.000017
VersionDeltaFile
1.6430+3-2doc/CHANGES-2026
+3-21 files

NetBSD/pkgsrc HO7LvS8 — devel Makefile

   Add p5-App-Yath-Script
VersionDeltaFile
1.4696+2-1devel/Makefile
+2-11 files

NetBSD/pkgsrc ySbS8pY — devel/p5-App-Yath-Script distinfo DESCR

   Import App::Yath::Script-2.000017 as devel/p5-App-Yath-Script.

   App::Yath::Script provides the initial entry point for the yath script. It
   handles script discovery, configuration loading, version detection, and
   delegation to version-specific script modules (App::Yath::Script::V{X}).

   During the BEGIN phase, do_begin() locates .yath.rc and .yath.user.rc
   configuration files, determines the harness version to use, and delegates to the
   appropriate App::Yath::Script::V{X} module. At runtime, do_runtime() hands off
   execution to that module.
VersionDeltaFile
1.1+20-0devel/p5-App-Yath-Script/Makefile
1.1+8-0devel/p5-App-Yath-Script/DESCR
1.1+5-0devel/p5-App-Yath-Script/distinfo
+33-03 files

NetBSD/pkgsrc 3e1ZWgE — graphics/gegl distinfo, graphics/gegl/patches patch-libs_ctx_libgegl__ctx_ctx.h

   gegl: Limit <alloca.h> usage to non-BSD platforms, rather than
   !NetBSD.
VersionDeltaFile
1.2+3-3graphics/gegl/patches/patch-libs_ctx_libgegl__ctx_ctx.h
1.55+2-2graphics/gegl/distinfo
+5-52 files

NetBSD/pkgsrc NGoydRl — doc CHANGES-2026

   Added devel/p5-Getopt-Yath version 2.000017
VersionDeltaFile
1.6429+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc FYFkIda — devel Makefile

   Add p5-Getopt-Yath
VersionDeltaFile
1.4695+2-1devel/Makefile
+2-11 files

NetBSD/pkgsrc rCmhyZx — devel/p5-Getopt-Yath DESCR distinfo

   Import Getopt::Yath-2.000017 as devel/p5-Getopt-Yath.

   Getopt::Yath is the getopt processor yath uses. It should work perfectly fine
   outside of yath as well.
VersionDeltaFile
1.1+22-0devel/p5-Getopt-Yath/Makefile
1.1+5-0devel/p5-Getopt-Yath/distinfo
1.1+2-0devel/p5-Getopt-Yath/DESCR
+29-03 files

NetBSD/pkgsrc FLnAI2Z — doc CHANGES-2026

   Added devel/p5-Test2-Plugin-Cover version 0.000030
VersionDeltaFile
1.6428+2-1doc/CHANGES-2026
+2-11 files

NetBSD/pkgsrc 84fh6Ff — devel Makefile

   Add p5-Test2-Plugin-Cover
VersionDeltaFile
1.4694+2-1devel/Makefile
+2-11 files

NetBSD/pkgsrc gjcmgkv — devel/p5-Test2-Plugin-Cover distinfo DESCR

   Import Test2::Plugin::Cover-0.000030 as devel/p5-Test2-Plugin-Cover

   Test2::Plugin::Cover will collect minimal file coverage info, and will do so
   with minimal performance impact.

   Every time a subroutine is called this tool will do its best to find the
   filename the subroutine was defined in, and add it to a list. Also, anytime you
   attempt to open a file with open() or sysopen() the file will be added to the
   list. This list will be attached to a test2 event just before the test exits. In
   most formaters the event will only show up as a comment on STDOUT # This test
   covered N source files. . However tools such as Test2::Harness::UI can make full
   use of the coverage information contained in the event.
VersionDeltaFile
1.1+18-0devel/p5-Test2-Plugin-Cover/Makefile
1.1+10-0devel/p5-Test2-Plugin-Cover/DESCR
1.1+5-0devel/p5-Test2-Plugin-Cover/distinfo
+33-03 files