From 84f2ec6d5b029aa3d8b057406090a507c6f73d67 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delaporte?= <12201973+fredericdelaporte@users.noreply.github.com> Date: Sun, 24 Mar 2019 21:22:40 +0100 Subject: [PATCH 1/2] Release 5.2.5 --- appveyor.yml | 2 +- build-common/NHibernate.props | 2 +- build-common/common.xml | 4 +-- releasenotes.txt | 54 +++++++++++++++++++++++++++++++++++ 4 files changed, 58 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 70765f4d445..bd4cb525ae6 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,4 +1,4 @@ -version: 5.2.4.{build} +version: 5.2.5.{build} image: Visual Studio 2017 environment: matrix: diff --git a/build-common/NHibernate.props b/build-common/NHibernate.props index 9e59c2114bf..4ea7acbd671 100644 --- a/build-common/NHibernate.props +++ b/build-common/NHibernate.props @@ -3,7 +3,7 @@ 5 2 - 4 + 5 $(VersionMajor).$(VersionMinor).$(VersionPatch) diff --git a/build-common/common.xml b/build-common/common.xml index e4639447d98..26e5302a66d 100644 --- a/build-common/common.xml +++ b/build-common/common.xml @@ -13,8 +13,8 @@ - - + + diff --git a/releasenotes.txt b/releasenotes.txt index 4db8bb7aa9b..127d99e405f 100644 --- a/releasenotes.txt +++ b/releasenotes.txt @@ -1,3 +1,21 @@ +Build 5.2.5 +============================= + +Release notes - NHibernate - Version 5.2.5 + +5 issues were resolved in this release. + +** Bug + + * #2075 Missing cast when comparing a guid and string columns in SAP SQL Anywhere + * #2046 Fix nullable Guid ToString is not translated correctly on some dialects + * #2043 System.Reflection.TargetException when an interface is used as class mapping proxy definition + * #2040 Incorrect SQL for cast inside a linq join (MS SQL) + +** Task + + * #2086 Release 5.2.5 + Build 5.2.4 ============================= @@ -324,6 +342,24 @@ Release notes - NHibernate - Version 5.2.0 As part of releasing 5.2.0, a misnamed setting in 5.0.0 release notes has been fixed: transaction.use_connection_on_system_events correct name is transaction.use_connection_on_system_prepare +Build 5.1.5 +============================= + +Release notes - NHibernate - Version 5.1.5 + + ##### Possible Breaking Changes ##### + * Using DML on an entity collection was applying the changes without + filtering according to the entity. It will now throw a + NotSupportedException. + +** Bug + + * #2043 System.Reflection.TargetException when an interface is used as class mapping proxy definition + * #2020 Throw for DML on filter + +** Task + * #2074 Release 5.1.5 + Build 5.1.4 ============================= @@ -569,6 +605,24 @@ Release notes - NHibernate - Version 5.1.0 As part of releasing 5.1.0, a missing 5.0.0 possible breaking change has been added about inequality semantic in LINQ queries. See 5.0.0 possible breaking changes. +Build 5.0.7 +============================= + +Release notes - NHibernate - Version 5.0.7 + + ##### Possible Breaking Changes ##### + * Using DML on an entity collection was applying the changes without + filtering according to the entity. It will now throw a + NotSupportedException. + +** Bug + + * #2043 System.Reflection.TargetException when an interface is used as class mapping proxy definition + * #2020 Throw for DML on filter + +** Task + * #2073 Release 5.0.7 + Build 5.0.6 ============================= From b210bfef11ad51605d713f5ac3317bc403e860ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delaporte?= <12201973+fredericdelaporte@users.noreply.github.com> Date: Mon, 25 Mar 2019 00:16:35 +0100 Subject: [PATCH 2/2] fixup! Release 5.2.5 Adjust a title --- releasenotes.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/releasenotes.txt b/releasenotes.txt index 127d99e405f..35275bdd3b3 100644 --- a/releasenotes.txt +++ b/releasenotes.txt @@ -10,7 +10,7 @@ Release notes - NHibernate - Version 5.2.5 * #2075 Missing cast when comparing a guid and string columns in SAP SQL Anywhere * #2046 Fix nullable Guid ToString is not translated correctly on some dialects * #2043 System.Reflection.TargetException when an interface is used as class mapping proxy definition - * #2040 Incorrect SQL for cast inside a linq join (MS SQL) + * #2040 Incorrect SQL when comparing a guid and string column in Sql Server ** Task