Skip to content

Commit 83cfb25

Browse files
Release 5.6
1 parent 9eaf4d5 commit 83cfb25

File tree

12 files changed

+51
-6
lines changed

12 files changed

+51
-6
lines changed

CoreDistributedCache/NHibernate.Caches.CoreDistributedCache.Redis/NHibernate.Caches.CoreDistributedCache.Redis.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,11 @@
1010
<SignAssembly>True</SignAssembly>
1111
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
13-
<PackageReleaseNotes>* Improvement
13+
<PackageReleaseNotes>## Possible breaking change
14+
* The obsolete Microsoft.Extensions.Caching.Redis dependency has been changed for Microsoft.Extensions.Caching.StackExchangeRedis
15+
16+
* Improvement
17+
* #70 - Use non deprecated Redis provider
1418
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1519
</PropertyGroup>
1620
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">

CoreDistributedCache/NHibernate.Caches.CoreDistributedCache/NHibernate.Caches.CoreDistributedCache.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ This provider is not bound to a specific implementation and require a cache fact
1111
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1313
<PackageReleaseNotes>* Improvement
14+
* #68 - Add static region configuration
1415
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1516
</PropertyGroup>
1617
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">

CoreMemoryCache/NHibernate.Caches.CoreMemoryCache/NHibernate.Caches.CoreMemoryCache.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1313
<PackageReleaseNotes>* Improvement
14+
* #68 - Add static region configuration
1415
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1516
</PropertyGroup>
1617
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">

NHibernate.Caches.Common/NHibernate.Caches.Common.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@
88
<SignAssembly>True</SignAssembly>
99
<AssemblyOriginatorKeyFile>..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
11+
<PackageReleaseNotes>* Improvement
12+
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1113
</PropertyGroup>
1214
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">
1315
<DefineConstants>NETFX;$(DefineConstants)</DefineConstants>
@@ -18,6 +20,7 @@
1820
</ItemGroup>
1921
<ItemGroup>
2022
<PackageReference Include="NHibernate" Version="5.2.0" />
23+
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0-beta2-18618-05" PrivateAssets="all" />
2124
</ItemGroup>
2225
<ItemGroup>
2326
<Content Include="../readme.md">

NHibernate.Caches.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<Project>
22
<PropertyGroup>
33
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
4-
<VersionMinor Condition="'$(VersionMinor)' == ''">5</VersionMinor>
5-
<VersionPatch Condition="'$(VersionPatch)' == ''">1</VersionPatch>
4+
<VersionMinor Condition="'$(VersionMinor)' == ''">6</VersionMinor>
5+
<VersionPatch Condition="'$(VersionPatch)' == ''">0</VersionPatch>
66
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
77

88
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>

RtMemoryCache/NHibernate.Caches.RtMemoryCache/NHibernate.Caches.RtMemoryCache.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<PackageReleaseNotes>* Improvement
12+
* #68 - Add static region configuration
1213
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1314
</PropertyGroup>
1415
<ItemGroup>

StackExchangeRedis/NHibernate.Caches.StackExchangeRedis/NHibernate.Caches.StackExchangeRedis.csproj

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,17 @@
1010
<SignAssembly>True</SignAssembly>
1111
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1212
<GenerateDocumentationFile>true</GenerateDocumentationFile>
13-
<PackageReleaseNotes>* Improvement
13+
<PackageReleaseNotes>* Bug
14+
* #66 - Issues with custom Regions with RedisCacheProvider
15+
* #62 - StackExchangeRedis fails with "too many results to unpack" with 8000 items
16+
17+
* New feature
18+
* #69 - "Third Level Cache" for Redis
19+
20+
* Improvement
21+
* #71 - Enable batching for StackExchangeRedis by default
22+
* #68 - Add static region configuration
23+
* #64 - Improve StackExchangeRedis LockMany script for DefaultRegionStrategy
1424
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1525
</PropertyGroup>
1626
<PropertyGroup Condition="'$(TargetFramework)' == 'net461'">

SysCache/NHibernate.Caches.SysCache/NHibernate.Caches.SysCache.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<PackageReleaseNotes>* Improvement
12+
* #68 - Add static region configuration
1213
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1314
</PropertyGroup>
1415
<ItemGroup>

SysCache2/NHibernate.Caches.SysCache2/NHibernate.Caches.SysCache2.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<AssemblyOriginatorKeyFile>..\..\NHibernate.Caches.snk</AssemblyOriginatorKeyFile>
1010
<GenerateDocumentationFile>true</GenerateDocumentationFile>
1111
<PackageReleaseNotes>* Improvement
12+
* #68 - Add static region configuration
1213
* #60 - Update package format for symbols, license and SourceLink</PackageReleaseNotes>
1314
</PropertyGroup>
1415
<ItemGroup>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 5.5.1.{build}
1+
version: 5.6.0.{build}
22
image: Visual Studio 2017
33
configuration:
44
- Debug

0 commit comments

Comments
 (0)