Skip to content

Release 5.0.2 #1457

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
Nov 29, 2017
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
5 changes: 5 additions & 0 deletions GitReleaseManager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,13 @@ issue-labels-include:
- "t: Improvement"
- "t: Task"
issue-labels-exclude:
- "r: Duplicate"
- "r: External Issue"
- "r: Not an Issue"
- "r: Obsolete"
- "r: Rejected"
- "r: Replaced"
- "t: Fix"
issue-labels-alias:
- name: "t: Bug"
header: Bug
Expand Down
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)' == ''">0</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 @@ -30,8 +30,8 @@

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

<!-- properties used to connect to database for testing -->
<include buildfile="nhibernate-properties.xml" />
Expand Down
24 changes: 20 additions & 4 deletions releasenotes.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
Build 5.0.1
Build 5.0.2
=============================

Release notes - NHibernate - Version 5.0.2

** Bug
* #1456 NH-4052 - Add missing serializable implementation
* #1455 Reduces check session and set context id redundant calls
* #1453 Eliminate unnecessary AsyncLocal allocation if SessionId isn't changed

** Task
* #1457 Release 5.0.2

As part of releasing 5.0.2, a missing 5.0.0 possible breaking change has been added about Dialects requiring now
to be configured. See 5.0.0 possible breaking changes.

Build 5.0.1
=============================

Release notes - NHibernate - Version 5.0.1
Expand Down Expand Up @@ -85,6 +101,9 @@ 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.
* 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.
* Transaction scopes handling has undergone a major rework. See NH-4011 for full details.
** More transaction promotion to distributed may occur if you use the "flush on commit" feature with
transaction scopes. Explicitly flush your session instead. Ensure it does not occur by disabling
Expand Down Expand Up @@ -156,9 +175,6 @@ Release notes - NHibernate - Version 5.0.0
* [NH-3957] - Second level query cache may yields wrong cache entry
* [NH-4001] - Remove ThreadSafeDictionary




** Bug
* [NH-926] - Identity insert fails with SQL Ce dialect and aggressive connection release mode.
* [NH-1752] - NHibernate Date type converts to NULL
Expand Down