houdini 0.14.2 → 0.14.5
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 +24 -0
- package/build/cmd.js +1623 -870
- package/build/preprocess-cjs/index.js +1629 -869
- package/build/preprocess-esm/index.js +1629 -869
- package/build/runtime-cjs/network.d.ts +4 -2
- package/build/runtime-cjs/network.js +4 -3
- package/build/runtime-cjs/query.js +10 -1
- package/build/runtime-esm/network.d.ts +4 -2
- package/build/runtime-esm/network.js +3 -2
- package/build/runtime-esm/query.js +12 -3
- package/package.json +2 -2
- package/src/cmd/generators/runtime/adapter.ts +18 -1
- package/src/cmd/generators/typescript/index.ts +51 -23
- package/src/cmd/generators/typescript/typescript.test.ts +9 -6
- package/src/preprocess/transforms/query.test.ts +33 -28
- package/src/preprocess/transforms/query.ts +47 -19
- package/src/preprocess/utils/ensureImports.ts +8 -3
- package/src/runtime/network.ts +8 -2
- package/src/runtime/query.ts +13 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# houdini
|
|
2
2
|
|
|
3
|
+
## 0.14.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
* [#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
|
|
10
|
+
|
|
11
|
+
## 0.14.4
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- [#292](https://github.com/HoudiniGraphql/houdini/pull/292) [`c6f5d60`](https://github.com/HoudiniGraphql/houdini/commit/c6f5d6011b533998dc76ebe9e2617eb05096e750) Thanks [@fehnomenal](https://github.com/fehnomenal)! - Only generate after load types for queries
|
|
16
|
+
|
|
17
|
+
* [#288](https://github.com/HoudiniGraphql/houdini/pull/288) [`4c09aba`](https://github.com/HoudiniGraphql/houdini/commit/4c09aba4926ec75515302269c8643e4ce783337c) Thanks [@fehnomenal](https://github.com/fehnomenal)! - Update dependency `svelte`
|
|
18
|
+
|
|
19
|
+
- [#292](https://github.com/HoudiniGraphql/houdini/pull/292) [`c6f5d60`](https://github.com/HoudiniGraphql/houdini/commit/c6f5d6011b533998dc76ebe9e2617eb05096e750) Thanks [@fehnomenal](https://github.com/fehnomenal)! - Pass variables to `afterLoad` hook
|
|
20
|
+
|
|
21
|
+
## 0.14.3
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- [#283](https://github.com/HoudiniGraphql/houdini/pull/283) [`dd20142`](https://github.com/HoudiniGraphql/houdini/commit/dd201422f0359f44cf18b338ed4ecd0d13799149) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Fixed bug in component queries associated with the unloaded response from `load`.
|
|
26
|
+
|
|
3
27
|
## 0.14.2
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|