Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 5, 2025

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.

ChristopherMann justadreamer MartinSGill arturcic kucuk-furkan dependabot

SHA256 Hashes of the release artifacts

  • db8763de05fdd541dfb24c36d031b69ec2ee5c8672ddacb1ddac74320056c091 - gitversion-linux-arm64-6.3.0.tar.gz
  • 55389ed2b427a58722f14427dd3ee316d961ffa9a7549330097009d0512ad985 - gitversion-linux-musl-arm64-6.3.0.tar.gz
  • 73355263a2ef4fa95de8e234b8fd59b8e545ce8c2e731ce6521841da313e4aa6 - gitversion-linux-musl-x64-6.3.0.tar.gz
  • de518d8a0bf83ff5a524824049ec1dc65195a88ac90757b41c1f401e4de24c73 - gitversion-linux-x64-6.3.0.tar.gz
  • 29baf7c4c043f812afa4acab63619bb06aa30e9584c7afb6b28ff94db274a86b - gitversion-osx-arm64-6.3.0.tar.gz
  • b9d05229f46cfbe3d1a95dbb21078fa4655897e4744c5b65850094d8191df362 - gitversion-osx-x64-6.3.0.tar.gz
  • ec8f41e7f7e7ccaf86ad0e593adecf23d98b32e5eaaad9dd2a7b23230e48fd68 - gitversion-win-arm64-6.3.0.zip
  • 6016a0f3254b2fec3f7b59dbaea1ae03c939a62a5def5277578b47cfec2721a8 - gitversion-win-x64-6.3.0.zip

6.2.0

As part of this release we had 159 commits which resulted in 27 issues being closed.

Breaking change

  • !4383 branch regex is matched against {EscapedBranchName} not {BranchName} by HHobeck

Bugs

  • #​4154 [BUG]: branch regex is matched against {EscapedBranchName} not {BranchName} by Jaykul
  • #​4329 [ISSUE]: Overrideconfig for strategies returns 'unknown key' error by ohlrogge resolved in !4405 by schickst
  • !4402 Add tests for GitLab CI to ignore branch name for tags by Bi0T1N
  • !4452 Config filename case insensitive by arturcic

Dependencies

Documentation

Features

Improvements

  • #​4347 [IMPROVEMENT]: Topological commit sort causes issues when master is merged into a feature branch by dauthleikr resolved in !4356 by HHobeck
  • !4443 Replace direct file system access with System.IO.Abstractions by arturcic

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:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

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

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:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

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

