houdini 0.17.5 → 0.17.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/.turbo/turbo-compile.log +2 -2
- package/.turbo/turbo-typedefs.log +2 -2
- package/CHANGELOG.md +14 -0
- package/build/cmd/init.d.ts +2 -2
- package/build/cmd-cjs/index.js +222 -188
- package/build/cmd-esm/index.js +222 -188
- package/build/codegen-cjs/index.js +84 -31
- package/build/codegen-esm/index.js +84 -31
- package/build/lib/constants.d.ts +7 -0
- package/build/lib/fs.d.ts +2 -0
- package/build/lib-cjs/index.js +87 -32
- package/build/lib-esm/index.js +86 -32
- package/build/runtime/cache/subscription.d.ts +2 -1
- package/build/runtime/lib/network.d.ts +4 -2
- package/build/runtime-cjs/cache/cache.js +5 -3
- package/build/runtime-cjs/cache/subscription.d.ts +2 -1
- package/build/runtime-cjs/cache/subscription.js +6 -4
- package/build/runtime-cjs/cache/tests/subscriptions.test.js +101 -0
- package/build/runtime-cjs/lib/network.d.ts +4 -2
- package/build/runtime-cjs/lib/network.js +8 -4
- package/build/runtime-esm/cache/cache.js +5 -3
- package/build/runtime-esm/cache/subscription.d.ts +2 -1
- package/build/runtime-esm/cache/subscription.js +6 -4
- package/build/runtime-esm/cache/tests/subscriptions.test.js +101 -0
- package/build/runtime-esm/lib/network.d.ts +4 -2
- package/build/runtime-esm/lib/network.js +8 -4
- package/build/test-cjs/index.js +86 -33
- package/build/test-esm/index.js +86 -33
- package/build/vite-cjs/index.js +86 -33
- package/build/vite-esm/index.js +86 -33
- package/package.json +1 -1
- package/src/cmd/init.ts +169 -187
- package/src/codegen/generators/runtime/index.ts +2 -2
- package/src/lib/config.ts +3 -2
- package/src/lib/constants.ts +10 -0
- package/src/lib/fs.ts +59 -12
- package/src/runtime/cache/cache.ts +3 -1
- package/src/runtime/cache/subscription.ts +6 -4
- package/src/runtime/cache/tests/subscriptions.test.ts +115 -0
- package/src/runtime/lib/network.ts +11 -5
package/.turbo/turbo-compile.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
houdini:compile: cache hit, replaying output
|
|
1
|
+
houdini:compile: cache hit, replaying output 63f07e436f81a9aa
|
|
2
2
|
houdini:compile:
|
|
3
|
-
houdini:compile: > houdini@0.17.
|
|
3
|
+
houdini:compile: > houdini@0.17.7 compile /home/runner/work/houdini/houdini/packages/houdini
|
|
4
4
|
houdini:compile: > scripts build
|
|
5
5
|
houdini:compile:
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
houdini:typedefs: cache hit, replaying output
|
|
1
|
+
houdini:typedefs: cache hit, replaying output c685b427bfd26cd6
|
|
2
2
|
houdini:typedefs:
|
|
3
|
-
houdini:typedefs: > houdini@0.17.
|
|
3
|
+
houdini:typedefs: > houdini@0.17.7 typedefs /home/runner/work/houdini/houdini/packages/houdini
|
|
4
4
|
houdini:typedefs: > scripts typedefs
|
|
5
5
|
houdini:typedefs:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# houdini
|
|
2
2
|
|
|
3
|
+
## 0.17.7
|
|
4
|
+
|
|
5
|
+
## 0.17.6
|
|
6
|
+
|
|
7
|
+
### 🐛 Fixes
|
|
8
|
+
|
|
9
|
+
- [#682](https://github.com/HoudiniGraphql/houdini/pull/682) [`57577ee`](https://github.com/HoudiniGraphql/houdini/commit/57577ee9144d17a5b357bf47abaecdf96a6176f8) Thanks [@Joklost](https://github.com/Joklost)! - Fix bug when updating deeply nested lists with @parentID
|
|
10
|
+
|
|
11
|
+
- [#677](https://github.com/HoudiniGraphql/houdini/pull/677) [`927146d`](https://github.com/HoudiniGraphql/houdini/commit/927146dd02c239a9e29e5de92271d4c4de16d7e2) Thanks [@jycouet](https://github.com/jycouet)! - fix - env.TEST is not used internally anymore
|
|
12
|
+
|
|
13
|
+
### ✨ Features
|
|
14
|
+
|
|
15
|
+
- [#687](https://github.com/HoudiniGraphql/houdini/pull/687) [`dc659ef`](https://github.com/HoudiniGraphql/houdini/commit/dc659efe1bc04a6ff98166b4803a50b8761771bb) Thanks [@jycouet](https://github.com/jycouet)! - update init cmd to manage remote endpoint and local files
|
|
16
|
+
|
|
3
17
|
## 0.17.5
|
|
4
18
|
|
|
5
19
|
### ✨ Features
|
package/build/cmd/init.d.ts
CHANGED