pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/ruby-activesupport52 devel/ruby-activesupport52:...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/05496673bc2d
branches:  trunk
changeset: 413476:05496673bc2d
user:      taca <taca%pkgsrc.org@localhost>
date:      Fri Mar 20 15:37:38 2020 +0000

description:
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*

diffstat:

 devel/ruby-activesupport52/PLIST    |   3 ++-
 devel/ruby-activesupport52/distinfo |  10 +++++-----
 2 files changed, 7 insertions(+), 6 deletions(-)

diffs (32 lines):

diff -r 3d4f336e23dc -r 05496673bc2d devel/ruby-activesupport52/PLIST
--- a/devel/ruby-activesupport52/PLIST  Fri Mar 20 15:36:25 2020 +0000
+++ b/devel/ruby-activesupport52/PLIST  Fri Mar 20 15:37:38 2020 +0000
@@ -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_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
diff -r 3d4f336e23dc -r 05496673bc2d devel/ruby-activesupport52/distinfo
--- a/devel/ruby-activesupport52/distinfo       Fri Mar 20 15:36:25 2020 +0000
+++ b/devel/ruby-activesupport52/distinfo       Fri Mar 20 15:37:38 2020 +0000
@@ -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