Skip to content

Commit a129e75

Browse files
Release 5.3.4 (#2587)
And document a missing breaking change. Fixes #2578
1 parent b27b7f7 commit a129e75

File tree

2 files changed

+26
-2
lines changed

2 files changed

+26
-2
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)' == ''">4</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: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,26 @@
1-
Build 5.3.3
1+
Build 5.3.4
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.3.4
5+
6+
6 issues were resolved in this release.
7+
8+
** Bug
9+
10+
* #2580 InvalidWithClauseException when join polymorphic entity
11+
* #2559 Regression in caching linq query with ThenFetchMany statement.
12+
* #2549 ApplyFilter does not work on join statements in LINQ
13+
* #2537 Unable to cast "System.Linq.Expressions.UnaryExpression" to "System.Linq.Expressions.LambdaExpression".
14+
15+
** Task
16+
17+
* #2578 Add missing possible breaking changes for #2365
18+
* #2587 Release 5.3.4
19+
20+
As part of releasing 5.3.4, one missing 5.3.0 possible breaking change has been added, about
21+
custom method generators for Linq. See 5.3.0 possible breaking changes.
22+
23+
Build 5.3.3
224
=============================
325

426
Release notes - NHibernate - Version 5.3.3
@@ -135,6 +157,8 @@ Release notes - NHibernate - Version 5.3.0
135157
already exists in the set will now return false.
136158
* Calling `ISet<>.Add` or `ICollection<>.Add` on an uninitialized set mapped as `lazy="true"` with a
137159
transient element that does not override `Equals` method will not initialize the collection.
160+
* Linq custom generators deriving from `BaseHqlGeneratorForMethod` should override the
161+
`TryGetCollectionParameter` method if they have to support parameter lists.
138162

139163
** Bug
140164

0 commit comments

Comments
 (0)