From 21fca392ff16862a62754caaa6aed14a7bece21e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Mar 2024 07:34:26 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=A6=20v1.2.45=20(#1283)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: github-actions[bot] Co-authored-by: Alec Aivazis --- .changeset/honest-dingos-perform.md | 5 ---- .changeset/poor-stingrays-cough.md | 5 ---- .changeset/quick-experts-rest.md | 5 ---- packages/adapter-auto/CHANGELOG.md | 7 ++++++ packages/adapter-auto/package.json | 2 +- packages/adapter-cloudflare/CHANGELOG.md | 7 ++++++ packages/adapter-cloudflare/package.json | 2 +- packages/adapter-node/CHANGELOG.md | 7 ++++++ packages/adapter-node/package.json | 2 +- packages/create-houdini/CHANGELOG.md | 2 ++ packages/create-houdini/package.json | 2 +- packages/houdini-react/CHANGELOG.md | 25 +++++++++++++++---- packages/houdini-react/package.json | 2 +- packages/houdini-svelte/CHANGELOG.md | 7 ++++++ packages/houdini-svelte/package.json | 2 +- packages/houdini/CHANGELOG.md | 6 +++++ packages/houdini/package.json | 2 +- .../plugin-svelte-global-stores/CHANGELOG.md | 8 ++++++ .../plugin-svelte-global-stores/package.json | 2 +- 19 files changed, 72 insertions(+), 28 deletions(-) delete mode 100644 .changeset/honest-dingos-perform.md delete mode 100644 .changeset/poor-stingrays-cough.md delete mode 100644 .changeset/quick-experts-rest.md diff --git a/.changeset/honest-dingos-perform.md b/.changeset/honest-dingos-perform.md deleted file mode 100644 index 782b0ed4e..000000000 --- a/.changeset/honest-dingos-perform.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'houdini-react': patch ---- - -Fix bug marshaling/unmarshaling scalars over network diff --git a/.changeset/poor-stingrays-cough.md b/.changeset/poor-stingrays-cough.md deleted file mode 100644 index 7521ebf0f..000000000 --- a/.changeset/poor-stingrays-cough.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'houdini-react': patch ---- - -Add useRoute prop for typesafe route parameters diff --git a/.changeset/quick-experts-rest.md b/.changeset/quick-experts-rest.md deleted file mode 100644 index b91b45c98..000000000 --- a/.changeset/quick-experts-rest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'houdini': patch ---- - -GraphQL documentation strings and deprecation reasons are reflected as JSDoc comments on generated type definitions. Hover over any field of a query store, an enum, or an enum's value and your IDE should show you the documentation from the GraphQL API. diff --git a/packages/adapter-auto/CHANGELOG.md b/packages/adapter-auto/CHANGELOG.md index 9c6697c34..820258ff5 100644 --- a/packages/adapter-auto/CHANGELOG.md +++ b/packages/adapter-auto/CHANGELOG.md @@ -1,5 +1,12 @@ # houdini-adapter-auto +## 1.2.45 + +### Patch Changes + +- Updated dependencies [[`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219)]: + - houdini@1.2.45 + ## 1.2.44 ### Dependency Changes diff --git a/packages/adapter-auto/package.json b/packages/adapter-auto/package.json index d20b4c7d5..4ee60739a 100644 --- a/packages/adapter-auto/package.json +++ b/packages/adapter-auto/package.json @@ -1,6 +1,6 @@ { "name": "houdini-adapter-auto", - "version": "1.2.44", + "version": "1.2.45", "description": "An adapter for deploying your Houdini application according to the build environment ", "keywords": [ "houdini", diff --git a/packages/adapter-cloudflare/CHANGELOG.md b/packages/adapter-cloudflare/CHANGELOG.md index f268fcf64..2ff6cb2b1 100644 --- a/packages/adapter-cloudflare/CHANGELOG.md +++ b/packages/adapter-cloudflare/CHANGELOG.md @@ -1,5 +1,12 @@ # houdini-adapter-cloudflare +## 1.2.45 + +### Patch Changes + +- Updated dependencies [[`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219)]: + - houdini@1.2.45 + ## 1.2.44 ### Dependency Changes diff --git a/packages/adapter-cloudflare/package.json b/packages/adapter-cloudflare/package.json index 3b7486ab0..af34bada6 100644 --- a/packages/adapter-cloudflare/package.json +++ b/packages/adapter-cloudflare/package.json @@ -1,6 +1,6 @@ { "name": "houdini-adapter-cloudflare", - "version": "1.2.44", + "version": "1.2.45", "description": "The adapter for deploying your Houdini application to Cloudflare Pages", "keywords": [ "houdini", diff --git a/packages/adapter-node/CHANGELOG.md b/packages/adapter-node/CHANGELOG.md index 271dc3db2..9d9709cae 100644 --- a/packages/adapter-node/CHANGELOG.md +++ b/packages/adapter-node/CHANGELOG.md @@ -1,5 +1,12 @@ # houdini-adapter-node +## 1.2.45 + +### Patch Changes + +- Updated dependencies [[`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219)]: + - houdini@1.2.45 + ## 1.2.44 ### Dependency Changes diff --git a/packages/adapter-node/package.json b/packages/adapter-node/package.json index fd411a858..a31130593 100644 --- a/packages/adapter-node/package.json +++ b/packages/adapter-node/package.json @@ -1,6 +1,6 @@ { "name": "houdini-adapter-node", - "version": "1.2.44", + "version": "1.2.45", "description": "The adapter for deploying your Houdini application as a standalone node server", "keywords": [ "houdini", diff --git a/packages/create-houdini/CHANGELOG.md b/packages/create-houdini/CHANGELOG.md index b27b5a5d2..024189380 100644 --- a/packages/create-houdini/CHANGELOG.md +++ b/packages/create-houdini/CHANGELOG.md @@ -1,5 +1,7 @@ # create-houdini +## 1.2.45 + ## 1.2.44 ## 1.2.43 diff --git a/packages/create-houdini/package.json b/packages/create-houdini/package.json index 416f86068..e8f3242dc 100644 --- a/packages/create-houdini/package.json +++ b/packages/create-houdini/package.json @@ -1,6 +1,6 @@ { "name": "create-houdini", - "version": "1.2.44", + "version": "1.2.45", "description": "A CLI for creating new Houdini projects", "repository": { "type": "git", diff --git a/packages/houdini-react/CHANGELOG.md b/packages/houdini-react/CHANGELOG.md index 64bc1bd83..0eed050d3 100644 --- a/packages/houdini-react/CHANGELOG.md +++ b/packages/houdini-react/CHANGELOG.md @@ -1,5 +1,20 @@ # houdini-react +## 1.2.45 + +### ✨ Features + +- [#1284](https://github.com/HoudiniGraphql/houdini/pull/1284) [`d69d1725`](https://github.com/HoudiniGraphql/houdini/commit/d69d172560c05947a44c548741cc29d6a22e0416) @AlecAivazis - Add useRoute prop for typesafe route parameters + +### 🐛 Fixes + +- [#1282](https://github.com/HoudiniGraphql/houdini/pull/1282) [`250ff786`](https://github.com/HoudiniGraphql/houdini/commit/250ff7868e3fae562ec077ffd740b7d9a901bf53) @AlecAivazis - Fix bug marshaling/unmarshaling scalars over network + +### Dependency Changes + +- Updated dependencies [[`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219)]: + - houdini@1.2.45 + ## 1.2.44 ### ✨ Features @@ -22,9 +37,9 @@ ### Patch Changes -- [#1275](https://github.com/HoudiniGraphql/houdini/pull/1275) [`b8110193`](https://github.com/HoudiniGraphql/houdini/commit/b8110193136eb6a552c534f6b4fdd68f7d57c329) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Always generate route component types even if the file hasn't been saved yet +- [#1275](https://github.com/HoudiniGraphql/houdini/pull/1275) [`b8110193`](https://github.com/HoudiniGraphql/houdini/commit/b8110193136eb6a552c534f6b4fdd68f7d57c329) @AlecAivazis - Always generate route component types even if the file hasn't been saved yet -- [#1275](https://github.com/HoudiniGraphql/houdini/pull/1275) [`b8110193`](https://github.com/HoudiniGraphql/houdini/commit/b8110193136eb6a552c534f6b4fdd68f7d57c329) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Fix corruption of image files on deployment +- [#1275](https://github.com/HoudiniGraphql/houdini/pull/1275) [`b8110193`](https://github.com/HoudiniGraphql/houdini/commit/b8110193136eb6a552c534f6b4fdd68f7d57c329) @AlecAivazis - Fix corruption of image files on deployment - Updated dependencies []: - houdini@1.2.42 @@ -33,7 +48,7 @@ ### Patch Changes -- [#1272](https://github.com/HoudiniGraphql/houdini/pull/1272) [`45a35bd5`](https://github.com/HoudiniGraphql/houdini/commit/45a35bd543316dc9209bfea28e9e514c2344612d) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Fixed issue prevent logins when deployed on cloudflare +- [#1272](https://github.com/HoudiniGraphql/houdini/pull/1272) [`45a35bd5`](https://github.com/HoudiniGraphql/houdini/commit/45a35bd543316dc9209bfea28e9e514c2344612d) @AlecAivazis - Fixed issue prevent logins when deployed on cloudflare - Updated dependencies []: - houdini@1.2.41 @@ -42,7 +57,7 @@ ### Patch Changes -- [#1269](https://github.com/HoudiniGraphql/houdini/pull/1269) [`fe0ee152`](https://github.com/HoudiniGraphql/houdini/commit/fe0ee1522110609676d98507ca49bd6354c9cded) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Queries now throw errors when they are encountered in an API response +- [#1269](https://github.com/HoudiniGraphql/houdini/pull/1269) [`fe0ee152`](https://github.com/HoudiniGraphql/houdini/commit/fe0ee1522110609676d98507ca49bd6354c9cded) @AlecAivazis - Queries now throw errors when they are encountered in an API response - Updated dependencies []: - houdini@1.2.40 @@ -86,7 +101,7 @@ ### 🐛 Fixes -- [#1236](https://github.com/HoudiniGraphql/houdini/pull/1236) [`1ff715bd`](https://github.com/HoudiniGraphql/houdini/commit/1ff715bd8810c6d934a68bc47b581b2317582c9f) Thanks [@AlecAivazis](https://github.com/AlecAivazis)! - Fix bug when dash present in route name +- [#1236](https://github.com/HoudiniGraphql/houdini/pull/1236) [`1ff715bd`](https://github.com/HoudiniGraphql/houdini/commit/1ff715bd8810c6d934a68bc47b581b2317582c9f) @AlecAivazis - Fix bug when dash present in route name ### Dependency Changes diff --git a/packages/houdini-react/package.json b/packages/houdini-react/package.json index 020a3742b..c5b8973cd 100644 --- a/packages/houdini-react/package.json +++ b/packages/houdini-react/package.json @@ -1,6 +1,6 @@ { "name": "houdini-react", - "version": "1.2.44", + "version": "1.2.45", "description": "The React plugin for houdini", "keywords": [ "typescript", diff --git a/packages/houdini-svelte/CHANGELOG.md b/packages/houdini-svelte/CHANGELOG.md index 83172e0f7..8f0a4ad9d 100644 --- a/packages/houdini-svelte/CHANGELOG.md +++ b/packages/houdini-svelte/CHANGELOG.md @@ -1,5 +1,12 @@ # houdini-svelte +## 1.2.45 + +### Dependency Changes + +- Updated dependencies [[`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219)]: + - houdini@1.2.45 + ## 1.2.44 ### Dependency Changes diff --git a/packages/houdini-svelte/package.json b/packages/houdini-svelte/package.json index f3b75e808..d844c20ec 100644 --- a/packages/houdini-svelte/package.json +++ b/packages/houdini-svelte/package.json @@ -1,6 +1,6 @@ { "name": "houdini-svelte", - "version": "1.2.44", + "version": "1.2.45", "description": "The svelte plugin for houdini", "keywords": [ "typescript", diff --git a/packages/houdini/CHANGELOG.md b/packages/houdini/CHANGELOG.md index 2d4aba440..4afa4cbd8 100644 --- a/packages/houdini/CHANGELOG.md +++ b/packages/houdini/CHANGELOG.md @@ -1,5 +1,11 @@ # houdini +## 1.2.45 + +### ✨ Features + +- [#1277](https://github.com/HoudiniGraphql/houdini/pull/1277) [`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219) @ewen-lbh - GraphQL documentation strings and deprecation reasons are reflected as JSDoc comments on generated type definitions. Hover over any field of a query store, an enum, or an enum's value and your IDE should show you the documentation from the GraphQL API. + ## 1.2.44 ### 🐛 Fixes diff --git a/packages/houdini/package.json b/packages/houdini/package.json index c8d587243..2c9a4bcd0 100644 --- a/packages/houdini/package.json +++ b/packages/houdini/package.json @@ -1,6 +1,6 @@ { "name": "houdini", - "version": "1.2.44", + "version": "1.2.45", "description": "The disappearing GraphQL clients", "keywords": [ "typescript", diff --git a/packages/plugin-svelte-global-stores/CHANGELOG.md b/packages/plugin-svelte-global-stores/CHANGELOG.md index 4f27e91ec..d3e01a62a 100644 --- a/packages/plugin-svelte-global-stores/CHANGELOG.md +++ b/packages/plugin-svelte-global-stores/CHANGELOG.md @@ -1,5 +1,13 @@ # houdini-plugin-svelte-global-stores +## 1.2.45 + +### Dependency Changes + +- Updated dependencies [[`7f426d94`](https://github.com/HoudiniGraphql/houdini/commit/7f426d94bc13d061c39e19310f6e5de48ea4e219)]: + - houdini@1.2.45 + - houdini-svelte@1.2.45 + ## 1.2.44 ### Dependency Changes diff --git a/packages/plugin-svelte-global-stores/package.json b/packages/plugin-svelte-global-stores/package.json index 1a9a79e2d..4eeaa07e6 100644 --- a/packages/plugin-svelte-global-stores/package.json +++ b/packages/plugin-svelte-global-stores/package.json @@ -1,6 +1,6 @@ { "name": "houdini-plugin-svelte-global-stores", - "version": "1.2.44", + "version": "1.2.45", "description": "The svelte global store plugin for houdini", "keywords": [ "typescript",