v0.4.0
Breaking Changes
minimatch.StateStoreis divided intominimatch.FrontendStoreandminimatch.BackendStore.WithTicketTTLoption has been moved from thestatestore.RedisOptiontominimatch.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