houdini 0.14.1 → 0.14.4
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 +1620 -867
- package/build/preprocess-cjs/index.js +1616 -862
- package/build/preprocess-esm/index.js +1616 -862
- package/build/runtime-cjs/cache/cache.d.ts +3 -4
- package/build/runtime-cjs/cache/cache.js +11 -9
- package/build/runtime-cjs/cache/gc.js +2 -0
- package/build/runtime-cjs/cache/lists.d.ts +24 -8
- package/build/runtime-cjs/cache/lists.js +228 -73
- package/build/runtime-cjs/cache/storage.d.ts +2 -0
- package/build/runtime-cjs/cache/storage.js +14 -2
- package/build/runtime-cjs/cache/subscription.js +1 -5
- package/build/runtime-cjs/network.d.ts +4 -2
- package/build/runtime-cjs/network.js +4 -3
- package/build/runtime-cjs/types.d.ts +1 -1
- package/build/runtime-esm/cache/cache.d.ts +3 -4
- package/build/runtime-esm/cache/cache.js +8 -6
- package/build/runtime-esm/cache/gc.js +2 -0
- package/build/runtime-esm/cache/lists.d.ts +24 -8
- package/build/runtime-esm/cache/lists.js +111 -47
- package/build/runtime-esm/cache/storage.d.ts +2 -0
- package/build/runtime-esm/cache/storage.js +10 -2
- package/build/runtime-esm/cache/subscription.js +1 -5
- package/build/runtime-esm/network.d.ts +4 -2
- package/build/runtime-esm/network.js +3 -2
- package/build/runtime-esm/types.d.ts +1 -1
- package/package.json +6 -3
- 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 +25 -12
- package/src/preprocess/transforms/query.ts +18 -1
- package/src/runtime/cache/cache.ts +10 -10
- package/src/runtime/cache/gc.ts +2 -0
- package/src/runtime/cache/lists.ts +140 -58
- package/src/runtime/cache/storage.ts +11 -1
- package/src/runtime/cache/subscription.ts +2 -7
- package/src/runtime/cache/tests/gc.test.ts +92 -10
- package/src/runtime/cache/tests/list.test.ts +331 -0
- package/src/runtime/cache/tests/subscriptions.test.ts +1 -1
- package/src/runtime/network.ts +8 -2
- package/src/runtime/types.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# houdini
|
|
2
2
|
|
|
3
|
+
## 0.14.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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
|
|
8
|
+
|
|
9
|
+
* [#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`
|
|
10
|
+
|
|
11
|
+
- [#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
|
|
12
|
+
|
|
13
|
+
## 0.14.3
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- [#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`.
|
|
18
|
+
|
|
19
|
+
## 0.14.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- [#277](https://github.com/HoudiniGraphql/houdini/pull/277) [`d010c3f`](https://github.com/HoudiniGraphql/houdini/commit/d010c3f8b5b4005a6ca02e748724079134fcebbd) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - List operations no longer throw an exception if the list isn't found as well as a few improvements to the list caching strategy
|
|
24
|
+
|
|
25
|
+
* [#279](https://github.com/HoudiniGraphql/houdini/pull/279) [`de1ae3b`](https://github.com/HoudiniGraphql/houdini/commit/de1ae3be60f04971c1b9c8bca9a89973438a1965) Thanks [@oplik0](https://github.com/oplik0)! - add pinst to disable postinstall for publishing
|
|
26
|
+
|
|
3
27
|
## 0.14.1
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|