Skip to content

Commit d8e8280

Browse files
author
Joerg Huber
committed
Updated v0.9.0 release notes.
1 parent 2f37e90 commit d8e8280

2 files changed

Lines changed: 70 additions & 0 deletions

File tree

SIF3InfraREST/README.txt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,14 @@ Adding support for some SIF 3.2 Infrastructure functionality:
183183
Please refer to the release notes in the directory "release/v0.8.0" for additional details and upgrade instructions.
184184
Upgraded some core library to later versions.
185185

186+
=============================================================
187+
Version from Mon DD, 2016: v0.9.0 - Various changes
188+
=============================================================
189+
- Made some method for "Changes Since" functionality more flexible.
190+
- Allow hibernate properties to be "injected".
191+
Please refer to the release notes in the directory "release/v0.9.0" for additional details and upgrade instructions.
192+
193+
186194
#########################################################################################################
187195
# Download Instructions
188196
#########################################################################################################
Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
==============================================================
2+
Release Notes for v0.9.0 of SIF3 Framework (Mon DD, 2016)
3+
==============================================================
4+
5+
Bug Fixes
6+
---------
7+
- None
8+
9+
New Functionality
10+
-----------------
11+
- Allow hibernate properties to be injected programmatically to the hibernate startup of the framework. This
12+
is an optional feature. See Developer's Guide section 5.13 for details on how to use this feature.
13+
14+
Changed Functionality
15+
---------------------
16+
- Added the following parameters to the getLatestOpaqueMarker() method of the ChangesSinceProvider Interface:
17+
SIFZone, SIFContext, PagingInfo and RequestMetadata
18+
This change means that the same parameters must be added to all classes that implement the ChangesSinceProvider
19+
Interface. See Infrastructure Upgrade below section for more details.
20+
21+
Removed Artifacts/Functionality
22+
-------------------------------
23+
- None
24+
25+
--------------------------
26+
-- Upgrade Instructions --
27+
--------------------------
28+
29+
----------------------------
30+
-- Infrastructure Upgrade --
31+
----------------------------
32+
- Drop the latest framework library into your project's lib directory/directories.
33+
34+
==========================================================================================================================
35+
Providers ONLY: Compilation Error if your provider implements the ChangesSinceProvider interface
36+
--------------------------------------------------------------------------------------------------------------------------
37+
Due to additional parameters required for the getLatestOpaqueMarker() method your provider class may throw a compile
38+
error. The fix is to change the signature of the method from:
39+
40+
public String getLatestOpaqueMarker()
41+
{
42+
...
43+
}
44+
45+
to:
46+
47+
public String getLatestOpaqueMarker(SIFZone zone, SIFContext context, PagingInfo pagingInfo, RequestMetadata metadata)
48+
{
49+
...
50+
}
51+
52+
==========================================================================================================================
53+
54+
------------------------
55+
-- Data Model Upgrade --
56+
------------------------
57+
None.
58+
59+
------------------------------
60+
-- 3rd Party Library Update --
61+
------------------------------
62+
None.

0 commit comments

Comments
 (0)