pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/devel/ruby-activesupport52
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.
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
Home |
Main Index |
Thread Index |
Old Index