v0.4.0
Breaking Changes
minimatch.StateStore
is divided intominimatch.FrontendStore
andminimatch.BackendStore
.WithTicketTTL
option has been moved from thestatestore.RedisOption
tominimatch.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