Skip to content

Commit 4e7fbc7

Browse files
Release 5.0.2 (#1457)
* Release 5.0.2 * Add a missing breaking change (reported with #1438).
1 parent b40526d commit 4e7fbc7

File tree

4 files changed

+28
-7
lines changed

4 files changed

+28
-7
lines changed

GitReleaseManager.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,13 @@ issue-labels-include:
66
- "t: Improvement"
77
- "t: Task"
88
issue-labels-exclude:
9+
- "r: Duplicate"
10+
- "r: External Issue"
11+
- "r: Not an Issue"
12+
- "r: Obsolete"
913
- "r: Rejected"
1014
- "r: Replaced"
15+
- "t: Fix"
1116
issue-labels-alias:
1217
- name: "t: Bug"
1318
header: Bug

build-common/NHibernate.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<VersionMajor Condition="'$(VersionMajor)' == ''">5</VersionMajor>
44
<VersionMinor Condition="'$(VersionMinor)' == ''">0</VersionMinor>
5-
<VersionPatch Condition="'$(VersionPatch)' == ''">1</VersionPatch>
5+
<VersionPatch Condition="'$(VersionPatch)' == ''">2</VersionPatch>
66
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
77

88
<VersionPrefix>$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix>

build-common/common.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030

3131
<!-- This is used only for build folder -->
3232
<!-- TODO: Either remove or refactor to use NHibernate.props -->
33-
<property name="project.version" value="5.0.1" overwrite="false" />
34-
<property name="project.version.numeric" value="5.0.1" overwrite="false" />
33+
<property name="project.version" value="5.0.2" overwrite="false" />
34+
<property name="project.version.numeric" value="5.0.2" overwrite="false" />
3535

3636
<!-- properties used to connect to database for testing -->
3737
<include buildfile="nhibernate-properties.xml" />

releasenotes.txt

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,20 @@
1-
Build 5.0.1
1+
Build 5.0.2
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.0.2
5+
6+
** Bug
7+
* #1456 NH-4052 - Add missing serializable implementation
8+
* #1455 Reduces check session and set context id redundant calls
9+
* #1453 Eliminate unnecessary AsyncLocal allocation if SessionId isn't changed
10+
11+
** Task
12+
* #1457 Release 5.0.2
13+
14+
As part of releasing 5.0.2, a missing 5.0.0 possible breaking change has been added about Dialects requiring now
15+
to be configured. See 5.0.0 possible breaking changes.
16+
17+
Build 5.0.1
218
=============================
319

420
Release notes - NHibernate - Version 5.0.1
@@ -85,6 +101,9 @@ Build 5.0.0
85101
the dialect. They resolve to 4000 length string and (28, 10) precision/scale decimals by default, and are
86102
trimmed down according to dialect. Those defaults can be overridden with query.default_cast_length,
87103
query.default_cast_precision and query.default_cast_scale settings.
104+
* Dialects are now configurable. If you instantiate a dialect directly, make sure you call its Configure
105+
method, with as argument the properties of a NHibernate Configuration object. You may use instead
106+
Dialect.GetDialect methods, which configure the dialect before returning it.
88107
* Transaction scopes handling has undergone a major rework. See NH-4011 for full details.
89108
** More transaction promotion to distributed may occur if you use the "flush on commit" feature with
90109
transaction scopes. Explicitly flush your session instead. Ensure it does not occur by disabling
@@ -156,9 +175,6 @@ Release notes - NHibernate - Version 5.0.0
156175
* [NH-3957] - Second level query cache may yields wrong cache entry
157176
* [NH-4001] - Remove ThreadSafeDictionary
158177

159-
160-
161-
162178
** Bug
163179
* [NH-926] - Identity insert fails with SQL Ce dialect and aggressive connection release mode.
164180
* [NH-1752] - NHibernate Date type converts to NULL

0 commit comments

Comments
 (0)