Skip to content

Commit 6d68e59

Browse files
Merge branch '5.2.x'
# Conflicts: # Tools/packages.config # src/NHibernate.Test/TestDialects/PostgreSQL83TestDialect.cs # src/NHibernate/Async/Cache/NonstrictReadWriteCache.cs # src/NHibernate/Async/Cache/ReadOnlyCache.cs # src/NHibernate/Async/Cache/StandardQueryCache.cs # src/NHibernate/Async/Multi/QueryBatchItemBase.cs # src/NHibernate/Cache/NonstrictReadWriteCache.cs # src/NHibernate/Cache/ReadOnlyCache.cs # src/NHibernate/Cache/StandardQueryCache.cs # src/NHibernate/Loader/JoinWalker.cs # src/NHibernate/Loader/Loader.cs # src/NHibernate/Multi/QueryBatchItemBase.cs
2 parents 0ca3028 + f7b64c5 commit 6d68e59

File tree

63 files changed

+2582
-294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+2582
-294
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 5.2.5.{build}
1+
version: 5.2.6.{build}
22
image: Visual Studio 2017
33
environment:
44
matrix:

build-common/NHibernate.props

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

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

build-common/common.xml

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

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

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

doc/reference/modules/configuration.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1081,6 +1081,20 @@ in the parameter binding.</programlisting>
10811081
</para>
10821082
</entry>
10831083
</row>
1084+
<row>
1085+
<entry>
1086+
<literal>sqlite.binaryguid</literal>
1087+
</entry>
1088+
<entry>
1089+
SQLite can store GUIDs in binary or text form, controlled by the BinaryGuid
1090+
connection string parameter (default is 'true'). The BinaryGuid setting will affect
1091+
how to cast GUID to string in SQL. NHibernate will attempt to detect this
1092+
setting automatically from the connection string, but if the connection
1093+
or connection string is being handled by the application instead of by NHibernate,
1094+
you can use the <literal>sqlite.binaryguid</literal> NHibernate setting to override the behavior.
1095+
The value can be <literal>true</literal> or <literal>false</literal>.
1096+
</entry>
1097+
</row>
10841098
<row>
10851099
<entry>
10861100
<literal>nhibernate-logger</literal>

releasenotes.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
Build 5.2.6
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.2.6
5+
6+
11 issues were resolved in this release.
7+
8+
** Bug
9+
10+
* #2190 Cannot instantiate a SessionFactory using Prevalence cache
11+
* #2177 New Fetch() method in QueryOver returns IQueryOver<> instead of QueryOver<>
12+
* #2172 Using DependentTransaction fails
13+
* #2175 Subcriteria on component collection generates incorrect join alias
14+
* #2173 Futures not batching correctly in NH 5.2.x
15+
* #2141 Undefined call to Equals object in collection during flush just before commit
16+
* #2127 StackExchangeRedisCache with PreferMultipleGet = true calls GetMany multiple times
17+
* #2110 Wrong GUID to string conversion with SQLite BinaryGuid=False
18+
19+
** Task
20+
21+
* #2200 Release 5.2.6
22+
* #2199 Upgrade AsyncGenerator to 0.8.2.12
23+
24+
** Tests
25+
26+
* #2132 Add GetMany for ReadWriteCache tests
27+
128
Build 5.2.5
229
=============================
330

src/AsyncGenerator.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@
55
applyChanges: true
66
analyzation:
77
methodConversion:
8+
#TODO 6.0: Remove ignore rule for IQueryBatchItem.ProcessResults
9+
- conversion: Ignore
10+
name: ProcessResults
11+
containingTypeName: IQueryBatchItem
812
- conversion: Ignore
913
name: PostProcessInsert
1014
containingTypeName: HqlSqlWalker
@@ -179,6 +183,18 @@
179183
applyChanges: true
180184
analyzation:
181185
methodConversion:
186+
- conversion: Ignore
187+
name: CanUseDependentTransaction
188+
containingTypeName: DistributedSystemTransactionFixture
189+
- conversion: Ignore
190+
name: CanUseSessionWithManyDependentTransaction
191+
containingTypeName: DistributedSystemTransactionFixture
192+
- conversion: Ignore
193+
name: CanUseDependentTransaction
194+
containingTypeName: SystemTransactionFixture
195+
- conversion: Ignore
196+
name: CanUseSessionWithManyDependentTransaction
197+
containingTypeName: SystemTransactionFixture
182198
- conversion: Copy
183199
name: AfterTransactionCompletionProcess_EvictsFromCache
184200
asyncExtensionMethods:

0 commit comments

Comments
 (0)