File tree 4 files changed +23
-4
lines changed
4 files changed +23
-4
lines changed Original file line number Diff line number Diff line change 1
- version : 5.2.3 .{build}
1
+ version : 5.2.4 .{build}
2
2
image : Visual Studio 2017
3
3
environment :
4
4
matrix :
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<VersionMajor Condition =" '$(VersionMajor)' == ''" >5</VersionMajor >
5
5
<VersionMinor Condition =" '$(VersionMinor)' == ''" >2</VersionMinor >
6
- <VersionPatch Condition =" '$(VersionPatch)' == ''" >3 </VersionPatch >
6
+ <VersionPatch Condition =" '$(VersionPatch)' == ''" >4 </VersionPatch >
7
7
<VersionSuffix Condition =" '$(VersionSuffix)' == ''" ></VersionSuffix >
8
8
9
9
<VersionPrefix >$(VersionMajor).$(VersionMinor).$(VersionPatch)</VersionPrefix >
Original file line number Diff line number Diff line change 13
13
14
14
<!-- This is used only for build folder -->
15
15
<!-- TODO: Either remove or refactor to use NHibernate.props -->
16
- <property name =" project.version" value =" 5.2.3 " overwrite =" false" />
17
- <property name =" project.version.numeric" value =" 5.2.3 " overwrite =" false" />
16
+ <property name =" project.version" value =" 5.2.4 " overwrite =" false" />
17
+ <property name =" project.version.numeric" value =" 5.2.4 " overwrite =" false" />
18
18
19
19
<!-- properties used to connect to database for testing -->
20
20
<include buildfile =" nhibernate-properties.xml" />
Original file line number Diff line number Diff line change
1
+ Build 5.2.4
2
+ =============================
3
+
4
+ Release notes - NHibernate - Version 5.2.4
5
+
6
+ 1 issue was resolved in this release. This change has the side effect of
7
+ re-enabling a hack used by NHibernate.Spatial, allowing Spatial user to upgrade
8
+ to NHibernate 5.2.x.
9
+
10
+ ** Bug
11
+
12
+ * #2011 Use a statically resolved dialect when building the session factory
13
+
14
+ As part of releasing 5.2.4, a missing 5.2.0 possible breaking change has been added about
15
+ property-ref on null values. See 5.2.0 possible breaking changes.
16
+
1
17
Build 5.2.3
2
18
=============================
3
19
@@ -74,6 +90,9 @@ Release notes - NHibernate - Version 5.2.0
74
90
IDictionary is no more supported.
75
91
* Querying a dynamic entity as a Hashtable instead of an IDictionary is no more
76
92
supported.
93
+ * A collection mapped with a `property-ref` will no more support being accessed
94
+ when the referenced property is null. It will throw. Previously, the collection
95
+ was not throwing but was always loaded empty.
77
96
* With PostgreSQL, a HQL query using the bitwise xor operator "^" or "bxor"
78
97
was exponentiating the arguments instead. It will now correctly apply the xor
79
98
operator. (# operator in PostgreSQL SQL.)
You can’t perform that action at this time.
0 commit comments