From af444a30cb2b9e9e581a089bd6ed2195f3fdde71 Mon Sep 17 00:00:00 2001 From: James Phillips Date: Fri, 13 Nov 2015 10:07:42 -0800 Subject: [PATCH] Adds a note about the new KV lock behavior. --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f4a51a777..4b81a58dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## 0.6.0 (Unreleased) +BACKWARDS INCOMPATIBILITIES: + +* A KV lock acquisition operation will now allow the lock holder to + update the key's value without giving up the lock by doing another + PUT with `?acquire=` and providing the same session that + is holding the lock. Previously, this operation would fail. + FEATURES: * Service ACLs now apply to service discovery [GH-1024] @@ -73,7 +80,7 @@ MISC: * Lots of docs fixes * Lots of Vagrantfile cleanup -* Data migrator utility removed to reduce cgo dependency. [GH-1309] +* Data migrator utility removed to reduce cgo dependency [GH-1309] UPGRADE NOTES: