From c62b52cb3597f55d011e6c0811322ee8e4492c09 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 9 Jun 2024 00:37:13 +0000 Subject: [PATCH] Publish packages --- .changeset/cyan-snakes-rescue.md | 5 ----- .changeset/heavy-vans-eat.md | 5 ----- .changeset/little-beds-happen.md | 5 ----- .changeset/olive-cows-prove.md | 7 ------- .changeset/three-glasses-taste.md | 5 ----- .changeset/tiny-badgers-burn.md | 5 ----- .changeset/violet-carrots-buy.md | 6 ------ .changeset/wicked-toys-melt.md | 5 ----- packages/async/CHANGELOG.md | 6 ++++++ packages/async/package.json | 2 +- packages/create/CHANGELOG.md | 8 ++++++++ packages/create/package.json | 2 +- packages/graphql-tools/CHANGELOG.md | 11 +++++++++++ packages/graphql-tools/package.json | 4 ++-- packages/graphql/CHANGELOG.md | 13 +++++++++++++ packages/graphql/package.json | 2 +- packages/localize/CHANGELOG.md | 6 ++++++ packages/localize/package.json | 2 +- packages/preact-async/CHANGELOG.md | 9 +++++++++ packages/preact-async/package.json | 4 ++-- packages/preact-graphql/CHANGELOG.md | 12 ++++++++++++ packages/preact-graphql/package.json | 6 +++--- pnpm-lock.yaml | 8 ++++---- 23 files changed, 80 insertions(+), 58 deletions(-) delete mode 100644 .changeset/cyan-snakes-rescue.md delete mode 100644 .changeset/heavy-vans-eat.md delete mode 100644 .changeset/little-beds-happen.md delete mode 100644 .changeset/olive-cows-prove.md delete mode 100644 .changeset/three-glasses-taste.md delete mode 100644 .changeset/tiny-badgers-burn.md delete mode 100644 .changeset/violet-carrots-buy.md delete mode 100644 .changeset/wicked-toys-melt.md diff --git a/.changeset/cyan-snakes-rescue.md b/.changeset/cyan-snakes-rescue.md deleted file mode 100644 index f4ca1097a..000000000 --- a/.changeset/cyan-snakes-rescue.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@quilted/preact-async': patch ---- - -Add `serialize` option to `AsyncContext` to make cache serialization optional diff --git a/.changeset/heavy-vans-eat.md b/.changeset/heavy-vans-eat.md deleted file mode 100644 index c2a95d088..000000000 --- a/.changeset/heavy-vans-eat.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@quilted/create': patch ---- - -Remove reference to react-query from GraphQL template diff --git a/.changeset/little-beds-happen.md b/.changeset/little-beds-happen.md deleted file mode 100644 index 4418545e3..000000000 --- a/.changeset/little-beds-happen.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@quilted/graphql-tools': patch ---- - -Fix schema generation for schemas with backticks diff --git a/.changeset/olive-cows-prove.md b/.changeset/olive-cows-prove.md deleted file mode 100644 index 45074377c..000000000 --- a/.changeset/olive-cows-prove.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@quilted/graphql': minor -'@quilted/preact-graphql': patch -'@quilted/create': patch ---- - -Add dedicated `GraphQLCache` class diff --git a/.changeset/three-glasses-taste.md b/.changeset/three-glasses-taste.md deleted file mode 100644 index fd1ab3a8f..000000000 --- a/.changeset/three-glasses-taste.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@quilted/graphql-tools': patch ---- - -Add options to output GraphQL documents to a string, and to omit the source diff --git a/.changeset/tiny-badgers-burn.md b/.changeset/tiny-badgers-burn.md deleted file mode 100644 index 389579e16..000000000 --- a/.changeset/tiny-badgers-burn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@quilted/localize': patch ---- - -Allow string and bigints for number formatting diff --git a/.changeset/violet-carrots-buy.md b/.changeset/violet-carrots-buy.md deleted file mode 100644 index 1521ac6c2..000000000 --- a/.changeset/violet-carrots-buy.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@quilted/preact-graphql': patch -'@quilted/graphql': patch ---- - -Use `NoInfer` on GraphQL option types diff --git a/.changeset/wicked-toys-melt.md b/.changeset/wicked-toys-melt.md deleted file mode 100644 index d3ea427c8..000000000 --- a/.changeset/wicked-toys-melt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@quilted/async': patch ---- - -Add `force` option to `AsyncActionCache.run()` diff --git a/packages/async/CHANGELOG.md b/packages/async/CHANGELOG.md index 15e86ed93..833c78489 100644 --- a/packages/async/CHANGELOG.md +++ b/packages/async/CHANGELOG.md @@ -1,5 +1,11 @@ # @quilted/async +## 0.4.15 + +### Patch Changes + +- [`7faeb6a`](https://github.com/lemonmade/quilt/commit/7faeb6a4152f072b7d25a0da7aa498af380b8227) Thanks [@lemonmade](https://github.com/lemonmade)! - Add `force` option to `AsyncActionCache.run()` + ## 0.4.14 ### Patch Changes diff --git a/packages/async/package.json b/packages/async/package.json index cbedb5d36..945c3ae18 100644 --- a/packages/async/package.json +++ b/packages/async/package.json @@ -1,7 +1,7 @@ { "name": "@quilted/async", "type": "module", - "version": "0.4.14", + "version": "0.4.15", "license": "MIT", "repository": { "type": "git", diff --git a/packages/create/CHANGELOG.md b/packages/create/CHANGELOG.md index 33430eb54..51623d4a5 100644 --- a/packages/create/CHANGELOG.md +++ b/packages/create/CHANGELOG.md @@ -1,5 +1,13 @@ # @quilted/create +## 0.2.29 + +### Patch Changes + +- [`ce48754`](https://github.com/lemonmade/quilt/commit/ce48754047e8279d5e774a4547a19d48217bb2e6) Thanks [@lemonmade](https://github.com/lemonmade)! - Remove reference to react-query from GraphQL template + +- [`ab9d73b`](https://github.com/lemonmade/quilt/commit/ab9d73bd56c4f43d207a9f01e4a7265b4f953a40) Thanks [@lemonmade](https://github.com/lemonmade)! - Add dedicated `GraphQLCache` class + ## 0.2.28 ### Patch Changes diff --git a/packages/create/package.json b/packages/create/package.json index 5342eeb6e..0398dc23d 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,7 +1,7 @@ { "name": "@quilted/create", "type": "module", - "version": "0.2.28", + "version": "0.2.29", "license": "MIT", "repository": { "type": "git", diff --git a/packages/graphql-tools/CHANGELOG.md b/packages/graphql-tools/CHANGELOG.md index 7adda66e1..45a07c132 100644 --- a/packages/graphql-tools/CHANGELOG.md +++ b/packages/graphql-tools/CHANGELOG.md @@ -1,5 +1,16 @@ # @quilted/graphql +## 0.2.4 + +### Patch Changes + +- [`01945eb`](https://github.com/lemonmade/quilt/commit/01945ebd1b437abe878ee0386d727a749647c12c) Thanks [@lemonmade](https://github.com/lemonmade)! - Fix schema generation for schemas with backticks + +- [`f6bc262`](https://github.com/lemonmade/quilt/commit/f6bc262ea020a94a1ecc0de4cda8ef6d6371ee23) Thanks [@lemonmade](https://github.com/lemonmade)! - Add options to output GraphQL documents to a string, and to omit the source + +- Updated dependencies [[`ab9d73b`](https://github.com/lemonmade/quilt/commit/ab9d73bd56c4f43d207a9f01e4a7265b4f953a40), [`729163a`](https://github.com/lemonmade/quilt/commit/729163a3270a3dcfc6ae55511c31dbf1a46715ca)]: + - @quilted/graphql@3.2.0 + ## 0.2.3 ### Patch Changes diff --git a/packages/graphql-tools/package.json b/packages/graphql-tools/package.json index f7ef3342c..36947f09f 100644 --- a/packages/graphql-tools/package.json +++ b/packages/graphql-tools/package.json @@ -1,7 +1,7 @@ { "name": "@quilted/graphql-tools", "type": "module", - "version": "0.2.3", + "version": "0.2.4", "license": "MIT", "repository": { "type": "git", @@ -74,7 +74,7 @@ "@graphql-tools/graphql-file-loader": "^8.0.0", "@graphql-tools/json-file-loader": "^8.0.0", "@graphql-tools/load": "^8.0.0", - "@quilted/graphql": "workspace:^3.0.2", + "@quilted/graphql": "workspace:^3.2.0", "@quilted/useful-types": "workspace:^2.0.0", "arg": "^5.0.0", "chokidar": "^3.5.0", diff --git a/packages/graphql/CHANGELOG.md b/packages/graphql/CHANGELOG.md index ab993a810..1a94241e1 100644 --- a/packages/graphql/CHANGELOG.md +++ b/packages/graphql/CHANGELOG.md @@ -1,5 +1,18 @@ # @quilted/graphql +## 3.2.0 + +### Minor Changes + +- [`ab9d73b`](https://github.com/lemonmade/quilt/commit/ab9d73bd56c4f43d207a9f01e4a7265b4f953a40) Thanks [@lemonmade](https://github.com/lemonmade)! - Add dedicated `GraphQLCache` class + +### Patch Changes + +- [`729163a`](https://github.com/lemonmade/quilt/commit/729163a3270a3dcfc6ae55511c31dbf1a46715ca) Thanks [@lemonmade](https://github.com/lemonmade)! - Use `NoInfer` on GraphQL option types + +- Updated dependencies [[`7faeb6a`](https://github.com/lemonmade/quilt/commit/7faeb6a4152f072b7d25a0da7aa498af380b8227)]: + - @quilted/async@0.4.15 + ## 3.1.3 ### Patch Changes diff --git a/packages/graphql/package.json b/packages/graphql/package.json index eceb262f3..5f4c119c9 100644 --- a/packages/graphql/package.json +++ b/packages/graphql/package.json @@ -2,7 +2,7 @@ "name": "@quilted/graphql", "description": "Tiny, type-safe helpers for using GraphQL", "type": "module", - "version": "3.1.3", + "version": "3.2.0", "license": "MIT", "repository": { "type": "git", diff --git a/packages/localize/CHANGELOG.md b/packages/localize/CHANGELOG.md index 98293f1ef..4ad0b6adf 100644 --- a/packages/localize/CHANGELOG.md +++ b/packages/localize/CHANGELOG.md @@ -1,5 +1,11 @@ # @quilted/localize +## 0.2.1 + +### Patch Changes + +- [`05951a2`](https://github.com/lemonmade/quilt/commit/05951a2f1c6a7fb83207615c50703b502b21511e) Thanks [@lemonmade](https://github.com/lemonmade)! - Allow string and bigints for number formatting + ## 0.2.0 ### Minor Changes diff --git a/packages/localize/package.json b/packages/localize/package.json index 88b5b6f09..d3c47db48 100644 --- a/packages/localize/package.json +++ b/packages/localize/package.json @@ -2,7 +2,7 @@ "name": "@quilted/localize", "description": "Utilities for localizing web applications", "type": "module", - "version": "0.2.0", + "version": "0.2.1", "license": "MIT", "engines": { "node": ">=14.0.0" diff --git a/packages/preact-async/CHANGELOG.md b/packages/preact-async/CHANGELOG.md index 085be5ef8..6320880bd 100644 --- a/packages/preact-async/CHANGELOG.md +++ b/packages/preact-async/CHANGELOG.md @@ -1,5 +1,14 @@ # @quilted/preact-async +## 0.1.14 + +### Patch Changes + +- [`9a9667e`](https://github.com/lemonmade/quilt/commit/9a9667e6514215c9b851bfd426f470e0371c27a5) Thanks [@lemonmade](https://github.com/lemonmade)! - Add `serialize` option to `AsyncContext` to make cache serialization optional + +- Updated dependencies [[`7faeb6a`](https://github.com/lemonmade/quilt/commit/7faeb6a4152f072b7d25a0da7aa498af380b8227)]: + - @quilted/async@0.4.15 + ## 0.1.13 ### Patch Changes diff --git a/packages/preact-async/package.json b/packages/preact-async/package.json index b5e56cee4..56f392ca1 100644 --- a/packages/preact-async/package.json +++ b/packages/preact-async/package.json @@ -1,7 +1,7 @@ { "name": "@quilted/preact-async", "type": "module", - "version": "0.1.13", + "version": "0.1.14", "repository": { "type": "git", "url": "https://github.com/lemonmade/quilt.git", @@ -26,7 +26,7 @@ "build": "rollup --config configuration/rollup.config.js" }, "dependencies": { - "@quilted/async": "workspace:^0.4.14", + "@quilted/async": "workspace:^0.4.15", "@quilted/preact-browser": "workspace:^0.1.4", "@quilted/preact-context": "workspace:^0.1.0", "@quilted/preact-signals": "workspace:^0.1.0" diff --git a/packages/preact-graphql/CHANGELOG.md b/packages/preact-graphql/CHANGELOG.md index c909ffa96..80d216cbb 100644 --- a/packages/preact-graphql/CHANGELOG.md +++ b/packages/preact-graphql/CHANGELOG.md @@ -1,5 +1,17 @@ # @quilted/preact-graphql +## 0.1.3 + +### Patch Changes + +- [`ab9d73b`](https://github.com/lemonmade/quilt/commit/ab9d73bd56c4f43d207a9f01e4a7265b4f953a40) Thanks [@lemonmade](https://github.com/lemonmade)! - Add dedicated `GraphQLCache` class + +- [`729163a`](https://github.com/lemonmade/quilt/commit/729163a3270a3dcfc6ae55511c31dbf1a46715ca) Thanks [@lemonmade](https://github.com/lemonmade)! - Use `NoInfer` on GraphQL option types + +- Updated dependencies [[`9a9667e`](https://github.com/lemonmade/quilt/commit/9a9667e6514215c9b851bfd426f470e0371c27a5), [`ab9d73b`](https://github.com/lemonmade/quilt/commit/ab9d73bd56c4f43d207a9f01e4a7265b4f953a40), [`729163a`](https://github.com/lemonmade/quilt/commit/729163a3270a3dcfc6ae55511c31dbf1a46715ca)]: + - @quilted/preact-async@0.1.14 + - @quilted/graphql@3.2.0 + ## 0.1.2 ### Patch Changes diff --git a/packages/preact-graphql/package.json b/packages/preact-graphql/package.json index 10c088a45..3e9f4b5e4 100644 --- a/packages/preact-graphql/package.json +++ b/packages/preact-graphql/package.json @@ -1,7 +1,7 @@ { "name": "@quilted/preact-graphql", "type": "module", - "version": "0.1.2", + "version": "0.1.3", "repository": { "type": "git", "url": "https://github.com/lemonmade/quilt.git", @@ -39,8 +39,8 @@ "build": "rollup --config configuration/rollup.config.js" }, "dependencies": { - "@quilted/graphql": "workspace:^3.1.1", - "@quilted/preact-async": "workspace:^0.1.11", + "@quilted/graphql": "workspace:^3.2.0", + "@quilted/preact-async": "workspace:^0.1.14", "@quilted/preact-context": "workspace:^0.1.0", "@quilted/preact-signals": "workspace:^0.1.0", "@quilted/useful-types": "workspace:^2.0.0" diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index ecf7c6eb9..658cc0cb5 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -350,7 +350,7 @@ importers: specifier: ^8.0.0 version: 8.0.0(graphql@16.8.1) '@quilted/graphql': - specifier: workspace:^3.0.2 + specifier: workspace:^3.2.0 version: link:../graphql '@quilted/useful-types': specifier: workspace:^2.0.0 @@ -413,7 +413,7 @@ importers: packages/preact-async: dependencies: '@quilted/async': - specifier: workspace:^0.4.14 + specifier: workspace:^0.4.15 version: link:../async '@quilted/preact-browser': specifier: workspace:^0.1.4 @@ -476,10 +476,10 @@ importers: packages/preact-graphql: dependencies: '@quilted/graphql': - specifier: workspace:^3.1.1 + specifier: workspace:^3.2.0 version: link:../graphql '@quilted/preact-async': - specifier: workspace:^0.1.11 + specifier: workspace:^0.1.14 version: link:../preact-async '@quilted/preact-context': specifier: workspace:^0.1.0