devlooped / CloudActors

An opinionated, simplified and uniform Cloud Native actors' library that integrates with Microsoft Orleans.
MIT License
37 stars 4 forks source link

Bump the orleans group with 4 updates #53

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the orleans group with 6 updates:

Package From To
Microsoft.Orleans.Runtime 7.2.1 7.2.6
Microsoft.Orleans.Serialization.Abstractions 7.2.1 7.2.6
Microsoft.Orleans.Serialization.Abstractions 7.2.1 8.1.0
Microsoft.Orleans.Client 7.2.1 8.1.0
Microsoft.Orleans.TestingHost 7.2.1 8.1.0
Microsoft.Orleans.Runtime 7.2.1 8.1.0

Updates Microsoft.Orleans.Runtime from 7.2.1 to 7.2.6

Release notes

Sourced from Microsoft.Orleans.Runtime's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view


Updates Microsoft.Orleans.Serialization.Abstractions from 7.2.1 to 7.2.6

Release notes

Sourced from Microsoft.Orleans.Serialization.Abstractions's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view


Updates Microsoft.Orleans.Serialization.Abstractions from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Serialization.Abstractions's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view


Updates Microsoft.Orleans.Client from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Client's releases.

v8.1.0

New features

Integration with Aspire

This release includes initial integration with .NET Aspire, allowing you to configure an Orleans cluster in your Aspire app host, specifying the resources the cluster uses. For example, you can specify that an Azure Table will be used for cluster membership, an Azure Redis resource will be used for the grain directory, and an Azure Blob Storage resource will be used to store grain state. The integration currently supports Redis and Azure Table & Blob storage resources. Support for other resources will be added later.

In the app host project, an Orleans cluster can be declared using the AddOrleans method, and then configured with clustering, grain storage, grain directory, and other providers using methods on the returned builder:

var storage = builder.AddAzureStorage("storage");
var clusteringTable = storage.AddTables("clustering");
var defaultStorage = storage.AddBlobs("grainstate");
var cartStorage = builder.AddRedis("redis-cart");

var orleans = builder.AddOrleans("my-app") .WithClustering(clusteringTable) .WithGrainStorage("Default", grainStorage) .WithGrainStorage("cart", cartStorage);

// Add a server project (also called "silo") builder.AddProject<Projects.OrleansServer>("silo") .WithReference(orleans);

// Add a project with a reference to the Orleans client builder.AddProject<Projects.FrontEnd>("frontend") .WithReference(orleans);

In the client and server projects, add Orleans to the host builder as usual.

// For an Orleans server:
builder.UseOrleans();

// Or, for an Orleans client: builder.UseOrleansClient();

Orleans will read configuration created by your Aspire app host project and configure the providers specified therein. To allow Orleans to access the configured resources, add them as keyed services using the corresponding Aspire component:

builder.AddKeyedAzureTableService("clustering");
builder.AddKeyedAzureBlobService("grainstate");
builder.AddKeyedRedis("redis-cart");

Resource-optimized placement

Resource-optimized placement, enabled via the [ResourceOptimizedPlacement] attribute on a grain class, balances grains across hosts based on available memory and CPU usage. For more details, see the PR: dotnet/orleans#8815.

... (truncated)

Commits


Updates Microsoft.Orleans.Serialization.Abstractions from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Serialization.Abstractions's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.3...v7.2.4

v7.2.3

What's Changed

... (truncated)

Commits
  • 9aab3f7 Use GrainDirectoryCacheFactory to construct a IGrainDirectoryCache (#8844) (#...
  • 6981e70 Avoid over-counting stateless worker activations (#8886) (#8890)
  • c1d1640 Fix StatelessWorker MaxLocal for Orleans 7.x (#8887)
  • b7bf45f Always reset RuntimeContext to previous value after use (#8864) (#8870)
  • 597bcf0 Fix PooledBuffer serialization & initialize ActivationMigrationManager on s...
  • 57bafe7 [7.x] Avoid resending unchanged ClusterManifest to clients (#8772)
  • 4ab056f Identify F# single case discriminated unions as SumType (#8739) (#8757)
  • 6be49c1 Fix exception caused by a log message (#8558) (#8701) (#8756)
  • fbd92f4 Fix exception while collecting activations when activation.KeepAliveUntil = D...
  • 236b398 Correctly count number of items in LRU (#8742) (#8754)
  • Additional commits viewable in compare view


Updates Microsoft.Orleans.TestingHost from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.TestingHost's releases.

v8.1.0

New features

Integration with Aspire

This release includes initial integration with .NET Aspire, allowing you to configure an Orleans cluster in your Aspire app host, specifying the resources the cluster uses. For example, you can specify that an Azure Table will be used for cluster membership, an Azure Redis resource will be used for the grain directory, and an Azure Blob Storage resource will be used to store grain state. The integration currently supports Redis and Azure Table & Blob storage resources. Support for other resources will be added later.

In the app host project, an Orleans cluster can be declared using the AddOrleans method, and then configured with clustering, grain storage, grain directory, and other providers using methods on the returned builder:

var storage = builder.AddAzureStorage("storage");
var clusteringTable = storage.AddTables("clustering");
var defaultStorage = storage.AddBlobs("grainstate");
var cartStorage = builder.AddRedis("redis-cart");

var orleans = builder.AddOrleans("my-app") .WithClustering(clusteringTable) .WithGrainStorage("Default", grainStorage) .WithGrainStorage("cart", cartStorage);

// Add a server project (also called "silo") builder.AddProject<Projects.OrleansServer>("silo") .WithReference(orleans);

// Add a project with a reference to the Orleans client builder.AddProject<Projects.FrontEnd>("frontend") .WithReference(orleans);

In the client and server projects, add Orleans to the host builder as usual.

// For an Orleans server:
builder.UseOrleans();

// Or, for an Orleans client: builder.UseOrleansClient();

Orleans will read configuration created by your Aspire app host project and configure the providers specified therein. To allow Orleans to access the configured resources, add them as keyed services using the corresponding Aspire component:

builder.AddKeyedAzureTableService("clustering");
builder.AddKeyedAzureBlobService("grainstate");
builder.AddKeyedRedis("redis-cart");

Resource-optimized placement

Resource-optimized placement, enabled via the [ResourceOptimizedPlacement] attribute on a grain class, balances grains across hosts based on available memory and CPU usage. For more details, see the PR: dotnet/orleans#8815.

... (truncated)

Commits


Updates Microsoft.Orleans.Runtime from 7.2.1 to 8.1.0

Release notes

Sourced from Microsoft.Orleans.Runtime's releases.

v7.2.6

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.5...v7.2.6

v7.2.5

What's Changed

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.4...v7.2.5

v7.2.4

What's Changed

New Contributors

Full Changelog: https://github.com/dotnet/orleans/compare/v7.2.3...v7.2.4

v7.2.3

What's Changed