mobx-keystone 0.69.6 → 0.69.9
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 +12 -0
- package/dist/mobx-keystone.esm.js +8361 -0
- package/dist/mobx-keystone.esm.mjs +6 -7
- package/dist/mobx-keystone.umd.js +6 -7
- package/dist/types/standardActions/standaloneActions.d.ts +1 -1
- package/package.json +12 -12
- package/src/snapshot/reconcileModelSnapshot.ts +5 -6
- package/src/standardActions/actions.ts +1 -1
- package/src/standardActions/standaloneActions.ts +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
## 0.69.9
|
|
4
|
+
|
|
5
|
+
- Fix for `applySnapshot` throwing an exception when removing a property which was not declared in the model.
|
|
6
|
+
|
|
7
|
+
## 0.69.8
|
|
8
|
+
|
|
9
|
+
- Fix for `standaloneFlow` typing.
|
|
10
|
+
|
|
11
|
+
## 0.69.7
|
|
12
|
+
|
|
13
|
+
- Attempt to fix react native bundling issues.
|
|
14
|
+
|
|
3
15
|
## 0.69.6
|
|
4
16
|
|
|
5
17
|
- Fix for a possible infinite recursive call when using `types.tag`.
|