Skip to content

Commit

Permalink
Release 5.2.5 (#2086)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericDelaporte committed Mar 31, 2019
1 parent 034552d commit c628337
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 4 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
@@ -1,4 +1,4 @@
version: 5.2.4.{build}
version: 5.2.5.{build}
image: Visual Studio 2017
environment:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion build-common/NHibernate.props
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">2</VersionMinor>
<VersionPatch Condition="'$(VersionPatch)' == ''">4</VersionPatch>
<VersionPatch Condition="'$(VersionPatch)' == ''">5</VersionPatch>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>

<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
Expand Down
4 changes: 2 additions & 2 deletions build-common/common.xml
Expand Up @@ -13,8 +13,8 @@

<!-- This is used only for build folder -->
<!-- TODO: Either remove or refactor to use NHibernate.props -->
<property name="project.version" value="5.2.4" overwrite="false" />
<property name="project.version.numeric" value="5.2.4" overwrite="false" />
<property name="project.version" value="5.2.5" overwrite="false" />
<property name="project.version.numeric" value="5.2.5" overwrite="false" />

<!-- properties used to connect to database for testing -->
<include buildfile="nhibernate-properties.xml" />
Expand Down
54 changes: 54 additions & 0 deletions 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 when comparing a guid and string column in Sql Server

** Task

* #2086 Release 5.2.5

Build 5.2.4
=============================

Expand Down Expand Up @@ -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
=============================

Expand Down Expand Up @@ -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
=============================

Expand Down

0 comments on commit c628337

Please sign in to comment.