Releases: OrleansContrib/Orleans.SyncWork
Releases · OrleansContrib/Orleans.SyncWork
v8.1.12
What's Changed
- Few housekeeping tasks by @Kritner in #51
- Allow returning NotStarted from GetWorkStatus by @hendrikdevloed in #57
- [Breaking change] Removes the
IGrainWithGuidKey
constraint fromISyncWorker
. by @Kritner in #55
Previously defined:
public interface ISyncWorker<in TRequest, TResult> : IGrainWithGuidKey
Is now defined as:
public interface ISyncWorker<in TRequest, TResult> : IGrain
See linked PR for additional details
Previous abstract method for implementation was defined as:
protected abstract Task<TResult> PerformWork(TRequest request);
Now defined as:
protected abstract Task<TResult> PerformWork(
TRequest request, GrainCancellationToken grainCancellationToken);
See associated PR for additional details
New Contributors
- @hendrikdevloed made their first contribution in #57
Full Changelog: v8.0.3...v8.1.12
v8.0.3 - Support for .net8
What's Changed
- Updates for .net8 by @Kritner in #48
- Updates readme around .net versions supported by @Kritner in #49
Full Changelog: v7.2.6...v8.0.3
v7.2.6 - updates log messages
v7.1.3 - only documentation change
What's Changed
Full Changelog: v7.0.1...v7.1.3
Orleans.SyncWork release for .net7
What's Changed
- Orleans v7 upgrade by @htxryan in #37
- Use NUGET_KEY instead of NUGET_API_KEY secret by @ReubenBond in #39
New Contributors
- @htxryan made their first contribution in #37
- @ReubenBond made their first contribution in #39
Full Changelog: v1.5.9...v7.0.1
v1.5.9 - Introduces extension methods for `ISiloBuilder`
v1.4.10 - IClientHost extension method and XML documentation
v1.3.7
v1.2.10 - Now targeting .netstandard
What's Changed
- Updates a few "Kritner" references to "OrleansContrib" in readme and … by @Kritner in #18
- Update CI to run on push to main by @Kritner in #19
- Code coverage using coverlet by @Kritner in #20
- Fixes nesting in coverage.yml by @Kritner in #21
- Update README.md by @Kritner in #22
- Updates SyncWork to target netstandard2.0 rather than net5 and net6 by @Kritner in #24
- Additional tests against missing code coverage by @Kritner in #25
Full Changelog: v1.1.9...v1.2.10