@khanacademy/wonder-blocks-data 6.0.0 → 7.0.1
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 +18 -0
- package/dist/es/index.js +64 -689
- package/dist/index.js +38 -49
- package/legacy-docs.md +1 -1
- package/package.json +3 -3
- package/src/__docs__/exports.use-server-effect.stories.mdx +13 -1
- package/src/hooks/__tests__/use-hydratable-effect.test.js +22 -25
- package/src/hooks/__tests__/use-server-effect.test.js +51 -0
- package/src/hooks/use-hydratable-effect.js +13 -13
- package/src/hooks/use-server-effect.js +30 -5
- package/src/util/abort-error.js +0 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @khanacademy/wonder-blocks-data
|
|
2
2
|
|
|
3
|
+
## 7.0.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @khanacademy/wonder-blocks-core@4.3.1
|
|
8
|
+
|
|
9
|
+
## 7.0.0
|
|
10
|
+
|
|
11
|
+
### Major Changes
|
|
12
|
+
|
|
13
|
+
- 34407c4a: `useServerEffect` now has a `skip` option, preventing the request from getting tracked for server-side fulfillment
|
|
14
|
+
|
|
15
|
+
## 6.0.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- 5ad01891: [FIX] Make sure hydratable effect properly renders when requestId changes
|
|
20
|
+
|
|
3
21
|
## 6.0.0
|
|
4
22
|
|
|
5
23
|
### Major Changes
|