diff --git a/README.md b/README.md index e3800eb2600b..a437c7a2cae7 100644 --- a/README.md +++ b/README.md @@ -51,11 +51,15 @@ Release process: 4. commit and tag the release 5. upload rock to LuaRocks -### 5.0.1 (unreleased) +### 5.1.0 (28-Sep-2020) - Fix: workaround for LuaJIT/ARM bug, see [Issue 93](https://github.com/Kong/lua-resty-dns-client/issues/93). - Fix: table reduction was calculated wrong. Not a "functional" bug, just causing slightly less agressive memory releasing. +- Added: alternative implementation of the consistent-hashing balancing algorithm, + which does not rely on the addresses addition and removal order to build the + same request distribution among different instances. See + [PR 97](https://github.com/Kong/lua-resty-dns-client/pull/97). ### 5.0.0 (14-May-2020) diff --git a/docs/index.html b/docs/index.html index 97f84555657d..b170d631b943 100644 --- a/docs/index.html +++ b/docs/index.html @@ -32,6 +32,7 @@
This balancer implements a consistent-hashing algorithm based on the + Ketama algorithm.