Bump GitVersion.MsBuild and 13 others #49
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated GitVersion.MsBuild from 6.1.0 to 6.3.0.
Release notes
Sourced from GitVersion.MsBuild's releases.
6.3.0
As part of this release we had 60 commits which resulted in 7 issues being closed.
Bugs
Dependencies
Improvements
Contributors
6 contributors made this release possible.
SHA256 Hashes of the release artifacts
db8763de05fdd541dfb24c36d031b69ec2ee5c8672ddacb1ddac74320056c091 - gitversion-linux-arm64-6.3.0.tar.gz55389ed2b427a58722f14427dd3ee316d961ffa9a7549330097009d0512ad985 - gitversion-linux-musl-arm64-6.3.0.tar.gz73355263a2ef4fa95de8e234b8fd59b8e545ce8c2e731ce6521841da313e4aa6 - gitversion-linux-musl-x64-6.3.0.tar.gzde518d8a0bf83ff5a524824049ec1dc65195a88ac90757b41c1f401e4de24c73 - gitversion-linux-x64-6.3.0.tar.gz29baf7c4c043f812afa4acab63619bb06aa30e9584c7afb6b28ff94db274a86b - gitversion-osx-arm64-6.3.0.tar.gzb9d05229f46cfbe3d1a95dbb21078fa4655897e4744c5b65850094d8191df362 - gitversion-osx-x64-6.3.0.tar.gzec8f41e7f7e7ccaf86ad0e593adecf23d98b32e5eaaad9dd2a7b23230e48fd68 - gitversion-win-arm64-6.3.0.zip6016a0f3254b2fec3f7b59dbaea1ae03c939a62a5def5277578b47cfec2721a8 - gitversion-win-x64-6.3.0.zip6.2.0
As part of this release we had 159 commits which resulted in 27 issues being closed.
Breaking change
Bugs
Dependencies
Documentation
Features
Improvements
Contributors
... (truncated)
Commits viewable in compare view.
Updated Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1.
Release notes
Sourced from Microsoft.NET.Test.Sdk's releases.
17.14.1
What's Changed
Full Changelog: microsoft/vstest@v17.14.0...v17.14.1
17.14.0
What's Changed
.NET versions updated
This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:
It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.
Changes
Internal version updates and fixes
New Contributors
... (truncated)
17.14.0-preview-25107-01
What's Changed
.NET versions updated
This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:
It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.
Changes
Internal version updates and fixes
Will probably revert before release:
New Contributors
Full Changelog: microsoft/vstest@v17.13.0...v17.14.0-preview-25107-01
Commits viewable in compare view.
Updated Microsoft.Orleans.Core from 9.1.2 to 9.2.1.
Release notes
Sourced from Microsoft.Orleans.Core's releases.
9.2.1
What's Changed
ResourceOptimizedPlacementDirectorby @ReubenBond in Fix load score calculation inResourceOptimizedPlacementDirectordotnet/orleans#9611Full Changelog: dotnet/orleans@v9.2.0...v9.2.1
9.2.0
Orleans v9.2.0 includes significant new features, performance improvements, and enhanced developer experience. This release introduces native .NET CancellationToken support, new storage providers, improved placement strategies, and numerous performance optimizations.
The following is an AI-authored summary of the changes, with a full list of PRs at the bottom.
Major Features
CancellationToken Support (#9127)
Orleans now has full support for .NET's
CancellationTokenin grain methods, aligning with standard .NET async patterns and making it easier to handle cancellation scenarios in your grain operations.Log-structured Grain Storage (#9450)
A new high-performance storage provider that uses a log-structured approach for improved write performance and reduced storage overhead.
ADO.NET Grain Directory (#9263)
Introduces a database-backed grain directory implementation, providing an alternative to in-memory directory storage with support for various relational databases. This enables persistent grain location information across cluster restarts and supports larger clusters with reduced memory overhead.
Memory-based Activation Shedding (#9532, #9577)
Automatic grain deactivation under memory pressure helps prevent out-of-memory conditions by intelligently shedding grain activations when memory usage is high.
Silo Metadata and Placement Filtering (#9271, #9368, #9380, #9482)
Enhanced placement control allowing you to filter silo selection based on custom metadata, enabling more sophisticated deployment scenarios.
Placement and Load Balancing
ResourceOptimizedPlacementfor better resource utilizationGrain Directory Improvements
ADO.NET Grain Directory
The new ADO.NET Grain Directory (#9263) provides:
Directory Caching Changes
Performance Improvements
Storage and Persistence
Azure Storage
... (truncated)
9.2.0-preview3
What's Changed
ResourceOptimizedPlacementby default by @ReubenBond in [Placement] UseResourceOptimizedPlacementby default dotnet/orleans#9533RuntimeMessagingTraceby @ReubenBond in Fix leakingRuntimeMessagingTracedotnet/orleans#9548Full Changelog: dotnet/orleans@v9.2.0-preview2...v9.2.0-preview3
9.2.0-preview2
What's Changed
PerformUpdatemethod should not be called within a read-only transaction by @scalalang2 in EnsurePerformUpdatemethod should not be called within a read-only transaction dotnet/orleans#9492GrainIdasPropertyNameby @DeagleGross in feat: support serialization ofGrainIdasPropertyNamedotnet/orleans#9494InvalidOperationExceptioninActivationDatawhen cancelling operations by @ledjon-behluli in Avoid potentialInvalidOperationExceptioninActivationDatawhen cancelling operations dotnet/orleans#9475ConcurrentLruby @ReubenBond in Replace LRU with implementation based on BitFaster.CachingConcurrentLrudotnet/orleans#9530... (truncated)
9.2.0-preview1
What's Changed
NullReferenceExceptioninPlacementWorkerby @ledjon-behluli in Fix a potentialNullReferenceExceptioninPlacementWorkerdotnet/orleans#9386IConfigurationsupport for Azure Cosmos DB Clustering Provider by @OmnipotentOwl inIConfigurationsupport for Azure Cosmos DB Clustering Provider dotnet/orleans#9204RequestProcessingWarningTime&RequestQueueDelayWarningTimeby @ReubenBond in Increase defaultRequestProcessingWarningTime&RequestQueueDelayWarningTimedotnet/orleans#9398IGrainState<T>properties by @ReubenBond in Align behavior of grain storage providers when settingIGrainState<T>properties dotnet/orleans#9417New Contributors
IConfigurationsupport for Azure Cosmos DB Clustering Provider dotnet/orleans#9204Full Changelog: dotnet/orleans@v9.1.2...v9.2.0-preview1
Commits viewable in compare view.
Updated Microsoft.Orleans.EventSourcing from 9.1.2 to 9.2.1.
Release notes
Sourced from Microsoft.Orleans.EventSourcing's releases.
9.2.1
What's Changed
ResourceOptimizedPlacementDirectorby @ReubenBond in Fix load score calculation inResourceOptimizedPlacementDirectordotnet/orleans#9611Full Changelog: dotnet/orleans@v9.2.0...v9.2.1
9.2.0
Orleans v9.2.0 includes significant new features, performance improvements, and enhanced developer experience. This release introduces native .NET CancellationToken support, new storage providers, improved placement strategies, and numerous performance optimizations.
The following is an AI-authored summary of the changes, with a full list of PRs at the bottom.
Major Features
CancellationToken Support (#9127)
Orleans now has full support for .NET's
CancellationTokenin grain methods, aligning with standard .NET async patterns and making it easier to handle cancellation scenarios in your grain operations.Log-structured Grain Storage (#9450)
A new high-performance storage provider that uses a log-structured approach for improved write performance and reduced storage overhead.
ADO.NET Grain Directory (#9263)
Introduces a database-backed grain directory implementation, providing an alternative to in-memory directory storage with support for various relational databases. This enables persistent grain location information across cluster restarts and supports larger clusters with reduced memory overhead.
Memory-based Activation Shedding (#9532, #9577)
Automatic grain deactivation under memory pressure helps prevent out-of-memory conditions by intelligently shedding grain activations when memory usage is high.
Silo Metadata and Placement Filtering (#9271, #9368, #9380, #9482)
Enhanced placement control allowing you to filter silo selection based on custom metadata, enabling more sophisticated deployment scenarios.
Placement and Load Balancing
ResourceOptimizedPlacementfor better resource utilizationGrain Directory Improvements
ADO.NET Grain Directory
The new ADO.NET Grain Directory (#9263) provides:
Directory Caching Changes
Performance Improvements
Storage and Persistence
Azure Storage
... (truncated)
9.2.0-preview3
What's Changed
ResourceOptimizedPlacementby default by @ReubenBond in [Placement] UseResourceOptimizedPlacementby default dotnet/orleans#9533RuntimeMessagingTraceby @ReubenBond in Fix leakingRuntimeMessagingTracedotnet/orleans#9548Full Changelog: dotnet/orleans@v9.2.0-preview2...v9.2.0-preview3
9.2.0-preview2
What's Changed
PerformUpdatemethod should not be called within a read-only transaction by @scalalang2 in EnsurePerformUpdatemethod should not be called within a read-only transaction dotnet/orleans#9492GrainIdasPropertyNameby @DeagleGross in feat: support serialization ofGrainIdasPropertyNamedotnet/orleans#9494InvalidOperationExceptioninActivationDatawhen cancelling operations by @ledjon-behluli in Avoid potentialInvalidOperationExceptioninActivationDatawhen cancelling operations dotnet/orleans#9475ConcurrentLruby @ReubenBond in Replace LRU with implementation based on BitFaster.CachingConcurrentLrudotnet/orleans#9530... (truncated)
9.2.0-preview1
What's Changed
NullReferenceExceptioninPlacementWorkerby @ledjon-behluli in Fix a potentialNullReferenceExceptioninPlacementWorkerdotnet/orleans#9386IConfigurationsupport for Azure Cosmos DB Clustering Provider by @OmnipotentOwl inIConfigurationsupport for Azure Cosmos DB Clustering Provider dotnet/orleans#9204RequestProcessingWarningTime&RequestQueueDelayWarningTimeby @ReubenBond in Increase defaultRequestProcessingWarningTime&RequestQueueDelayWarningTimedotnet/orleans#9398IGrainState<T>properties by @ReubenBond in Align behavior of grain storage providers when settingIGrainState<T>properties dotnet/orleans#9417New Contributors
IConfigurationsupport for Azure Cosmos DB Clustering Provider dotnet/orleans#9204Full Changelog: dotnet/orleans@v9.1.2...v9.2.0-preview1
Commits viewable in compare view.
Updated Microsoft.Orleans.Runtime from 9.1.2 to 9.2.1.
Release notes
Sourced from Microsoft.Orleans.Runtime's releases.
9.2.1
What's Changed
ResourceOptimizedPlacementDirectorby @ReubenBond in Fix load score calculation inResourceOptimizedPlacementDirectordotnet/orleans#9611Full Changelog: dotnet/orleans@v9.2.0...v9.2.1
9.2.0
Orleans v9.2.0 includes significant new features, performance improvements, and enhanced developer experience. This release introduces native .NET CancellationToken support, new storage providers, improved placement strategies, and numerous performance optimizations.
The following is an AI-authored summary of the changes, with a full list of PRs at the bottom.
Major Features
CancellationToken Support (#9127)
Orleans now has full support for .NET's
CancellationTokenin grain methods, aligning with standard .NET async patterns and making it easier to handle cancellation scenarios in your grain operations.Log-structured Grain Storage (#9450)
A new high-performance storage provider that uses a log-structured approach for improved write performance and reduced storage overhead.
ADO.NET Grain Directory (#9263)
Introduces a database-backed grain directory implementation, providing an alternative to in-memory directory storage with support for various relational databases. This enables persistent grain location information across cluster restarts and supports larger clusters with reduced memory overhead.
Memory-based Activation Shedding (#9532, #9577)
Automatic grain deactivation under memory pressure helps prevent out-of-memory conditions by intelligently shedding grain activations when memory usage is high.
Silo Metadata and Placement Filtering (#9271, #9368, #9380, #9482)
Enhanced placement control allowing you to filter silo selection based on custom metadata, enabling more sophisticated deployment scenarios.
Placement and Load Balancing
ResourceOptimizedPlacementfor better resource utilizationGrain Directory Improvements
ADO.NET Grain Directory
The new ADO.NET Grain Directory (#9263) provides:
Directory Caching Changes
Performance Improvements
Storage and Persistence
Azure Storage
... (truncated)
9.2.0-preview3
What's Changed
ResourceOptimizedPlacementby default by @ReubenBond in [Placement] UseResourceOptimizedPlacementby default dotnet/orleans#9533RuntimeMessagingTraceby @ReubenBond in Fix leakingRuntimeMessagingTracedotnet/orleans#9548Full Changelog: dotnet/orleans@v9.2.0-preview2...v9.2.0-preview3
9.2.0-preview2
What's Changed
PerformUpdatemethod should not be called within a read-only transaction by @scalalang2 in EnsurePerformUpdatemethod should not be called within a read-only transaction dotnet/orleans#9492GrainIdasPropertyNameby @DeagleGross in feat: support serialization ofGrainIdasPropertyNamedotnet/orleans#9494InvalidOperationExceptioninActivationDatawhen cancelling operations by @ledjon-behluli in Avoid potentialInvalidOperationExceptioninActivationDatawhen cancelling operations dotnet/orleans#9475ConcurrentLruby @ReubenBond in Replace LRU with implementation based on BitFaster.CachingConcurrentLrudotnet/orleans#9530... (truncated)
9.2.0-preview1
What's Changed
NullReferenceExceptioninPlacementWorkerby @ledjon-behluli in Fix a potentialNullReferenceExceptioninPlacementWorkerdotnet/orleans#9386IConfigurationsupport for Azure Cosmos DB Clustering Provider by @OmnipotentOwl inIConfigurationsupport for Azure Cosmos DB Clustering Provider dotnet/orleans#9204RequestProcessingWarningTime&RequestQueueDelayWarningTimeby @ReubenBond in Increase defaultRequestProcessingWarningTime&RequestQueueDelayWarningTimedotnet/orleans#9398IGrainState<T>properties by @ReubenBond in Align behavior of grain storage providers when settingIGrainState<T>properties dotnet/orleans#9417New Contributors
IConfigurationsupport for Azure Cosmos DB Clustering Provider dotnet/orleans#9204Full Changelog: dotnet/orleans@v9.1.2...v9.2.0-preview1
Commits viewable in compare view.
Updated Microsoft.Orleans.Sdk from 9.1.2 to 9.2.1.
Release notes
Sourced from Microsoft.Orleans.Sdk's releases.
9.2.1
What's Changed
ResourceOptimizedPlacementDirectorby @ReubenBond in Fix load score calculation inResourceOptimizedPlacementDirectordotnet/orleans#9611Full Changelog: dotnet/orleans@v9.2.0...v9.2.1
9.2.0
Orleans v9.2.0 includes significant new features, performance improvements, and enhanced developer experience. This release introduces native .NET CancellationToken support, new storage providers, improved placement strategies, and numerous performance optimizations.
The following is an AI-authored summary of the changes, with a full list of PRs at the bottom.
Major Features
CancellationToken Support (#9127)
Orleans now has full support for .NET's
CancellationTokenin grain methods, aligning with standard .NET async patterns and making it easier to handle cancellation scenarios in your grain operations.Log-structured Grain Storage (#9450)
A new high-performance storage provider that uses a log-structured approach for improved write performance and reduced storage overhead.
ADO.NET Grain Directory (#9263)
Introduces a database-backed grain directory implementation, providing an alternative to in-memory directory storage with support for various relational databases. This enables persistent grain location information across cluster restarts and supports larger clusters with reduced memory overhead.
Memory-based Activation Shedding (#9532, #9577)
Automatic grain deactivation under memory pressure helps prevent out-of-memory conditions by intelligently shedding grain activations when memory usage is high.
Silo Metadata and Placement Filtering (#9271, #9368, #9380, #9482)
Enhanced placement control allowing you to...
Description has been truncated