Skip to content

Commit

Permalink
Release 5.3.6 (#2676)
Browse files Browse the repository at this point in the history
And document a missing breaking change for Merge, see #2632
  • Loading branch information
fredericDelaporte committed Feb 21, 2021
1 parent 7a77430 commit 66629c2
Show file tree
Hide file tree
Showing 2 changed files with 34 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)' == ''">6</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
35 changes: 33 additions & 2 deletions releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,35 @@
Build 5.3.5
Build 5.3.6
=============================

Release notes - NHibernate - Version 5.3.6

12 issues were resolved in this release.

** Bug

* #2659 IQueryable<T> filter by subquery gives "Item with Same Key has already been added"
* #2649 Invalid parameter conversion for enums mapped in sub-classes
* #2646 Invalid generated sql with linq any in select and composite keys
* #2642 Linq expression parser removes required Convert nodes
* #2631 IndexOutOfRange exception with One-to-One mapping
* #2627 Null reference on Merge for detached unsaved entity
* #2626 WHERE IN SELECT uses wrong column
* #2608 Delay entity insert may fail with Merge
* #2544 Recognition error occurs using System.Linq.Queryable.Contains

** Improvement

* #2677 Missing ConfigureAwait in FutureEnumerable.GetEnumerableAsync
* #2656 Make sure dbcommand is disposed

** Task

* #2676 Release 5.3.6

As part of releasing 5.3.6, one missing 5.3.0 possible breaking change has been added, about
Merge no more triggering immediate generation of identifier. See 5.3.0 possible breaking changes.

Build 5.3.5
=============================

Release notes - NHibernate - Version 5.3.5
Expand Down Expand Up @@ -121,7 +152,7 @@ Release notes - NHibernate - Version 5.3.0
* `update` and `delete` statements will now take into account any enabled filter on the entities
they update or delete, while previously they were ignoring them. (`insert` statements will also take
them into account, but previously they were failing instead of ignoring enabled filters.)
* ISession.Persist will no more trigger immediate generation of identifier.
* ISession.Persist and ISession.Merge will no more trigger immediate generation of identifier.
* Bags will no more be loaded with "null" entities, they will be filtered out.
* Setting the value of an uninitialized lazy property will no more trigger loading of all the lazy
properties of the entity.
Expand Down

0 comments on commit 66629c2

Please sign in to comment.