diff --git a/.changeset/bright-lemons-fry.md b/.changeset/bright-lemons-fry.md deleted file mode 100644 index aca40f65f..000000000 --- a/.changeset/bright-lemons-fry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/compiler': patch ---- - -Fix TSX output prefixing output with unnecessary jsdoc comment diff --git a/.changeset/cuddly-pumas-call.md b/.changeset/cuddly-pumas-call.md deleted file mode 100644 index 78c088638..000000000 --- a/.changeset/cuddly-pumas-call.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/compiler': patch ---- - -Adds a lint rule to display a message when attributes are added to a script tag, explaining that the script will be treated as `is:inline`. diff --git a/.changeset/gold-apples-shout.md b/.changeset/gold-apples-shout.md deleted file mode 100644 index f80324b0f..000000000 --- a/.changeset/gold-apples-shout.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@astrojs/compiler': minor ---- - -Adds a new `renderScript` option to render non-inline script tags using a `renderScript` function from `internalURL`, instead of stripping the script entirely diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md index 9e008e966..653d77495 100644 --- a/packages/compiler/CHANGELOG.md +++ b/packages/compiler/CHANGELOG.md @@ -1,5 +1,16 @@ # @astrojs/compiler +## 2.6.0 + +### Minor Changes + +- a90d99e: Adds a new `renderScript` option to render non-inline script tags using a `renderScript` function from `internalURL`, instead of stripping the script entirely + +### Patch Changes + +- 6ffa54b: Fix TSX output prefixing output with unnecessary jsdoc comment +- 86221d6: Adds a lint rule to display a message when attributes are added to a script tag, explaining that the script will be treated as `is:inline`. + ## 2.5.3 ### Patch Changes diff --git a/packages/compiler/package.json b/packages/compiler/package.json index 770537473..86f0be4d6 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -5,7 +5,7 @@ "type": "module", "bugs": "https://github.com/withastro/compiler/issues", "homepage": "https://astro.build", - "version": "2.5.3", + "version": "2.6.0", "scripts": { "build": "tsup" },