|
| 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