summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-31 13:21:51 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-10-31 13:21:51 +0000
commitc02fa39463a0c6bf698b01bc610135604aca2ff4 (patch)
tree7a5a7384ed322e2d8810c7b78e77b456f78236ed /NEWS
parent2172b44898a643058eb6a1943943d33635a6db61 (diff)
Make Digest() thread-safe.
* ext/digest/lib/digest.rb (Digest()): This function should now be thread-safe. If you have a problem with regard to on-demand loading under a multi-threaded environment, preload "digest/*" modules on boot or use this method instead of directly referencing Digest::*. [Bug #9494] cf. https://github.com/aws/aws-sdk-ruby/issues/525 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48213 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 8c46c971a1..333bf38650 100644
--- a/NEWS
+++ b/NEWS
@@ -128,6 +128,11 @@ with all sufficient information, see the ChangeLog file.
=== Stdlib updates (outstanding ones only)
* Digest
+
+ * Digest() should now be thread-safe. If you have a problem with
+ regard to on-demand loading under a multi-threaded environment,
+ preload "digest/*" modules on boot or use this method instead of
+ directly referencing Digest::*.
* Digest::HMAC has been removed just as previously noticed.
* Etc