houdini 0.17.4 → 0.17.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/.turbo/turbo-compile.log +2 -2
- package/.turbo/turbo-typedefs.log +2 -2
- package/CHANGELOG.md +6 -0
- package/build/cmd-cjs/index.js +9087 -10224
- package/build/cmd-esm/index.js +9087 -10224
- package/build/codegen/transforms/paginate.d.ts +10 -11
- package/build/codegen-cjs/index.js +9092 -10229
- package/build/codegen-esm/index.js +9092 -10229
- package/build/lib-cjs/index.js +9221 -10358
- package/build/lib-esm/index.js +9221 -10358
- package/build/runtime/lib/network.d.ts +1 -0
- package/build/runtime/lib/networkUtils.d.ts +8 -0
- package/build/runtime-cjs/lib/network.d.ts +1 -0
- package/build/runtime-cjs/lib/network.js +33 -1
- package/build/runtime-cjs/lib/networkUtils.d.ts +8 -0
- package/build/runtime-cjs/lib/networkUtils.js +85 -0
- package/build/runtime-esm/lib/network.d.ts +1 -0
- package/build/runtime-esm/lib/network.js +33 -1
- package/build/runtime-esm/lib/networkUtils.d.ts +8 -0
- package/build/runtime-esm/lib/networkUtils.js +60 -0
- package/build/test-cjs/index.js +9091 -10228
- package/build/test-esm/index.js +9091 -10228
- package/build/vite-cjs/index.js +9149 -10286
- package/build/vite-esm/index.js +9149 -10286
- package/package.json +2 -2
- package/src/codegen/generators/artifacts/artifacts.test.ts +99 -66
- package/src/codegen/generators/artifacts/pagination.test.ts +12 -8
- package/src/codegen/generators/artifacts/policy.test.ts +12 -8
- package/src/codegen/generators/definitions/schema.test.ts +12 -36
- package/src/codegen/generators/persistedQueries/persistedQuery.test.ts +2 -2
- package/src/codegen/transforms/fragmentVariables.test.ts +24 -16
- package/src/codegen/transforms/paginate.test.ts +9 -6
- package/src/codegen/transforms/paginate.ts +2 -2
- package/src/runtime/lib/network.ts +58 -1
- package/src/runtime/lib/networkUtils.ts +151 -0
package/.turbo/turbo-compile.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
houdini:compile: cache hit, replaying output
|
|
1
|
+
houdini:compile: cache hit, replaying output acf84a27280e1eb0
|
|
2
2
|
houdini:compile:
|
|
3
|
-
houdini:compile: > houdini@0.17.
|
|
3
|
+
houdini:compile: > houdini@0.17.5 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 b6aa995d2f33abd8
|
|
2
2
|
houdini:typedefs:
|
|
3
|
-
houdini:typedefs: > houdini@0.17.
|
|
3
|
+
houdini:typedefs: > houdini@0.17.5 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,11 @@
|
|
|
1
1
|
# houdini
|
|
2
2
|
|
|
3
|
+
## 0.17.5
|
|
4
|
+
|
|
5
|
+
### ✨ Features
|
|
6
|
+
|
|
7
|
+
- [#660](https://github.com/HoudiniGraphql/houdini/pull/660) [`08b3d10`](https://github.com/HoudiniGraphql/houdini/commit/08b3d10c5305c43d457b11f288509e90459c2d0c) Thanks [@524c](https://github.com/524c)! - Add support for multipart file uploads
|
|
8
|
+
|
|
3
9
|
## 0.17.4
|
|
4
10
|
|
|
5
11
|
### 🐛 Fixes
|