Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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-12

### 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
Expand All @@ -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
2 changes: 1 addition & 1 deletion manager/entraid_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading