Received: by mail.netbsd.org (Postfix, from userid 605) id 3D54584E66; Fri, 20 Mar 2020 15:37:39 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id B9E4484E65 for ; Fri, 20 Mar 2020 15:37:38 +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 rEzOXSkX6LFU for ; Fri, 20 Mar 2020 15:37:38 +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 34BFC84D2D for ; Fri, 20 Mar 2020 15:37:38 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 2CA22FB27; Fri, 20 Mar 2020 15:37:38 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_158471865862570" MIME-Version: 1.0 Date: Fri, 20 Mar 2020 15:37:38 +0000 From: "Takahiro Kambe" Subject: CVS commit: pkgsrc/devel/ruby-activesupport52 To: pkgsrc-changes@NetBSD.org Reply-To: taca@netbsd.org X-Mailer: log_accum Message-Id: <20200320153738.2CA22FB27@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_158471865862570 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: taca Date: Fri Mar 20 15:37:38 UTC 2020 Modified Files: pkgsrc/devel/ruby-activesupport52: PLIST distinfo Log Message: devel/ruby-activesupport52: update to 5.2.4.2 Update ruby-activesupport52 to 5.2.4.2. ## Rails 5.2.4.1 (December 18, 2019) ## * No changes. ## Rails 5.2.4 (November 27, 2019) ## * Make ActiveSupport::Logger Fiber-safe. Fixes #36752. Use `Fiber.current.__id__` in `ActiveSupport::Logger#local_level=` in order to make log level local to Ruby Fibers in addition to Threads. Example: logger = ActiveSupport::Logger.new(STDOUT) logger.level = 1 p "Main is debug? #{logger.debug?}" Fiber.new { logger.local_level = 0 p "Thread is debug? #{logger.debug?}" }.resume p "Main is debug? #{logger.debug?}" Before: Main is debug? false Thread is debug? true Main is debug? true After: Main is debug? false Thread is debug? true Main is debug? false *Alexander Varnin* To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/ruby-activesupport52/PLIST \ pkgsrc/devel/ruby-activesupport52/distinfo Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_158471865862570 Content-Disposition: inline Content-Length: 2184 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/ruby-activesupport52/PLIST diff -u pkgsrc/devel/ruby-activesupport52/PLIST:1.2 pkgsrc/devel/ruby-activesupport52/PLIST:1.3 --- pkgsrc/devel/ruby-activesupport52/PLIST:1.2 Sun Apr 14 10:30:26 2019 +++ pkgsrc/devel/ruby-activesupport52/PLIST Fri Mar 20 15:37:38 2020 @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.2 2019/04/14 10:30:26 taca Exp $ +@comment $NetBSD: PLIST,v 1.3 2020/03/20 15:37:38 taca Exp $ ${GEM_HOME}/cache/${GEM_NAME}.gem ${GEM_LIBDIR}/CHANGELOG.md ${GEM_LIBDIR}/MIT-LICENSE @@ -53,6 +53,7 @@ ${GEM_LIBDIR}/lib/active_support/core_ex ${GEM_LIBDIR}/lib/active_support/core_ext/date_time/calculations.rb ${GEM_LIBDIR}/lib/active_support/core_ext/date_time/compatibility.rb ${GEM_LIBDIR}/lib/active_support/core_ext/date_time/conversions.rb +${GEM_LIBDIR}/lib/active_support/core_ext/digest.rb ${GEM_LIBDIR}/lib/active_support/core_ext/digest/uuid.rb ${GEM_LIBDIR}/lib/active_support/core_ext/enumerable.rb ${GEM_LIBDIR}/lib/active_support/core_ext/file.rb Index: pkgsrc/devel/ruby-activesupport52/distinfo diff -u pkgsrc/devel/ruby-activesupport52/distinfo:1.2 pkgsrc/devel/ruby-activesupport52/distinfo:1.3 --- pkgsrc/devel/ruby-activesupport52/distinfo:1.2 Sun Apr 14 10:30:26 2019 +++ pkgsrc/devel/ruby-activesupport52/distinfo Fri Mar 20 15:37:38 2020 @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.2 2019/04/14 10:30:26 taca Exp $ +$NetBSD: distinfo,v 1.3 2020/03/20 15:37:38 taca Exp $ -SHA1 (activesupport-5.2.3.gem) = 53a45d06c24797adad93d04bedbd896b7389cc2a -RMD160 (activesupport-5.2.3.gem) = a7a6bd2e08e3a61cfa194cdf63c25d85881df16e -SHA512 (activesupport-5.2.3.gem) = 8e0ab698f1b850c380ffc464fd48c942f4a46b9ca66055166949fa069740a4ff50f320d87f1040064a896c5ba1b8c00f0730592efec90d92a20c500d66b99589 -Size (activesupport-5.2.3.gem) = 381440 bytes +SHA1 (activesupport-5.2.4.2.gem) = 450650072a3f293c6569ed8a57289c73dd41dc9c +RMD160 (activesupport-5.2.4.2.gem) = 6bf8ed4fe2cbaf7216a0495078d012498ad2f571 +SHA512 (activesupport-5.2.4.2.gem) = 3284ce173ffa618781b4b07def723e6ed6ec65a3614ed0d8deec747e319dda58de94ddf48dbbdab7b9d0f7321b17cdf84387ac5196e6ae4026a488e09d840c41 +Size (activesupport-5.2.4.2.gem) = 381952 bytes --_----------=_158471865862570--