houdini 0.14.4 → 0.14.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 +20 -0
- package/build/cmd.js +11140 -8549
- package/build/preprocess-cjs/index.js +11149 -8552
- package/build/preprocess-esm/index.js +11149 -8552
- package/build/runtime-cjs/cache/cache.d.ts +4 -2
- package/build/runtime-cjs/cache/cache.js +39 -7
- package/build/runtime-cjs/query.js +10 -1
- package/build/runtime-esm/cache/cache.d.ts +4 -2
- package/build/runtime-esm/cache/cache.js +37 -5
- package/build/runtime-esm/query.js +12 -3
- package/package.json +2 -2
- package/src/cmd/generators/runtime/adapter.ts +18 -1
- package/src/preprocess/transforms/query.test.ts +8 -16
- package/src/preprocess/transforms/query.ts +29 -18
- package/src/preprocess/utils/ensureImports.ts +8 -3
- package/src/runtime/cache/cache.ts +41 -3
- package/src/runtime/cache/tests/availability.test.ts +120 -0
- package/src/runtime/query.ts +13 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# houdini
|
|
2
2
|
|
|
3
|
+
## 0.14.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#306](https://github.com/HoudiniGraphql/houdini/pull/306) [`fe79ff3`](https://github.com/HoudiniGraphql/houdini/commit/fe79ff337aa922d19fdb6f36182fa365c85a2093) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Fixed bug when loading data inserted with mutation
|
|
8
|
+
|
|
9
|
+
## 0.14.6
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#299](https://github.com/HoudiniGraphql/houdini/pull/299) [`83032d8`](https://github.com/HoudiniGraphql/houdini/commit/83032d8d671968688255cbe2c507e7252cfb747d) Thanks [@rmarscher](https://github.com/rmarscher)! - add support for typescript 4.5
|
|
14
|
+
|
|
15
|
+
## 0.14.5
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#295](https://github.com/HoudiniGraphql/houdini/pull/295) [`2c75823`](https://github.com/HoudiniGraphql/houdini/commit/2c758235a65f5c4bf1b619ea295e0655893a95b1) Thanks [@fehnomenal](https://github.com/fehnomenal)! - Pass contents of page and session store to variable functions for component queries
|
|
20
|
+
|
|
21
|
+
* [#296](https://github.com/HoudiniGraphql/houdini/pull/296) [`1cce6a6`](https://github.com/HoudiniGraphql/houdini/commit/1cce6a6e0d52a89b41c904b5714685fcbfa5db74) Thanks [@fehnomenal](https://github.com/fehnomenal)! - Load data for component query when nothing was cached
|
|
22
|
+
|
|
3
23
|
## 0.14.4
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|