diff --git a/.changeset/pre.json b/.changeset/pre.json index a309119b..d9973d0c 100644 --- a/.changeset/pre.json +++ b/.changeset/pre.json @@ -22,8 +22,10 @@ }, "changesets": [ "add-express-html-plugin", + "automatic-suspense-request-ids", "calm-bears-remain", "eighty-taxes-jam", + "fix-delayed-suspense-boundary", "fix-double-escape-self-closing", "fix-tsconfig-absolute-path", "hip-trams-roll", @@ -31,10 +33,13 @@ "metal-hairs-juggle", "remove-identity-value", "remove-suspense-root-global", + "require-node-20-ts-plugin", "sharp-wombats-stay", "slimy-wolves-buy", "stale-shrimps-spend", "tender-regions-cough", - "update-suspense-script-protocol" + "update-suspense-script-protocol", + "use-native-cli-utils", + "wet-weeks-grow" ] } diff --git a/packages/express-html-plugin/CHANGELOG.md b/packages/express-html-plugin/CHANGELOG.md index d87c6664..8720eaac 100644 --- a/packages/express-html-plugin/CHANGELOG.md +++ b/packages/express-html-plugin/CHANGELOG.md @@ -1,5 +1,25 @@ # @kitajs/express-html-plugin +## 5.0.0-next.1 + +### Minor Changes + +- [#515](https://github.com/kitajs/html/pull/515) + [`a7b48fd`](https://github.com/kitajs/html/commit/a7b48fdc1738ec6492d9a9d5691b710da772b505) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Add opt-in automatic + request-ID propagation for Suspense boundaries + +### Patch Changes + +- Updated dependencies + [[`a7b48fd`](https://github.com/kitajs/html/commit/a7b48fdc1738ec6492d9a9d5691b710da772b505), + [`50becad`](https://github.com/kitajs/html/commit/50becad88dd03990c7bb9c0b05d755ae8ddf4ecd), + [`299af57`](https://github.com/kitajs/html/commit/299af57d3bba4f8de30cdefa40afefe5c3937c73), + [`299af57`](https://github.com/kitajs/html/commit/299af57d3bba4f8de30cdefa40afefe5c3937c73), + [`4c4223e`](https://github.com/kitajs/html/commit/4c4223eff3afcf72e9a3d8b8326abf38e9debcfa)]: + - @kitajs/html@5.0.0-next.2 + - @kitajs/ts-html-plugin@5.0.0-next.3 + ## 5.0.0-next.0 ### Major Changes diff --git a/packages/express-html-plugin/package.json b/packages/express-html-plugin/package.json index 9038e6d8..c0bb792e 100644 --- a/packages/express-html-plugin/package.json +++ b/packages/express-html-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@kitajs/express-html-plugin", - "version": "5.0.0-next.0", + "version": "5.0.0-next.1", "description": "An Express middleware to add support for @kitajs/html", "homepage": "https://github.com/kitajs/html/tree/master/packages/express-html-plugin#readme", "bugs": "https://github.com/kitajs/html/issues", diff --git a/packages/fastify-html-plugin/CHANGELOG.md b/packages/fastify-html-plugin/CHANGELOG.md index 16962913..9e847d92 100644 --- a/packages/fastify-html-plugin/CHANGELOG.md +++ b/packages/fastify-html-plugin/CHANGELOG.md @@ -1,5 +1,25 @@ # @kitajs/fastify-html-plugin +## 5.0.0-next.3 + +### Minor Changes + +- [#515](https://github.com/kitajs/html/pull/515) + [`a7b48fd`](https://github.com/kitajs/html/commit/a7b48fdc1738ec6492d9a9d5691b710da772b505) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Add opt-in automatic + request-ID propagation for Suspense boundaries + +### Patch Changes + +- Updated dependencies + [[`a7b48fd`](https://github.com/kitajs/html/commit/a7b48fdc1738ec6492d9a9d5691b710da772b505), + [`50becad`](https://github.com/kitajs/html/commit/50becad88dd03990c7bb9c0b05d755ae8ddf4ecd), + [`299af57`](https://github.com/kitajs/html/commit/299af57d3bba4f8de30cdefa40afefe5c3937c73), + [`299af57`](https://github.com/kitajs/html/commit/299af57d3bba4f8de30cdefa40afefe5c3937c73), + [`4c4223e`](https://github.com/kitajs/html/commit/4c4223eff3afcf72e9a3d8b8326abf38e9debcfa)]: + - @kitajs/html@5.0.0-next.2 + - @kitajs/ts-html-plugin@5.0.0-next.3 + ## 5.0.0-next.2 ### Minor Changes diff --git a/packages/fastify-html-plugin/package.json b/packages/fastify-html-plugin/package.json index 7ef7ce15..af2be5dd 100644 --- a/packages/fastify-html-plugin/package.json +++ b/packages/fastify-html-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@kitajs/fastify-html-plugin", - "version": "5.0.0-next.2", + "version": "5.0.0-next.3", "description": "A Fastify plugin to add support for @kitajs/html", "homepage": "https://github.com/kitajs/html/tree/master/packages/fastify-html-plugin#readme", "bugs": "https://github.com/kitajs/html/issues", diff --git a/packages/html/CHANGELOG.md b/packages/html/CHANGELOG.md index 712a55b7..52a0936f 100644 --- a/packages/html/CHANGELOG.md +++ b/packages/html/CHANGELOG.md @@ -1,5 +1,23 @@ # @kitajs/html +## 5.0.0-next.2 + +### Minor Changes + +- [#515](https://github.com/kitajs/html/pull/515) + [`a7b48fd`](https://github.com/kitajs/html/commit/a7b48fdc1738ec6492d9a9d5691b710da772b505) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Add opt-in automatic + request-ID propagation for Suspense boundaries + +### Patch Changes + +- [`50becad`](https://github.com/kitajs/html/commit/50becad88dd03990c7bb9c0b05d755ae8ddf4ecd) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Stream Suspense + boundaries created after an async render factory yields + +- [`4c4223e`](https://github.com/kitajs/html/commit/4c4223eff3afcf72e9a3d8b8326abf38e9debcfa) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Allow literal 0 as `rid` + ## 5.0.0-next.1 ### Major Changes diff --git a/packages/html/package.json b/packages/html/package.json index eb373a62..49e928b4 100644 --- a/packages/html/package.json +++ b/packages/html/package.json @@ -1,6 +1,6 @@ { "name": "@kitajs/html", - "version": "5.0.0-next.1", + "version": "5.0.0-next.2", "description": "Fast and type safe HTML templates using TypeScript.", "homepage": "https://github.com/kitajs/html/tree/master/packages/html#readme", "bugs": "https://github.com/kitajs/html/issues", diff --git a/packages/ts-html-plugin/CHANGELOG.md b/packages/ts-html-plugin/CHANGELOG.md index a45865d1..d55151a2 100644 --- a/packages/ts-html-plugin/CHANGELOG.md +++ b/packages/ts-html-plugin/CHANGELOG.md @@ -1,5 +1,25 @@ # @kitajs/ts-html-plugin +## 5.0.0-next.3 + +### Major Changes + +- [`299af57`](https://github.com/kitajs/html/commit/299af57d3bba4f8de30cdefa40afefe5c3937c73) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Require Node.js 20.12 or + newer + +### Patch Changes + +- [`299af57`](https://github.com/kitajs/html/commit/299af57d3bba4f8de30cdefa40afefe5c3937c73) + Thanks [@arthurfiorette](https://github.com/arthurfiorette)! - Replace Chalk and Yargs + with Node.js native CLI utilities + +- Updated dependencies + [[`a7b48fd`](https://github.com/kitajs/html/commit/a7b48fdc1738ec6492d9a9d5691b710da772b505), + [`50becad`](https://github.com/kitajs/html/commit/50becad88dd03990c7bb9c0b05d755ae8ddf4ecd), + [`4c4223e`](https://github.com/kitajs/html/commit/4c4223eff3afcf72e9a3d8b8326abf38e9debcfa)]: + - @kitajs/html@5.0.0-next.2 + ## 5.0.0-next.2 ### Patch Changes diff --git a/packages/ts-html-plugin/package.json b/packages/ts-html-plugin/package.json index e251198c..b1a03334 100644 --- a/packages/ts-html-plugin/package.json +++ b/packages/ts-html-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@kitajs/ts-html-plugin", - "version": "5.0.0-next.2", + "version": "5.0.0-next.3", "homepage": "https://github.com/kitajs/html/tree/master/packages/ts-html-plugin#readme", "bugs": "https://github.com/kitajs/html/issues", "repository": {