Skip to content

Commit

Permalink
Release 5.1.2 (#1664)
Browse files Browse the repository at this point in the history
And add a missing 5.0.0 possible breaking change, see #1663.
  • Loading branch information
fredericDelaporte authored May 9, 2018
1 parent f934150 commit d613336
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 6 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 5.1.1.{build}
version: 5.1.2.{build}
image: Visual Studio 2017
environment:
matrix:
Expand Down Expand Up @@ -63,4 +63,4 @@ on_finish:
$wc = New-Object 'System.Net.WebClient'
Get-Item '*-TestResult.xml' | ForEach-Object {
$wc.UploadFile("https://ci.appveyor.com/api/testresults/nunit3/$($env:APPVEYOR_JOB_ID)", $_)
}
}
2 changes: 1 addition & 1 deletion build-common/NHibernate.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
<VersionMinor Condition="'$(VersionMinor)' == ''">1</VersionMinor>
<VersionPatch Condition="'$(VersionPatch)' == ''">1</VersionPatch>
<VersionPatch Condition="'$(VersionPatch)' == ''">2</VersionPatch>
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>

<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>
Expand Down
4 changes: 2 additions & 2 deletions build-common/common.xml
Original file line number Diff line number Diff line change
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.1.1" overwrite="false" />
<property name="project.version.numeric" value="5.1.1" overwrite="false" />
<property name="project.version" value="5.1.2" overwrite="false" />
<property name="project.version.numeric" value="5.1.2" overwrite="false" />

<!-- properties used to connect to database for testing -->
<include buildfile="nhibernate-properties.xml" />
Expand Down
51 changes: 50 additions & 1 deletion releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,29 @@
Build 5.1.1
Build 5.1.2
=============================

Release notes - NHibernate - Version 5.1.2

** Bug

* #1680 RowCount not working with JoinEntityAlias
* #1672 Generated async methods do not correctly propagate OperationCanceledException
* #1667 Collection initializing with zero rows after update to NH5
* #1660 Wrong CopyTo implementation
* #1650 Cannot use cache.use_sliding_expiration in hibernate.cfg.xml
* #1585 Hashset unsupported by SetParameterList
* #1355 NH-3928 - Random invalid SQL generated when using bitwise operators

** Task

* #1668 Merge 5.0.5 into 5.1.x
* #1664 Release 5.1.2
* #1659 Merge 5.0.4 into 5.1.x

As part of releasing 5.1.2, a missing 5.0.0 possible breaking change has been added about future queries with data
providers not actually supporting them. See 5.0.0 possible breaking changes.


Build 5.1.1
=============================

Release notes - NHibernate - Version 5.1.1
Expand Down Expand Up @@ -192,6 +217,18 @@ 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.6
=============================

Release notes - NHibernate - Version 5.0.6

** Bug
* #1672 Generated async methods do not correctly propagate OperationCanceledException
* #1355 NH-3928 - Random invalid SQL generated when using bitwise operators

** Task
* #1686 Release 5.0.6

Build 5.0.5
=============================

Expand Down Expand Up @@ -319,6 +356,10 @@ Build 5.0.0
the dialect. They resolve to 4000 length string and (28, 10) precision/scale decimals by default, and are
trimmed down according to dialect. Those defaults can be overridden with query.default_cast_length,
query.default_cast_precision and query.default_cast_scale settings.
* Future queries with data provider not actually supporting them (not supporting mutliple queries in a single
SQL command) are no more immediately executed at the .Future call. They are executed only when directly
enumerated or when their IFutureEnumerable.GetEnumerable method is called. (This aligns them with the behavior
of FutureValue.)
* Dialects are now configurable. If you instantiate a dialect directly, make sure you call its Configure
method, with as argument the properties of a NHibernate Configuration object. You may use instead
Dialect.GetDialect methods, which configure the dialect before returning it.
Expand Down Expand Up @@ -547,6 +588,14 @@ Release notes - NHibernate - Version 5.0.0
* [NH-4011] - Fix transaction scopes handling


Build 4.1.2.GA
=============================

Release notes - NHibernate - Version 4.1.2.GA

** Bug
* #1355 NH-3928 - Random invalid SQL generated when using bitwise operators

Build 4.1.1.GA
=============================

Expand Down

0 comments on commit d613336

Please sign in to comment.