Skip to content

Commit 6484bef

Browse files
committed
chore: update changelog
1 parent f387795 commit 6484bef

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@ All notable changes to go-redis-entraid will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.6] - 2025-09-11
9+
10+
### Changed
11+
- chore: update changelog @ndyakov (#13)
12+
13+
## [1.0.5] - 2025-09-11
14+
15+
### Fixed
16+
- fix: don't hold lock when calling listeners @ndyakov (#12)
17+
18+
## [1.0.4] - 2025-08-06
19+
20+
## Changed
21+
- refactor(manager): small refactors around the manager and token logic @ndyakov (#10)
22+
23+
## [1.0.3] - 2025-05-30
24+
25+
### Changed
26+
- refactor(provider): Mark ClientID as deprecated, use correct one in examples. (#8)
27+
28+
## [1.0.2] - 2025-05-29
29+
30+
### Changed
31+
- chore(documentation): add release notes, add badges in readme @ndyakov (#7)
32+
- fix(manager): optimize durationToRenewal @ndyakov (#6)
33+
34+
## [1.0.1] - 2025-05-27
35+
36+
### Changed
37+
- chore(deps): update dependencies @ndyakov (#5)
38+
- refactor(github): move templates, add changelog @ndyakov (#4)
39+
840
## [1.0.0] - 2025-05-27
941

1042
### Added
@@ -25,3 +57,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2557
- go-redis: v9.10.0+
2658

2759
[1.0.0]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.0
60+
[1.0.1]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.1
61+
[1.0.2]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.2
62+
[1.0.3]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.3
63+
[1.0.4]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.4
64+
[1.0.5]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.5
65+
[1.0.6]: https://github.com/redis/go-redis-entraid/releases/tag/v1.0.6

manager/entraid_manager_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"github.com/stretchr/testify/assert"
99
)
1010

11-
const testDurationDelta = float64(5 * time.Millisecond)
11+
const testDurationDelta = float64(10 * time.Millisecond)
1212

1313
func TestDurationToRenewal(t *testing.T) {
1414
tests := []struct {

0 commit comments

Comments
 (0)