@salesforce/lds-aura-storage 1.377.1 → 1.378.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/ldsStorage.js +2 -2
- package/package.json +1 -1
package/dist/ldsStorage.js
CHANGED
@@ -17,7 +17,7 @@ import auraStorage from 'aura-storage';
|
|
17
17
|
// The VERSION environment variable is replaced by rollup during the bundling and replaces it with
|
18
18
|
// the commit hash. This avoid having a cache hit on data that has been stored by a previous
|
19
19
|
// version of LDS.
|
20
|
-
const STORAGE_VERSION = "
|
20
|
+
const STORAGE_VERSION = "0ab3d40d29";
|
21
21
|
// AuraStorage treats `secure` as a must-have whereas `persistent` is a nice-to-have. Secure and
|
22
22
|
// persistent storage is only possible with CryptoAdapter. Availability of that adapter is
|
23
23
|
// controlled by the application.
|
@@ -55,4 +55,4 @@ function clearStorages() {
|
|
55
55
|
}
|
56
56
|
|
57
57
|
export { clearStorages, createStorage };
|
58
|
-
// version: 1.
|
58
|
+
// version: 1.378.0-0ab3d40d29
|