Skip to content

Commit a28b127

Browse files
committed
Merge branch '0.0.x'
2 parents b68334e + 9d19bb8 commit a28b127

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

Changelog.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
- fix api request callback handling
3333
- fix api cross-domain recognition
3434

35+
# v0.0.38
36+
37+
- fix updating collections
38+
3539
# v0.0.37
3640

3741
_2021-10-09_
@@ -43,7 +47,7 @@ _2021-10-09_
4347

4448
_2021-10-09_
4549

46-
- fix listRelationships for "to one"-relationships
50+
- fix listRelationships for "to one"-relationships
4751
- fix storing data on save in collections
4852

4953
# v0.0.35
@@ -59,7 +63,7 @@ _2021-07-02_
5963
_2021-06-14_
6064

6165
- Collection resources are now set all at once after list calls which
62-
significantly boosts loading performance.
66+
significantly boosts loading performance.
6367

6468

6569
# v0.0.33

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@efrane/vuex-json-api",
3-
"version": "0.0.37",
3+
"version": "0.0.38",
44
"description": "A Vuex library for interfacing with Json:Api endpoints",
55
"license": "MIT",
66
"authors": [

src/module/ModuleBuilder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export class ModuleBuilder {
127127
setItem: setItemMutation(resourceBuilder, this.isCollection),
128128
startLoading: startLoadingMutation,
129129
endLoading: endLoadingMutation,
130-
update: updateMutation
130+
update: updateMutation(this.isCollection)
131131
}
132132

133133
if (this.apiMethods.allowsDeletion()) {

0 commit comments

Comments
 (0)