Full 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 CancellationToken in 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

  • ResourceOptimizedPlacement as Default (#​9533) - The default placement strategy is now ResourceOptimizedPlacement for better resource utilization
  • Fully Adaptive Stateless Worker (#​9378) - Improved stateless grain scaling behavior
  • Rebalancer-compatible Tolerance Rule (#​9464, #​9467) - Better compatibility with grain rebalancing

Grain Directory Improvements

ADO.NET Grain Directory

The new ADO.NET Grain Directory (#​9263) provides:

  • Persistent grain location storage - Grain locations survive cluster restarts
  • Reduced memory footprint - Offload directory data to database
  • Support for multiple database providers - Works with SQL Server, MySQL, PostgreSQL, and other ADO.NET compatible databases
  • Scalability - Better support for very large clusters

Directory Caching Changes

  • Removed Adaptive Directory Caching (#​9542) - The adaptive caching strategy has been obsoleted and removed. The standard caching mechanism provides better performance and consistency.

Performance Improvements

  • Replaced LRU with LRU based on BitFaster.Caching (#​9530) - More efficient caching implementation
  • Reduced log noise during debugging (#​9397) - Cleaner debug experience
  • Optimized Azure Storage operations (#​9373, #​9420) - Fewer exceptions and unnecessary IO
  • Improved allocation patterns (#​9570) - Better memory efficiency for cache invalidation
  • IAsyncEnumerable improvements (#​9366, #​9387, #​9359) - Fixed cancellation propagation and bounded operation times

Storage and Persistence

Azure Storage

... (truncated)

9.2.0-preview3

What's Changed

Full Changelog: dotnet/orleans@v9.2.0-preview2...v9.2.0-preview3

9.2.0-preview2

What's Changed

9.2.0-preview1

What's Changed

New Contributors

Full 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

Full 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 CancellationToken in 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

  • ResourceOptimizedPlacement as Default (#​9533) - The default placement strategy is now ResourceOptimizedPlacement for better resource utilization
  • Fully Adaptive Stateless Worker (#​9378) - Improved stateless grain scaling behavior
  • Rebalancer-compatible Tolerance Rule (#​9464, #​9467) - Better compatibility with grain rebalancing

Grain Directory Improvements

ADO.NET Grain Directory

The new ADO.NET Grain Directory (#​9263) provides:

  • Persistent grain location storage - Grain locations survive cluster restarts
  • Reduced memory footprint - Offload directory data to database
  • Support for multiple database providers - Works with SQL Server, MySQL, PostgreSQL, and other ADO.NET compatible databases
  • Scalability - Better support for very large clusters

Directory Caching Changes

  • Removed Adaptive Directory Caching (#​9542) - The adaptive caching strategy has been obsoleted and removed. The standard caching mechanism provides better performance and consistency.

Performance Improvements

  • Replaced LRU with LRU based on BitFaster.Caching (#​9530) - More efficient caching implementation
  • Reduced log noise during debugging (#​9397) - Cleaner debug experience
  • Optimized Azure Storage operations (#​9373, #​9420) - Fewer exceptions and unnecessary IO
  • Improved allocation patterns (#​9570) - Better memory efficiency for cache invalidation
  • IAsyncEnumerable improvements (#​9366, #​9387, #​9359) - Fixed cancellation propagation and bounded operation times

Storage and Persistence

Azure Storage

... (truncated)

9.2.0-preview3

What's Changed

Full Changelog: dotnet/orleans@v9.2.0-preview2...v9.2.0-preview3

9.2.0-preview2

What's Changed

9.2.0-preview1

What's Changed

New Contributors

Full 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

Full 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 CancellationToken in 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

  • ResourceOptimizedPlacement as Default (#​9533) - The default placement strategy is now ResourceOptimizedPlacement for better resource utilization
  • Fully Adaptive Stateless Worker (#​9378) - Improved stateless grain scaling behavior
  • Rebalancer-compatible Tolerance Rule (#​9464, #​9467) - Better compatibility with grain rebalancing

Grain Directory Improvements

ADO.NET Grain Directory

The new ADO.NET Grain Directory (#​9263) provides:

  • Persistent grain location storage - Grain locations survive cluster restarts
  • Reduced memory footprint - Offload directory data to database
  • Support for multiple database providers - Works with SQL Server, MySQL, PostgreSQL, and other ADO.NET compatible databases
  • Scalability - Better support for very large clusters

Directory Caching Changes

  • Removed Adaptive Directory Caching (#​9542) - The adaptive caching strategy has been obsoleted and removed. The standard caching mechanism provides better performance and consistency.

Performance Improvements

  • Replaced LRU with LRU based on BitFaster.Caching (#​9530) - More efficient caching implementation
  • Reduced log noise during debugging (#​9397) - Cleaner debug experience
  • Optimized Azure Storage operations (#​9373, #​9420) - Fewer exceptions and unnecessary IO
  • Improved allocation patterns (#​9570) - Better memory efficiency for cache invalidation
  • IAsyncEnumerable improvements (#​9366, #​9387, #​9359) - Fixed cancellation propagation and bounded operation times

Storage and Persistence

Azure Storage

... (truncated)

9.2.0-preview3

What's Changed

Full Changelog: dotnet/orleans@v9.2.0-preview2...v9.2.0-preview3

9.2.0-preview2

What's Changed

9.2.0-preview1

What's Changed

New Contributors

Full 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

Full 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 CancellationToken in 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

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

Bumps GitVersion.MsBuild from 6.1.0 to 6.3.0
Bumps Microsoft.NET.Test.Sdk from 17.13.0 to 17.14.1
Bumps Microsoft.Orleans.Core from 9.1.2 to 9.2.1
Bumps Microsoft.Orleans.EventSourcing from 9.1.2 to 9.2.1
Bumps Microsoft.Orleans.Runtime from 9.1.2 to 9.2.1
Bumps Microsoft.Orleans.Sdk from 9.1.2 to 9.2.1
Bumps Microsoft.Orleans.Server from 9.1.2 to 9.2.1
Bumps Microsoft.Orleans.Streaming from 9.1.2 to 9.2.1
Bumps Microsoft.Orleans.TestingHost from 9.1.2 to 9.2.1
Bumps NATS.Client.JetStream from 2.6.1 to 2.6.6
Bumps NATS.Client.KeyValueStore from 2.6.1 to 2.6.6
Bumps NATS.Client.ObjectStore from 2.6.1 to 2.6.6
Bumps NATS.Extensions.Microsoft.DependencyInjection from 2.6.1 to 2.6.6
Bumps xunit.runner.visualstudio from 3.0.2 to 3.1.3

---
updated-dependencies:
- dependency-name: GitVersion.MsBuild
  dependency-version: 6.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.Core
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.EventSourcing
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.Runtime
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.Sdk
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.Server
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.Streaming
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.Orleans.TestingHost
  dependency-version: 9.2.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: NATS.Client.JetStream
  dependency-version: 2.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: NATS.Client.KeyValueStore
  dependency-version: 2.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: NATS.Client.ObjectStore
  dependency-version: 2.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: NATS.Extensions.Microsoft.DependencyInjection
  dependency-version: 2.6.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Aug 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file .NET Pull requests that update .NET code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant