Received: by mail.netbsd.org (Postfix, from userid 605) id 8615584E6B; Sun, 4 Sep 2022 05:37:25 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id BCFE284E69 for ; Sun, 4 Sep 2022 05:37:24 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id 6xSUn5Wc-Vpq for ; Sun, 4 Sep 2022 05:37:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id E13EC84E66 for ; Sun, 4 Sep 2022 05:37:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DACB6FA8D; Sun, 4 Sep 2022 05:37:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_166226984336700" MIME-Version: 1.0 Date: Sun, 4 Sep 2022 05:37:23 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-i18n To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20220904053723.DACB6FA8D@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_166226984336700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Sun Sep 4 05:37:23 UTC 2022 Modified Files: pkgsrc/devel/ruby-i18n: Makefile PLIST distinfo Log Message: devel/ruby-i18n: update to 1.10.0 Latest version is 1.12.0, but ruby-redmine50 require before 1.11. 1.9.0 (2022-01-26) Minor version bump: The number of changes in this release are more than I would feel comfortable including in a point release. Therefore, I have bumped the minor version number here. -- @radar What's Changed * No longer rely on refinements for Hash utility methods. by @casperisfine in #573 * Fix typo: function is missing closing parenthesis by @patrickgramatowski in #585 * CI: ruby/setup-ruby with cache by @olleolleolle in #582 * Test on Ruby 3.1 & Rails 7.0x by @radar in #597 * Fix lookups of 0 keys by @movermeyer in #594 * Only deep_symbolize_keys when needed by @paarthmadan in #588 * Symbolize names and freeze values when loading from JSON by @paarthmadan in #587 * Clean up unneeded test aliases by @paarthmadan in #589 * Resolve Symbols using the original fallback locale by @movermeyer in #591 * Conditionally assert load_json returns symbolized data by @paarthmadan in #601 * Symbolize keys and freeze values when loading from YAML by @paarthmadan in #583 * fix ReDoS by @ooooooo-q in #600 * Exclude MissingTranslation options that are not used by the instance by @sundling in #581 * Remove references to default_locale in fallbacks comment by @movermeyer in #576 * API for marking a key as reserved by @ghiculescu in #579 * Fix missing requires of i18n/core_ext/hash by @razum2um in #574 * Fix ArgumentError when Fallbacks#map used as in Hash by @bagilevi in #570 New Contributors * @patrickgramatowski made their first contribution in #585 * @olleolleolle made their first contribution in #582 * @movermeyer made their first contribution in #594 * @paarthmadan made their first contribution in #588 * @ooooooo-q made their first contribution in #600 * @sundling made their first contribution in #581 * @razum2um made their first contribution in #574 1.9.1 (2022-01-28) What's Changed * Revert "Fix missing requires of i18n/core_ext/hash" by @radar in #602 * CI: Lint the GitHub Actions YAML by @olleolleolle in #604 1.10.0 (2022-02-14) What's Changed New Features * LazyLoadable Backend by @paarthmadan in #612 * Add a version badge to README by @mishina2228 in #621 Bug fixes * Remove warning: assigned but unused variable by @mishina2228 in #611 * Minor I18n.normalize_keys improvement by @codealchemy in #616 * Allow overriding of entry resolving entry resolving separate from defaults by @movermeyer in #622 Other changes * Remove pry from Gemfile as it is not used by @dvzrv in #608 New Contributors * @dvzrv made their first contribution in #608 * @mishina2228 made their first contribution in #611 To generate a diff of this commit: cvs rdiff -u -r1.25 -r1.26 pkgsrc/devel/ruby-i18n/Makefile cvs rdiff -u -r1.12 -r1.13 pkgsrc/devel/ruby-i18n/PLIST cvs rdiff -u -r1.27 -r1.28 pkgsrc/devel/ruby-i18n/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_166226984336700 Content-Disposition: inline Content-Length: 2904 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-i18n/Makefile diff -u pkgsrc/devel/ruby-i18n/Makefile:1.25 pkgsrc/devel/ruby-i18n/Makefile:1.26 --- pkgsrc/devel/ruby-i18n/Makefile:1.25 Tue Nov 23 14:14:03 2021 +++ pkgsrc/devel/ruby-i18n/Makefile Sun Sep 4 05:37:23 2022 @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.25 2021/11/23 14:14:03 taca Exp $ +# $NetBSD: Makefile,v 1.26 2022/09/04 05:37:23 taca Exp $ -DISTNAME= i18n-1.8.11 +DISTNAME= i18n-1.10.0 CATEGORIES= devel MAINTAINER= pkgsrc-users@NetBSD.org Index: pkgsrc/devel/ruby-i18n/PLIST diff -u pkgsrc/devel/ruby-i18n/PLIST:1.12 pkgsrc/devel/ruby-i18n/PLIST:1.13 --- pkgsrc/devel/ruby-i18n/PLIST:1.12 Sun Feb 3 15:12:37 2019 +++ pkgsrc/devel/ruby-i18n/PLIST Sun Sep 4 05:37:23 2022 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.12 2019/02/03 15:12:37 taca Exp $ +@comment $NetBSD: PLIST,v 1.13 2022/09/04 05:37:23 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/MIT-LICENSE ${GEM_LIBDIR}/README.md @@ -14,13 +14,13 @@ ${GEM_LIBDIR}/lib/i18n/backend/flatten.r ${GEM_LIBDIR}/lib/i18n/backend/gettext.rb ${GEM_LIBDIR}/lib/i18n/backend/interpolation_compiler.rb ${GEM_LIBDIR}/lib/i18n/backend/key_value.rb +${GEM_LIBDIR}/lib/i18n/backend/lazy_loadable.rb ${GEM_LIBDIR}/lib/i18n/backend/memoize.rb ${GEM_LIBDIR}/lib/i18n/backend/metadata.rb ${GEM_LIBDIR}/lib/i18n/backend/pluralization.rb ${GEM_LIBDIR}/lib/i18n/backend/simple.rb ${GEM_LIBDIR}/lib/i18n/backend/transliterator.rb ${GEM_LIBDIR}/lib/i18n/config.rb -${GEM_LIBDIR}/lib/i18n/core_ext/hash.rb ${GEM_LIBDIR}/lib/i18n/exceptions.rb ${GEM_LIBDIR}/lib/i18n/gettext.rb ${GEM_LIBDIR}/lib/i18n/gettext/helpers.rb @@ -46,5 +46,6 @@ ${GEM_LIBDIR}/lib/i18n/tests/localizatio ${GEM_LIBDIR}/lib/i18n/tests/lookup.rb ${GEM_LIBDIR}/lib/i18n/tests/pluralization.rb ${GEM_LIBDIR}/lib/i18n/tests/procs.rb +${GEM_LIBDIR}/lib/i18n/utils.rb ${GEM_LIBDIR}/lib/i18n/version.rb ${GEM_HOME}/specifications/${GEM_NAME}.gemspec Index: pkgsrc/devel/ruby-i18n/distinfo diff -u pkgsrc/devel/ruby-i18n/distinfo:1.27 pkgsrc/devel/ruby-i18n/distinfo:1.28 --- pkgsrc/devel/ruby-i18n/distinfo:1.27 Tue Nov 23 14:14:03 2021 +++ pkgsrc/devel/ruby-i18n/distinfo Sun Sep 4 05:37:23 2022 @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.27 2021/11/23 14:14:03 taca Exp $ +$NetBSD: distinfo,v 1.28 2022/09/04 05:37:23 taca Exp $ -BLAKE2s (i18n-1.8.11.gem) = 1df53328cacb8dae4b62dc280fc5d704ad7b3485c94ee80f2d6366f384d95fa4 -SHA512 (i18n-1.8.11.gem) = c944467f5c673fbd8f4292bdfcea3d12262f6a5e29307565830c3fa3d57a07009555c422ddf0cf5fefc9d83851b9c4e8204e8f72ae36f4d9b17f970da858098e -Size (i18n-1.8.11.gem) = 41984 bytes +BLAKE2s (i18n-1.10.0.gem) = 8cc9bfaee7f8a01d4b37607a55013f40c49e7d5b9ee9d145154d8300aed849a7 +SHA512 (i18n-1.10.0.gem) = 43acf591df722886115889924efbce91bbf7e45e7729c4054aa0680a827c07c7c03554167ca785ecec2c63b2a519dfd22d72b2561f350b459911af87e0648b5d +Size (i18n-1.10.0.gem) = 44544 bytes --_----------=_166226984336700--