From 6484bef1881a3c546c4e3f9c9fdf000dc319f82a Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Thu, 11 Sep 2025 17:52:55 +0300 Subject: [PATCH 1/2] chore: update changelog --- CHANGELOG.md | 38 +++++++++++++++++++++++++++++++++ manager/entraid_manager_test.go | 2 +- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 66fecc9..48071b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,38 @@ All notable changes to go-redis-entraid will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.6] - 2025-09-11 + +### Changed +- chore: update changelog @ndyakov (#13) + +## [1.0.5] - 2025-09-11 + +### Fixed +- fix: don't hold lock when calling listeners @ndyakov (#12) + +## [1.0.4] - 2025-08-06 + +## Changed +- refactor(manager): small refactors around the manager and token logic @ndyakov (#10) + +## [1.0.3] - 2025-05-30 + +### Changed +- refactor(provider): Mark ClientID as deprecated, use correct one in examples. (#8) + +## [1.0.2] - 2025-05-29 + +### Changed +- chore(documentation): add release notes, add badges in readme @ndyakov (#7) +- fix(manager): optimize durationToRenewal @ndyakov (#6) + +## [1.0.1] - 2025-05-27 + +### Changed +- chore(deps): update dependencies @ndyakov (#5) +- refactor(github): move templates, add changelog @ndyakov (#4) + ## [1.0.0] - 2025-05-27 ### Added @@ -25,3 +57,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - go-redis: v9.10.0+ [1.0.0]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.0 +[1.0.1]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.1 +[1.0.2]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.2 +[1.0.3]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.3 +[1.0.4]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.4 +[1.0.5]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.5 +[1.0.6]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.6 diff --git a/manager/entraid_manager_test.go b/manager/entraid_manager_test.go index 7ac8987..50e3970 100644 --- a/manager/entraid_manager_test.go +++ b/manager/entraid_manager_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/assert" ) -const testDurationDelta = float64(5 * time.Millisecond) +const testDurationDelta = float64(10 * time.Millisecond) func TestDurationToRenewal(t *testing.T) { tests := []struct { From 030f62836baadd5298c266f0c58db41f78b11beb Mon Sep 17 00:00:00 2001 From: Nedyalko Dyakov Date: Fri, 12 Sep 2025 14:46:04 +0300 Subject: [PATCH 2/2] chore: update date --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 48071b2..a007953 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to go-redis-entraid will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [1.0.6] - 2025-09-11 +## [1.0.6] - 2025-09-12 ### Changed - chore: update changelog @ndyakov (#13)