Skip to content

Commit 211891f

Browse files
Release 5.3.11 (#3019)
And make UpdateTimestampsCache newly added ctor internal to allow safe removal in master fix #3019 Co-authored-by: Roman Artiukhin <[email protected]>
1 parent 545d05a commit 211891f

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

build-common/NHibernate.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<NhVersion Condition="'$(NhVersion)' == ''" >5.3</NhVersion>
66
<VersionPatch Condition="'$(VersionPatch)' == ''">11</VersionPatch>
77
<!-- Clear VersionSuffix for making release and set it to dev for making development builds -->
8-
<VersionSuffix Condition="'$(VersionSuffix)' == ''">dev</VersionSuffix>
8+
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
99

1010
<VersionPrefix Condition="'$(VersionPrefix)' == ''">$(NhVersion).$(VersionPatch)</VersionPrefix>
1111
<VersionSuffix Condition="'$(VersionSuffix)' != '' AND '$(BuildNumber)' != ''">$(VersionSuffix).$(BuildNumber)</VersionSuffix>

releasenotes.txt

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,29 @@
1-
Build 5.3.10
1+
Build 5.3.11
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.3.11
5+
6+
12 issues were resolved in this release.
7+
8+
** Bug
9+
10+
* #3005 LINQ: Casting from object to TimeSpan throws
11+
* #2988 Query issues when using not-found='ignore' in entity mapping
12+
* #2965 Fix possible issue with logging for Linq Readonly tests
13+
* #2963 Time is incompatible with bigint for TimeAsTimeSpanType
14+
* #2937 NRE in linq processing of custom components
15+
* #2928 Session.Refresh when entity is IFieldInterceptorAccessor throws a MappingException
16+
* #2904 SQL query result not retrieved from second level cache
17+
* #2876 Schema validation not working with NpgSql v5
18+
* #2862 NHibernate AsyncReaderWriterLock stalls under load
19+
* #2727 The session.Load(obj, id) overload can't handle proxies
20+
21+
** Task
22+
23+
* #3019 Release 5.3.11
24+
* #2984 Bump AsyncGenerator to 0.18.3 for 5.3 branch with fix for .net 6
25+
26+
Build 5.3.10
227
=============================
328

429
Release notes - NHibernate - Version 5.3.10

src/NHibernate/Cache/UpdateTimestampsCache.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public UpdateTimestampsCache(Settings settings, IDictionary<string, string> prop
5050
/// </summary>
5151
/// <param name="cache">The <see cref="CacheBase" /> to use.</param>
5252
/// <param name="locker">Locker to use.</param>
53-
public UpdateTimestampsCache(CacheBase cache, ICacheLock locker)
53+
internal UpdateTimestampsCache(CacheBase cache, ICacheLock locker)
5454
{
5555
log.Info("starting update timestamps cache at region: {0}", cache.RegionName);
5656
_updateTimestamps = cache;

0 commit comments

Comments
 (0)