@aws-amplify/datastore 3.11.2-unstable.3 → 3.11.3
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/CHANGELOG.md +19 -0
- package/dist/aws-amplify-datastore.js +3 -3
- package/dist/aws-amplify-datastore.js.map +1 -1
- package/dist/aws-amplify-datastore.min.js +2 -2
- package/dist/aws-amplify-datastore.min.js.map +1 -1
- package/lib/storage/adapter/InMemoryStore.js +2 -2
- package/lib/storage/adapter/InMemoryStore.js.map +1 -1
- package/lib-esm/storage/adapter/InMemoryStore.js +2 -2
- package/lib-esm/storage/adapter/InMemoryStore.js.map +1 -1
- package/package.json +9 -8
- package/src/storage/adapter/InMemoryStore.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.11.3](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.2...@aws-amplify/datastore@3.11.3) (2022-05-24)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @aws-amplify/datastore
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.11.2](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.1...@aws-amplify/datastore@3.11.2) (2022-05-23)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **@aws-amplify/datastore-storage-adapter:** remove extra, invalid sqlite mutations again ([#9921](https://github.com/aws-amplify/amplify-js/issues/9921)) ([00923cf](https://github.com/aws-amplify/amplify-js/commit/00923cfaeafcee97a0f54cc6aa04724f7155e75d))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [3.11.1](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@3.11.0...@aws-amplify/datastore@3.11.1) (2022-05-12)
|
|
7
26
|
|
|
8
27
|
|
|
@@ -71163,7 +71163,7 @@ var getAmplifyUserAgent = function getAmplifyUserAgent() {
|
|
|
71163
71163
|
__webpack_require__.r(__webpack_exports__);
|
|
71164
71164
|
/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "version", function() { return version; });
|
|
71165
71165
|
// generated by genversion
|
|
71166
|
-
var version = '4.5.
|
|
71166
|
+
var version = '4.5.5';
|
|
71167
71167
|
|
|
71168
71168
|
/***/ }),
|
|
71169
71169
|
|
|
@@ -86663,7 +86663,7 @@ function () {
|
|
|
86663
86663
|
keys.forEach(function (k) {
|
|
86664
86664
|
return _this.db["delete"](k);
|
|
86665
86665
|
});
|
|
86666
|
-
callback();
|
|
86666
|
+
typeof callback === 'function' && callback();
|
|
86667
86667
|
return [2
|
|
86668
86668
|
/*return*/
|
|
86669
86669
|
];
|
|
@@ -86683,7 +86683,7 @@ function () {
|
|
|
86683
86683
|
|
|
86684
86684
|
_this.setItem(key, value);
|
|
86685
86685
|
});
|
|
86686
|
-
callback();
|
|
86686
|
+
typeof callback === 'function' && callback();
|
|
86687
86687
|
return [2
|
|
86688
86688
|
/*return*/
|
|
86689
86689
|
];
|