Skip to content

Commit 33c6f7c

Browse files
committed
Update to version 1.5.4
1 parent afb57d3 commit 33c6f7c

File tree

61 files changed

+276
-5479
lines changed

Some content is hidden

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

61 files changed

+276
-5479
lines changed

Gruntfile.js

Lines changed: 168 additions & 83 deletions
Large diffs are not rendered by default.

JSDOC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# offline-persistence-toolkit 1.5.3 #
1+
# offline-persistence-toolkit 1.5.4 #
22

33
## Introduction ##
44

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# offline-persistence-toolkit 1.5.3 #
1+
# offline-persistence-toolkit 1.5.4 #
22

33
offline-persistence-toolkit is a client-side JavaScript library that provides caching and offline support at the HTTP request layer. This support is transparent to the user and is done through the Fetch API and an XHR adapter. HTTP requests made while the client device is offline are captured for replay when connection to the server is restored. Additional capabilities include a persistent storage layer, synchronization manager, binary data support and various configuration APIs for customizing the default behavior. This framework can be used in both ServiceWorker and non-ServiceWorker contexts within web and hybrid mobile apps.
44

@@ -58,16 +58,16 @@ If your app uses [RequireJS](http://www.requirejs.org/ "RequireJS"), update the
5858
```javascript
5959
requirejs.config({
6060
paths: {
61-
'persist' : 'js/libs/persist/v1.5.3/min'
61+
'persist' : 'js/libs/persist/v1.5.4/min'
6262

6363
// Other path mappings here
6464
}
6565
```
66-
For Oracle JET apps, also open `appDir/src/js/main-release-paths.json` and add the `'persist' : 'js/libs/persist/v1.5.3/min'` entry to the list of paths.
66+
For Oracle JET apps, also open `appDir/src/js/main-release-paths.json` and add the `'persist' : 'js/libs/persist/v1.5.4/min'` entry to the list of paths.
6767
6868
You can choose the name of the paths prefix. That is, you can use a different value to the ‘persist’ value shown in the examples.
6969
70-
It is recommended to add the version number as a convention in your application build step such as `'persist' : 'js/libs/persist/v1.5.3/min'`.
70+
It is recommended to add the version number as a convention in your application build step such as `'persist' : 'js/libs/persist/v1.5.4/min'`.
7171
7272
Versions of the toolkit are also available on CDN under the latest JET release. e.g.
7373
@@ -79,7 +79,7 @@ https://static.oracle.com/cdn/jet/v6.2.0/3rdparty/opt/min
7979
8080
The toolkit makes heavy use of the [Promise API](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise "Promise API"). If you are targeting environments that do not support the Promise API, you will need to polyfill this feature. We recommend the [es6-promise polyfill](https://github.com/stefanpenner/es6-promise "es6-promise polyfill").
8181
82-
The toolkit does not have a dependency on a specific client-side storage solution, but does include a PouchDB adapter. If you plan to use PouchDB for your persistent store, you will need to install the following PouchDB packages (This version of the toolkit is certified with version 7.0.0 of pouchdb and requires apps to use this version):
82+
The toolkit does not have a dependency on a specific client-side storage solution, but does include a PouchDB adapter. If you plan to use PouchDB for your persistent store, you will need to install the following PouchDB packages (This version of the toolkit is certified with version 7.2.2 of pouchdb and requires apps to use this version):
8383
8484
npm install pouchdb pouchdb-find
8585
@@ -89,9 +89,9 @@ And again, if you are using RequireJS, you will need to map paths for these pack
8989

9090
requirejs.config({
9191
paths: {
92-
'pouchdb': 'js/libs/pouchdb-7.0.0',
92+
'pouchdb': 'js/libs/pouchdb-7.2.2',
9393
'pouchfind': 'js/libs/pouchdb.find',
94-
'persist' : 'js/libs/persist/v1.5.3/min'
94+
'persist' : 'js/libs/persist/v1.5.4/min'
9595

9696
// Other path mappings here
9797
}
@@ -434,7 +434,7 @@ logger.option('level', logger.LEVEL_LOG);
434434
```
435435
436436
## Offline Toolkit In Action ##
437-
Please check out the [FixItFast sample app](http://www.oracle.com/webfolder/technetwork/jet/globalExamples-App-FixItFast-Demo.html "FixItFast sample app") to see the Offline Persistence Toolkit in action.
437+
Please check out the [FixItFast sample app](http://www.oracle.com/webfolder/technetwork/jet/public_samples/FixItFast-Redwood/public_html/index.html "FixItFast sample app") to see the Offline Persistence Toolkit in action.
438438
439439
## Contributing ##
440440
This is an open source project maintained by Oracle Corp. Pull Requests are currently not being accepted. See [CONTRIBUTING](https://github.com/oracle/offline-persistence-toolkit/tree/master/CONTRIBUTING.md "CONTRIBUTING") for details.

USAGE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# offline-persistence-toolkit 1.5.3 #
1+
# offline-persistence-toolkit 1.5.4 #
22

33
# Introduction #
44

config/bundles-config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
'persist/offline-persistence-toolkit-pouchdbstore-{pkg.version}': [
1818
'persist/PersistenceStore',
1919
'persist/impl/storageUtils',
20-
'persist/pouchdb-browser-7.0.0',
20+
'persist/pouchdb-browser-7.2.2',
2121
'persist/impl/pouchDBPersistenceStore',
2222
'persist/pouchDBPersistenceStoreFactory',
2323
'persist/configurablePouchDBStoreFactory',

config/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ requirejs.config({
44
paths: {
55
'promise': 'persist/es6-promise.min',
66
'fetch' : 'persist/fetch',
7-
'pouchdb' : 'persist/pouchdb-browser-7.0.0'
7+
'pouchdb' : 'persist/pouchdb-browser-7.2.2'
88
},
99
// Shim configurations for modules that do not expose AMD
1010
shim: {

config/require-config-coverage.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
'persistenceStoreFactory': '../../dist/debug/persistenceStoreFactory',
1616
'persistenceStoreManager': '../../dist/debug/persistenceStoreManager',
1717
'persistenceUtils': '../../dist/debug/persistenceUtils',
18-
'pouchdb': '../../dist/debug/pouchdb-browser-7.0.0',
18+
'pouchdb': '../../dist/debug/pouchdb-browser-7.2.2',
1919
'pouchDBPersistenceStoreFactory': '../../dist/debug/pouchDBPersistenceStoreFactory',
2020
'queryHandlers': '../../dist/debug/queryHandlers',
2121
'simpleBinaryDataShredding': '../../dist/debug/simpleBinaryDataShredding',

docs/ArrayPersistenceStoreFactory.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -450,7 +450,7 @@ <h5>Returns:</h5>
450450

451451

452452
<footer>
453-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Tue Feb 16 2021 16:10:02 GMT+0530 (India Standard Time)<br>
453+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Tue May 25 2021 14:43:50 GMT+0530 (India Standard Time)<br>
454454
<span class="product-docs-footer">Copyright © 2017, 2021
455455
Oracle and/or its affiliates The Universal Permissive License (UPL), Version 1.0.<span>
456456
</footer>

docs/AttributeFilter.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ <h4 id="value" class="name">
447447

448448

449449
<footer>
450-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Tue Feb 16 2021 16:10:02 GMT+0530 (India Standard Time)<br>
450+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Tue May 25 2021 14:43:50 GMT+0530 (India Standard Time)<br>
451451
<span class="product-docs-footer">Copyright © 2017, 2021
452452
Oracle and/or its affiliates The Universal Permissive License (UPL), Version 1.0.<span>
453453
</footer>

docs/CompoundFilter.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ <h4 id="op" class="name">
360360

361361

362362
<footer>
363-
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.5.5</a> on Tue Feb 16 2021 16:10:02 GMT+0530 (India Standard Time)<br>
363+
Documentation generated by <a href="https://github.com/jsdoc3/jsdoc">JSDoc 3.6.7</a> on Tue May 25 2021 14:43:50 GMT+0530 (India Standard Time)<br>
364364
<span class="product-docs-footer">Copyright © 2017, 2021
365365
Oracle and/or its affiliates The Universal Permissive License (UPL), Version 1.0.<span>
366366
</footer>

0 commit comments

Comments
 (0)