Skip to content

Commit

Permalink
v0.15.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jodydonetti committed Oct 26, 2022
1 parent 22993c4 commit e51fae3
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache.Backplane.Memory</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>FusionCache in memory backplane, used for testing</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache.Backplane.StackExchangeRedis</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>FusionCache backplane for Redis based on the StackExchange.Redis library</Description>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache.Chaos</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>Chaos-related utilities and implementations of various componenets (like a distributed cache or a backplane), useful for things like testing dependent components' behaviour in a controlled failing environment.</Description>
<PackageTags>chaos;caching;cache;multi-level;multilevel;fusion;fusioncache;fusion-cache;performance;async;ziggy</PackageTags>
<RootNamespace>ZiggyCreatures.Caching.Fusion.Chaos</RootNamespace>
<DocumentationFile>ZiggyCreatures.FusionCache.Chaos.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Initial commit (moved files here from the main project)</PackageReleaseNotes>
<PackageReleaseNotes>Added ChaosSerializer, to allow better testing of various error conditions while de/serializing</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache.Serialization.NeueccMessagePack</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>FusionCache serializer based on Neuecc's MessagePack serializer</Description>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>FusionCache serializer based on Newtonsoft Json.NET</Description>
<PackageTags>caching;cache;multi-level;multilevel;fusion;fusioncache;fusion-cache;performance;async;ziggy;cache-stampede</PackageTags>
<PackageTags>json;caching;cache;multi-level;multilevel;fusion;fusioncache;fusion-cache;performance;async;ziggy;cache-stampede</PackageTags>
<RootNamespace>ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson</RootNamespace>
<DocumentationFile>ZiggyCreatures.FusionCache.Serialization.NewtonsoftJson.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache.Serialization.SystemTextJson</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>FusionCache serializer based on System.Text.Json</Description>
<PackageTags>caching;cache;multi-level;multilevel;fusion;fusioncache;fusion-cache;performance;async;ziggy</PackageTags>
<PackageTags>json;caching;cache;multi-level;multilevel;fusion;fusioncache;fusion-cache;performance;async;ziggy</PackageTags>
<RootNamespace>ZiggyCreatures.FusionCache.Serialization.SystemTextJson</RootNamespace>
<DocumentationFile>ZiggyCreatures.FusionCache.Serialization.SystemTextJson.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down
11 changes: 4 additions & 7 deletions src/ZiggyCreatures.FusionCache/ZiggyCreatures.FusionCache.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>netstandard2.0</TargetFramework>
<LangVersion>9.0</LangVersion>
<Nullable>enable</Nullable>
<Version>0.14.0</Version>
<Version>0.15.0</Version>
<PackageId>ZiggyCreatures.FusionCache</PackageId>
<PackageIcon>logo-128x128.png</PackageIcon>
<Description>FusionCache is an easy to use, high performance and robust cache with an optional distributed 2nd layer and some advanced features.</Description>
Expand All @@ -13,12 +13,9 @@
<DocumentationFile>ZiggyCreatures.FusionCache.xml</DocumentationFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>
- experimental: added a backplane auto-recovery feature (must be manually enabled, for now)
- the chaos-related utilities and components have been moved to a separate project (ZiggyCreatures.FusionCache.Chaos)
- added links to online documentation in the xml docs for most options
- added some nullability analysis attributes
- fixed some typos in the xml docs
- removed all members marked as [Obsolete] from a very long time
- added a ReThrowSerializationExceptions option (enabled by default) to have more control on exceptions handling during de/serialization
- better flow for de/serialization while talking with the distributed cache
- better xml docs
</PackageReleaseNotes>
</PropertyGroup>

Expand Down

0 comments on commit e51fae3

Please sign in to comment.