Skip to content

Commit 61bd921

Browse files
Merge pull request #1658 from fredericDelaporte/cacheSetting
Add missing cache setting
2 parents 942b61b + 9527634 commit 61bd921

File tree

4 files changed

+21
-4
lines changed

4 files changed

+21
-4
lines changed

build-common/NHibernate.props

+1-1
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)' == ''">3</VersionPatch>
5+
<VersionPatch Condition="'$(VersionPatch)' == ''">4</VersionPatch>
66
<VersionSuffix Condition="'$(VersionSuffix)' == ''"></VersionSuffix>
77

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

build-common/common.xml

+2-2
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.3" overwrite="false" />
34-
<property name="project.version.numeric" value="5.0.3" overwrite="false" />
33+
<property name="project.version" value="5.0.4" overwrite="false" />
34+
<property name="project.version.numeric" value="5.0.4" overwrite="false" />
3535

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

releasenotes.txt

+9-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
1-
Build 5.0.3
1+
Build 5.0.4
2+
=============================
3+
4+
Release notes - NHibernate - Version 5.0.4
5+
6+
** Bug
7+
* #1658 Add missing cache setting
8+
9+
Build 5.0.3
210
=============================
311

412
Release notes - NHibernate - Version 5.0.3

src/NHibernate/nhibernate-configuration.xsd

+9
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,15 @@
9090
<xs:enumeration value="cache.region_prefix" />
9191
<xs:enumeration value="cache.use_minimal_puts" />
9292
<xs:enumeration value="cache.default_expiration" />
93+
<xs:enumeration value="cache.use_sliding_expiration">
94+
<xs:annotation>
95+
<xs:documentation>
96+
The use_sliding_expiration value is whether you wish to use a sliding expiration or not. Defaults
97+
to false. Not all providers support this setting, it may be ignored. Check their respective
98+
documentation.
99+
</xs:documentation>
100+
</xs:annotation>
101+
</xs:enumeration>
93102
<xs:enumeration value="query.substitutions" />
94103
<xs:enumeration value="query.factory_class" />
95104
<xs:enumeration value="query.linq_provider_class" />

0 commit comments

Comments
 (0)