From c5ed07cb014c1f452d0514ca6abcc09e6584de50 Mon Sep 17 00:00:00 2001 From: Rene Kroon Date: Sat, 18 Dec 2021 20:38:03 +0100 Subject: [PATCH] Prepare release --- CHANGELOG.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1d5baf..dbfa620 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 2.11.0 (December 2021) + +#64: @DoubeDi added a method `GetItems` to retrieve all items in the cache. This method also triggers all callbacks associated with a normal `Get` + +## API changes: + +// GetItems returns a copy of all items in the cache. Returns nil when the cache has been closed. +func (cache *Cache) GetItems() map[string]interface{} { + # 2.10.0 (December 2021) #62 : @nikhilk1701 found a memory leak where removed items are not directly eligible for garbage collection. There are no API changes.