Skip to content

lib/v4.2.0

Latest
Compare
Choose a tag to compare
@eko eko released this 08 Jan 06:20
08ff381

Breaking Changes

⚠️ Using LoadableCache, the LoadFunction[T any] must now return 3 arguments (including options):

- type LoadFunction[T any] func(ctx context.Context, key any) (T, error)
+ type LoadFunction[T any] func(ctx context.Context, key any) (T, []store.Option, error)

What's Changed

New Contributors

Full Changelog: store/hazelcast/v4.2.0...lib/v4.2.0