Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .changeset/pre.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,8 @@
"@neolution-ch/neolution.extensions.caching.inmemory": "2.1.2",
"@neolution-ch/neolution.extensions.caching.redishybrid": "2.1.2"
},
"changesets": []
"changesets": [
"hot-coins-build",
"shy-tools-see"
]
}
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<Version>2.1.3</Version>
<Version>3.0.0-beta.0</Version>
<Authors>Neolution</Authors>
<Company>Neolution AG</Company>
<Copyright>Copyright © Neolution AG</Copyright>
Expand Down
29 changes: 29 additions & 0 deletions src/Neolution.Extensions.Caching.Abstractions/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @neolution-ch/neolution.extensions.caching.abstractions

## 3.0.0-beta.0

### Major Changes

- [#8](https://github.com/neolution-ch/Neolution.Extensions.Caching/pull/8) [`14ebc38`](https://github.com/neolution-ch/Neolution.Extensions.Caching/commit/14ebc387e745bc1ee6c6aa40c1945c90ad870946) Thanks [@neoscie](https://github.com/neoscie)! - Major version bump multi-targeting .NET 8 and .NET 10, with several breaking changes and new configuration options for distributed caches.

**Breaking changes:**

- **.NET Standard 2.0 support dropped.** Packages now target `net8.0` and `net10.0`; projects on .NET Framework, .NET Standard 2.0 or .NET 6.0/7.0 must stay on v2.x
- `MessagePack` moves from 2.5.x to 3.1.7 (via `Foundatio` 13.0.2). If you reference `MessagePack` directly, NuGet unifies it to 3.x for your project too
- Options classes now inherit from a shared `DistributedCacheOptionsBase` instead of implementing `IOptions<T>`
- `AddMessagePackDistributedCache()` renamed to `AddSerializedDistributedCache()` (old method kept as `[Obsolete]`)
- Registration now throws immediately if no `IDistributedCache` provider is registered first
- Redis hybrid cache registration now takes a `RedisHybridCacheOptions` parameter instead of inline setup
- All extension methods now return `IServiceCollection` for fluent chaining

**New features:**

- `SchemaVersion` and `EnvironmentPrefix` options for cache invalidation and multi-environment isolation
- `[CacheKey]` attribute on enum members for refactor-safe distributed cache keys
- Configurable key encoding and key length validation (both enabled by default for distributed caches)
- Redis hybrid cache now exposes `RedisHybridCacheOptions` with compression control and shared multiplexer support

**Security:**

- `Foundatio` 13.0.2 brings `MessagePack` 3.1.7, fixing GHSA-hv8m-jj95-wg3x, GHSA-vh6j-jc39-fggf and GHSA-382j-8mxh-c7x2 (High) plus nine lower-severity advisories that affected the 3.1.4 pinned by `Foundatio` 12.x

See `docs/MIGRATION_GUIDE_V3.md` for the full migration walkthrough. Existing v2.x cache entries remain readable with default settings.

## 2.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/Neolution.Extensions.Caching.Abstractions/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@neolution-ch/neolution.extensions.caching.abstractions",
"version": "2.1.3",
"version": "3.0.0-beta.0",
"private": true
}
29 changes: 29 additions & 0 deletions src/Neolution.Extensions.Caching.Distributed/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @neolution-ch/neolution.extensions.caching.distributed

## 3.0.0-beta.0

### Major Changes

- [#8](https://github.com/neolution-ch/Neolution.Extensions.Caching/pull/8) [`14ebc38`](https://github.com/neolution-ch/Neolution.Extensions.Caching/commit/14ebc387e745bc1ee6c6aa40c1945c90ad870946) Thanks [@neoscie](https://github.com/neoscie)! - Major version bump multi-targeting .NET 8 and .NET 10, with several breaking changes and new configuration options for distributed caches.

**Breaking changes:**

- **.NET Standard 2.0 support dropped.** Packages now target `net8.0` and `net10.0`; projects on .NET Framework, .NET Standard 2.0 or .NET 6.0/7.0 must stay on v2.x
- `MessagePack` moves from 2.5.x to 3.1.7 (via `Foundatio` 13.0.2). If you reference `MessagePack` directly, NuGet unifies it to 3.x for your project too
- Options classes now inherit from a shared `DistributedCacheOptionsBase` instead of implementing `IOptions<T>`
- `AddMessagePackDistributedCache()` renamed to `AddSerializedDistributedCache()` (old method kept as `[Obsolete]`)
- Registration now throws immediately if no `IDistributedCache` provider is registered first
- Redis hybrid cache registration now takes a `RedisHybridCacheOptions` parameter instead of inline setup
- All extension methods now return `IServiceCollection` for fluent chaining

**New features:**

- `SchemaVersion` and `EnvironmentPrefix` options for cache invalidation and multi-environment isolation
- `[CacheKey]` attribute on enum members for refactor-safe distributed cache keys
- Configurable key encoding and key length validation (both enabled by default for distributed caches)
- Redis hybrid cache now exposes `RedisHybridCacheOptions` with compression control and shared multiplexer support

**Security:**

- `Foundatio` 13.0.2 brings `MessagePack` 3.1.7, fixing GHSA-hv8m-jj95-wg3x, GHSA-vh6j-jc39-fggf and GHSA-382j-8mxh-c7x2 (High) plus nine lower-severity advisories that affected the 3.1.4 pinned by `Foundatio` 12.x

See `docs/MIGRATION_GUIDE_V3.md` for the full migration walkthrough. Existing v2.x cache entries remain readable with default settings.

## 2.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/Neolution.Extensions.Caching.Distributed/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@neolution-ch/neolution.extensions.caching.distributed",
"version": "2.1.3",
"version": "3.0.0-beta.0",
"private": true
}
29 changes: 29 additions & 0 deletions src/Neolution.Extensions.Caching.InMemory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @neolution-ch/neolution.extensions.caching.inmemory

