diff --git a/.release-plan.json b/.release-plan.json index 97d522b..69c1fb3 100644 --- a/.release-plan.json +++ b/.release-plan.json @@ -1,14 +1,18 @@ { "solution": { "babel-plugin-ember-template-compilation": { - "impact": "patch", - "oldVersion": "3.0.0", - "newVersion": "3.0.1", + "impact": "major", + "oldVersion": "3.0.1", + "newVersion": "4.0.0", "tagName": "latest", "constraints": [ { - "impact": "patch", - "reason": "Appears in changelog section :bug: Bug Fix" + "impact": "major", + "reason": "Appears in changelog section :boom: Breaking Change" + }, + { + "impact": "minor", + "reason": "Appears in changelog section :rocket: Enhancement" }, { "impact": "patch", @@ -18,5 +22,5 @@ "pkgJSONPath": "./package.json" } }, - "description": "## Release (2025-08-24)\n\n* babel-plugin-ember-template-compilation 3.0.1 (patch)\n\n#### :bug: Bug Fix\n* `babel-plugin-ember-template-compilation`\n * [#100](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/100) Add's URL to allowed globals list ([@evoactivity](https://github.com/evoactivity))\n\n#### :house: Internal\n* `babel-plugin-ember-template-compilation`\n * [#95](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/95) releasing alpha->latest ([@ef4](https://github.com/ef4))\n\n#### Committers: 2\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n- Liam Potter ([@evoactivity](https://github.com/evoactivity))\n" + "description": "## Release (2026-01-13)\n\n* babel-plugin-ember-template-compilation 4.0.0 (major)\n\n#### :boom: Breaking Change\n* `babel-plugin-ember-template-compilation`\n * [#99](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/99) avoid leaking real filename path in output due to moduleName ([@void-mAlex](https://github.com/void-mAlex))\n\n#### :rocket: Enhancement\n* `babel-plugin-ember-template-compilation`\n * [#106](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/106) Fix template compiler deprecation in Ember 6.8 betas ([@ef4](https://github.com/ef4))\n\n#### :house: Internal\n* `babel-plugin-ember-template-compilation`\n * [#110](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/110) chore: bump `content-tag` ([@aklkv](https://github.com/aklkv))\n * [#105](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/105) Switch to Vitest and build into a dist dir ([@ef4](https://github.com/ef4))\n\n#### Committers: 3\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\n- Alexey Kulakov ([@aklkv](https://github.com/aklkv))\n- Edward Faulkner ([@ef4](https://github.com/ef4))\n" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ffdc5a..f5c6d3e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## Release (2026-01-13) + +* babel-plugin-ember-template-compilation 4.0.0 (major) + +#### :boom: Breaking Change +* `babel-plugin-ember-template-compilation` + * [#99](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/99) avoid leaking real filename path in output due to moduleName ([@void-mAlex](https://github.com/void-mAlex)) + +#### :rocket: Enhancement +* `babel-plugin-ember-template-compilation` + * [#106](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/106) Fix template compiler deprecation in Ember 6.8 betas ([@ef4](https://github.com/ef4)) + +#### :house: Internal +* `babel-plugin-ember-template-compilation` + * [#110](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/110) chore: bump `content-tag` ([@aklkv](https://github.com/aklkv)) + * [#105](https://github.com/emberjs/babel-plugin-ember-template-compilation/pull/105) Switch to Vitest and build into a dist dir ([@ef4](https://github.com/ef4)) + +#### Committers: 3 +- Alex ([@void-mAlex](https://github.com/void-mAlex)) +- Alexey Kulakov ([@aklkv](https://github.com/aklkv)) +- Edward Faulkner ([@ef4](https://github.com/ef4)) + ## Release (2025-08-24) * babel-plugin-ember-template-compilation 3.0.1 (patch) diff --git a/package.json b/package.json index 143e72f..7c495bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "babel-plugin-ember-template-compilation", - "version": "3.0.1", + "version": "4.0.0", "description": "Babel implementation of Ember's low-level template-compilation API", "repository": "https://github.com/emberjs/babel-plugin-ember-template-compilation", "license": "MIT",