Skip to content

Commit

Permalink
Release 5.3.11 (#3019)
Browse files Browse the repository at this point in the history
And make UpdateTimestampsCache newly added ctor internal to allow safe removal in master

fix #3019

Co-authored-by: Roman Artiukhin <bahusdrive@gmail.com>
  • Loading branch information
fredericDelaporte and bahusoid committed Feb 20, 2022
1 parent 545d05a commit 211891f
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build-common/NHibernate.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<NhVersion Condition="'$(NhVersion)' == ''" >5.3</NhVersion>
<VersionPatch Condition="'$(VersionPatch)' == ''">11</VersionPatch>
<!-- Clear VersionSuffix for making release and set it to dev for making development builds -->
<VersionSuffix Condition="'$(VersionSuffix)' == ''">dev</VersionSuffix>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>

<VersionPrefix Condition="'$(VersionPrefix)' == ''">$(NhVersion).$(VersionPatch)</VersionPrefix>
<VersionSuffix Condition="'$(VersionSuffix)' != '' AND '$(BuildNumber)' != ''">$(VersionSuffix).$(BuildNumber)</VersionSuffix>
Expand Down
27 changes: 26 additions & 1 deletion releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
Build 5.3.10
Build 5.3.11
=============================

Release notes - NHibernate - Version 5.3.11

12 issues were resolved in this release.

** Bug

* #3005 LINQ: Casting from object to TimeSpan throws
* #2988 Query issues when using not-found='ignore' in entity mapping
* #2965 Fix possible issue with logging for Linq Readonly tests
* #2963 Time is incompatible with bigint for TimeAsTimeSpanType
* #2937 NRE in linq processing of custom components
* #2928 Session.Refresh when entity is IFieldInterceptorAccessor throws a MappingException
* #2904 SQL query result not retrieved from second level cache
* #2876 Schema validation not working with NpgSql v5
* #2862 NHibernate AsyncReaderWriterLock stalls under load
* #2727 The session.Load(obj, id) overload can't handle proxies

** Task

* #3019 Release 5.3.11
* #2984 Bump AsyncGenerator to 0.18.3 for 5.3 branch with fix for .net 6

Build 5.3.10
=============================

Release notes - NHibernate - Version 5.3.10
Expand Down
2 changes: 1 addition & 1 deletion src/NHibernate/Cache/UpdateTimestampsCache.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public UpdateTimestampsCache(Settings settings, IDictionary<string, string> prop
/// </summary>
/// <param name="cache">The <see cref="CacheBase" /> to use.</param>
/// <param name="locker">Locker to use.</param>
public UpdateTimestampsCache(CacheBase cache, ICacheLock locker)
internal UpdateTimestampsCache(CacheBase cache, ICacheLock locker)
{
log.Info("starting update timestamps cache at region: {0}", cache.RegionName);
_updateTimestamps = cache;
Expand Down

0 comments on commit 211891f

Please sign in to comment.