@aws-amplify/datastore 4.1.7-unstableV5.5 → 4.1.7
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 +13 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,19 @@
|
|
|
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
|
+
## [4.1.7](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@4.1.6...@aws-amplify/datastore@4.1.7) (2023-04-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **data:** fix `establishRelationAndKeys` util to not attempt to add duplicate indices for `belongsTo` relationships ([#11187](https://github.com/aws-amplify/amplify-js/issues/11187)) ([#11192](https://github.com/aws-amplify/amplify-js/issues/11192)) ([a9bd459](https://github.com/aws-amplify/amplify-js/commit/a9bd459b6b0d4c4307e10da0a8be39b13c3763f0))
|
|
12
|
+
* query on null fields to not throw error ([#11185](https://github.com/aws-amplify/amplify-js/issues/11185)) ([b0b9b5b](https://github.com/aws-amplify/amplify-js/commit/b0b9b5bddf95fd17ed457ecda4b2f80e19d2e10e))
|
|
13
|
+
* **@aws-amplify/datastore:** Remove extra null fields on create mutations ([#11171](https://github.com/aws-amplify/amplify-js/issues/11171)) ([33810b1](https://github.com/aws-amplify/amplify-js/commit/33810b10b723711fb722dd34e4068cce3e3001cf))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
6
19
|
## [4.1.6](https://github.com/aws-amplify/amplify-js/compare/@aws-amplify/datastore@4.1.5...@aws-amplify/datastore@4.1.6) (2023-04-04)
|
|
7
20
|
|
|
8
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/datastore",
|
|
3
|
-
"version": "4.1.7
|
|
3
|
+
"version": "4.1.7",
|
|
4
4
|
"description": "AppSyncLocal support for aws-amplify",
|
|
5
5
|
"main": "./lib/index.js",
|
|
6
6
|
"module": "./lib-esm/index.js",
|
|
@@ -55,11 +55,11 @@
|
|
|
55
55
|
"ssr"
|
|
56
56
|
],
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@aws-amplify/api": "5.0.25
|
|
59
|
-
"@aws-amplify/auth": "5.2.3
|
|
60
|
-
"@aws-amplify/core": "5.1.8
|
|
61
|
-
"@aws-amplify/pubsub": "5.1.8
|
|
62
|
-
"amazon-cognito-identity-js": "6.2.
|
|
58
|
+
"@aws-amplify/api": "5.0.25",
|
|
59
|
+
"@aws-amplify/auth": "5.2.3",
|
|
60
|
+
"@aws-amplify/core": "5.1.8",
|
|
61
|
+
"@aws-amplify/pubsub": "5.1.8",
|
|
62
|
+
"amazon-cognito-identity-js": "6.2.0",
|
|
63
63
|
"idb": "5.0.6",
|
|
64
64
|
"immer": "9.0.6",
|
|
65
65
|
"ulid": "2.3.0",
|
|
@@ -129,5 +129,5 @@
|
|
|
129
129
|
"lib-esm"
|
|
130
130
|
]
|
|
131
131
|
},
|
|
132
|
-
"gitHead": "
|
|
132
|
+
"gitHead": "4d169725f09cd910ca5a55a4fa7302a602a780fd"
|
|
133
133
|
}
|