Skip to content

Release 5.3.6 #2676

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Feb 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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