Skip to content

v0.4.0

Compare
Choose a tag to compare
@castaneai castaneai released this 28 Aug 11:16
· 29 commits to main since this release
d2755f1

Breaking Changes

  • minimatch.StateStore is divided into minimatch.FrontendStore and minimatch.BackendStore.
  • WithTicketTTL option has been moved from the statestore.RedisOption to minimatch.FrontendOption.
-store := statestore.NewRedisStore(redis, locker, statestore.WithTicketTTL(...))
+store := statestore.NewRedisStore(redis, locker)

-minimatch.NewFrontendService(store)
+minimatch.NewFrontendService(store, minimatch.WithTicketTTL(...))

What's Changed

  • backend: Check for existence before assigning tickets. by @castaneai in #28

Full Changelog: v0.3.3...v0.4.0