aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/CHANGELOG.md
diff options
context:
space:
mode:
authorAaron Patterson <aaron.patterson@gmail.com>2015-07-14 11:06:20 -0700
committerAaron Patterson <aaron.patterson@gmail.com>2015-07-14 11:06:20 -0700
commit468a55b741f2ceacd8a988a9487db6d767ca8616 (patch)
treecbf935eda9855db7f9d568b599f7c63246a29399 /activerecord/CHANGELOG.md
parent7645a5f85d7fc88b5f05f7fe4b73b743078bb069 (diff)
parent284a9ba8ecbbaac598179af6fc65aed7bcf5785b (diff)
downloadrails-468a55b741f2ceacd8a988a9487db6d767ca8616.tar.gz
rails-468a55b741f2ceacd8a988a9487db6d767ca8616.tar.bz2
rails-468a55b741f2ceacd8a988a9487db6d767ca8616.zip
Merge pull request #20866 from jdantonio/countdown-latch
Replace `ActiveSupport::Concurrency::Latch` with `Concurrent::CountDownLatch` from concurrent-ruby.
Diffstat (limited to 'activerecord/CHANGELOG.md')
-rw-r--r--activerecord/CHANGELOG.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index e4a6734009..e3ad9ff3b1 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Replaced `ActiveSupport::Concurrency::Latch` with `Concurrent::CountDownLatch`
+ from the concurrent-ruby gem.
+
+ *Jerry D'Antonio*
+
* Fix through associations using scopes having the scope merged multiple
times.