## 3.0.0-beta.0

### Major Changes

- [#8](https://github.com/neolution-ch/Neolution.Extensions.Caching/pull/8) [`14ebc38`](https://github.com/neolution-ch/Neolution.Extensions.Caching/commit/14ebc387e745bc1ee6c6aa40c1945c90ad870946) Thanks [@neoscie](https://github.com/neoscie)! - Major version bump multi-targeting .NET 8 and .NET 10, with several breaking changes and new configuration options for distributed caches.

**Breaking changes:**

- **.NET Standard 2.0 support dropped.** Packages now target `net8.0` and `net10.0`; projects on .NET Framework, .NET Standard 2.0 or .NET 6.0/7.0 must stay on v2.x
- `MessagePack` moves from 2.5.x to 3.1.7 (via `Foundatio` 13.0.2). If you reference `MessagePack` directly, NuGet unifies it to 3.x for your project too
- Options classes now inherit from a shared `DistributedCacheOptionsBase` instead of implementing `IOptions<T>`
- `AddMessagePackDistributedCache()` renamed to `AddSerializedDistributedCache()` (old method kept as `[Obsolete]`)
- Registration now throws immediately if no `IDistributedCache` provider is registered first
- Redis hybrid cache registration now takes a `RedisHybridCacheOptions` parameter instead of inline setup
- All extension methods now return `IServiceCollection` for fluent chaining

**New features:**

- `SchemaVersion` and `EnvironmentPrefix` options for cache invalidation and multi-environment isolation
- `[CacheKey]` attribute on enum members for refactor-safe distributed cache keys
- Configurable key encoding and key length validation (both enabled by default for distributed caches)
- Redis hybrid cache now exposes `RedisHybridCacheOptions` with compression control and shared multiplexer support

**Security:**

- `Foundatio` 13.0.2 brings `MessagePack` 3.1.7, fixing GHSA-hv8m-jj95-wg3x, GHSA-vh6j-jc39-fggf and GHSA-382j-8mxh-c7x2 (High) plus nine lower-severity advisories that affected the 3.1.4 pinned by `Foundatio` 12.x

See `docs/MIGRATION_GUIDE_V3.md` for the full migration walkthrough. Existing v2.x cache entries remain readable with default settings.

## 2.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/Neolution.Extensions.Caching.InMemory/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@neolution-ch/neolution.extensions.caching.inmemory",
"version": "2.1.3",
"version": "3.0.0-beta.0",
"private": true
}
29 changes: 29 additions & 0 deletions src/Neolution.Extensions.Caching.RedisHybrid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @neolution-ch/neolution.extensions.caching.redishybrid

## 3.0.0-beta.0

### Major Changes

- [#8](https://github.com/neolution-ch/Neolution.Extensions.Caching/pull/8) [`14ebc38`](https://github.com/neolution-ch/Neolution.Extensions.Caching/commit/14ebc387e745bc1ee6c6aa40c1945c90ad870946) Thanks [@neoscie](https://github.com/neoscie)! - Major version bump multi-targeting .NET 8 and .NET 10, with several breaking changes and new configuration options for distributed caches.

**Breaking changes:**

- **.NET Standard 2.0 support dropped.** Packages now target `net8.0` and `net10.0`; projects on .NET Framework, .NET Standard 2.0 or .NET 6.0/7.0 must stay on v2.x
- `MessagePack` moves from 2.5.x to 3.1.7 (via `Foundatio` 13.0.2). If you reference `MessagePack` directly, NuGet unifies it to 3.x for your project too
- Options classes now inherit from a shared `DistributedCacheOptionsBase` instead of implementing `IOptions<T>`
- `AddMessagePackDistributedCache()` renamed to `AddSerializedDistributedCache()` (old method kept as `[Obsolete]`)
- Registration now throws immediately if no `IDistributedCache` provider is registered first
- Redis hybrid cache registration now takes a `RedisHybridCacheOptions` parameter instead of inline setup
- All extension methods now return `IServiceCollection` for fluent chaining

**New features:**

- `SchemaVersion` and `EnvironmentPrefix` options for cache invalidation and multi-environment isolation
- `[CacheKey]` attribute on enum members for refactor-safe distributed cache keys
- Configurable key encoding and key length validation (both enabled by default for distributed caches)
- Redis hybrid cache now exposes `RedisHybridCacheOptions` with compression control and shared multiplexer support

**Security:**

- `Foundatio` 13.0.2 brings `MessagePack` 3.1.7, fixing GHSA-hv8m-jj95-wg3x, GHSA-vh6j-jc39-fggf and GHSA-382j-8mxh-c7x2 (High) plus nine lower-severity advisories that affected the 3.1.4 pinned by `Foundatio` 12.x

See `docs/MIGRATION_GUIDE_V3.md` for the full migration walkthrough. Existing v2.x cache entries remain readable with default settings.

## 2.1.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion src/Neolution.Extensions.Caching.RedisHybrid/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@neolution-ch/neolution.extensions.caching.redishybrid",
"version": "2.1.3",
"version": "3.0.0-beta.0",
"private": true
}
Loading