Skip to content

Commit 5d1e26c

Browse files
Merge pull request #160 from ember-tooling/release-preview
Prepare Release v0.8.0
2 parents 12345a6 + 47f9838 commit 5d1e26c

3 files changed

Lines changed: 37 additions & 4 deletions

File tree

.release-plan.json

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22
"solution": {
33
"ember-eslint-parser": {
44
"impact": "minor",
5-
"oldVersion": "0.6.0",
6-
"newVersion": "0.7.0",
5+
"oldVersion": "0.7.0",
6+
"newVersion": "0.8.0",
77
"tagName": "latest",
88
"constraints": [
99
{
1010
"impact": "minor",
1111
"reason": "Appears in changelog section :rocket: Enhancement"
1212
},
13+
{
14+
"impact": "patch",
15+
"reason": "Appears in changelog section :bug: Bug Fix"
16+
},
1317
{
1418
"impact": "patch",
1519
"reason": "Appears in changelog section :house: Internal"
@@ -18,5 +22,5 @@
1822
"pkgJSONPath": "./package.json"
1923
}
2024
},
21-
"description": "## Release (2026-03-04)\n\n* ember-eslint-parser 0.7.0 (minor)\n\n#### :rocket: Enhancement\n* `ember-eslint-parser`\n * [#153](https://github.com/ember-tooling/ember-eslint-parser/pull/153) Update dependencies ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#154](https://github.com/ember-tooling/ember-eslint-parser/pull/154) Fix API compatibility with content-tag v4, html-tags v5, and mathml-tag-names v4 ([@Copilot](https://github.com/apps/copilot-swe-agent))\n\n#### :house: Internal\n* `ember-eslint-parser`\n * [#155](https://github.com/ember-tooling/ember-eslint-parser/pull/155) Add CI job to run tests on minimum supported Node.js version (v20) ([@Copilot](https://github.com/apps/copilot-swe-agent))\n\n#### Committers: 2\n- Copilot [Bot] ([@copilot-swe-agent](https://github.com/apps/copilot-swe-agent))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
25+
"description": "## Release (2026-03-14)\n\n* ember-eslint-parser 0.8.0 (minor)\n\n#### :rocket: Enhancement\n* `ember-eslint-parser`\n * [#173](https://github.com/ember-tooling/ember-eslint-parser/pull/173) Replace custom buffer management with content-tag v4 UTF-16 codepoint indices ([@Copilot](https://github.com/apps/copilot-swe-agent))\n * [#162](https://github.com/ember-tooling/ember-eslint-parser/pull/162) perf: optimize ember-eslint-parser hot paths for faster `pnpm bench` results ([@Copilot](https://github.com/apps/copilot-swe-agent))\n\n#### :bug: Bug Fix\n* `ember-eslint-parser`\n * [#164](https://github.com/ember-tooling/ember-eslint-parser/pull/164) Add failing tests for #163: non-ASCII chars corrupt .gts imports ([@gitKrystan](https://github.com/gitKrystan))\n * [#159](https://github.com/ember-tooling/ember-eslint-parser/pull/159) Fix dynamic imports of .gts components triggering `@typescript-eslint/no-unsafe-assignment` ([@Copilot](https://github.com/apps/copilot-swe-agent))\n\n#### :house: Internal\n* `ember-eslint-parser`\n * [#165](https://github.com/ember-tooling/ember-eslint-parser/pull/165) CI bench ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#171](https://github.com/ember-tooling/ember-eslint-parser/pull/171) bench-compare: skip PR comment on fork PRs, write results to job summary ([@Copilot](https://github.com/apps/copilot-swe-agent))\n * [#169](https://github.com/ember-tooling/ember-eslint-parser/pull/169) bench compare: separate summary tables by file type with file size and Δ symbol ([@Copilot](https://github.com/apps/copilot-swe-agent))\n * [#168](https://github.com/ember-tooling/ember-eslint-parser/pull/168) Extract bench comment formatting into scripts/format-bench-comment.mjs ([@Copilot](https://github.com/apps/copilot-swe-agent))\n * [#167](https://github.com/ember-tooling/ember-eslint-parser/pull/167) Fix bench-compare workflow: runner context unavailable at job-level env ([@Copilot](https://github.com/apps/copilot-swe-agent))\n * [#166](https://github.com/ember-tooling/ember-eslint-parser/pull/166) CI bench: compact PR comment with delta-only view and expandable full results ([@Copilot](https://github.com/apps/copilot-swe-agent))\n * [#161](https://github.com/ember-tooling/ember-eslint-parser/pull/161) Add vitest bench for parser performance measurement ([@Copilot](https://github.com/apps/copilot-swe-agent))\n\n#### Committers: 3\n- Copilot [Bot] ([@copilot-swe-agent](https://github.com/apps/copilot-swe-agent))\n- Krystan HuffMenne ([@gitKrystan](https://github.com/gitKrystan))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
2226
}

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,34 @@
11
# Changelog
22

3+
## Release (2026-03-14)
4+
5+
* ember-eslint-parser 0.8.0 (minor)
6+
7+
#### :rocket: Enhancement
8+
* `ember-eslint-parser`
9+
* [#173](https://github.com/ember-tooling/ember-eslint-parser/pull/173) Replace custom buffer management with content-tag v4 UTF-16 codepoint indices ([@Copilot](https://github.com/apps/copilot-swe-agent))
10+
* [#162](https://github.com/ember-tooling/ember-eslint-parser/pull/162) perf: optimize ember-eslint-parser hot paths for faster `pnpm bench` results ([@Copilot](https://github.com/apps/copilot-swe-agent))
11+
12+
#### :bug: Bug Fix
13+
* `ember-eslint-parser`
14+
* [#164](https://github.com/ember-tooling/ember-eslint-parser/pull/164) Add failing tests for #163: non-ASCII chars corrupt .gts imports ([@gitKrystan](https://github.com/gitKrystan))
15+
* [#159](https://github.com/ember-tooling/ember-eslint-parser/pull/159) Fix dynamic imports of .gts components triggering `@typescript-eslint/no-unsafe-assignment` ([@Copilot](https://github.com/apps/copilot-swe-agent))
16+
17+
#### :house: Internal
18+
* `ember-eslint-parser`
19+
* [#165](https://github.com/ember-tooling/ember-eslint-parser/pull/165) CI bench ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
20+
* [#171](https://github.com/ember-tooling/ember-eslint-parser/pull/171) bench-compare: skip PR comment on fork PRs, write results to job summary ([@Copilot](https://github.com/apps/copilot-swe-agent))
21+
* [#169](https://github.com/ember-tooling/ember-eslint-parser/pull/169) bench compare: separate summary tables by file type with file size and Δ symbol ([@Copilot](https://github.com/apps/copilot-swe-agent))
22+
* [#168](https://github.com/ember-tooling/ember-eslint-parser/pull/168) Extract bench comment formatting into scripts/format-bench-comment.mjs ([@Copilot](https://github.com/apps/copilot-swe-agent))
23+
* [#167](https://github.com/ember-tooling/ember-eslint-parser/pull/167) Fix bench-compare workflow: runner context unavailable at job-level env ([@Copilot](https://github.com/apps/copilot-swe-agent))
24+
* [#166](https://github.com/ember-tooling/ember-eslint-parser/pull/166) CI bench: compact PR comment with delta-only view and expandable full results ([@Copilot](https://github.com/apps/copilot-swe-agent))
25+
* [#161](https://github.com/ember-tooling/ember-eslint-parser/pull/161) Add vitest bench for parser performance measurement ([@Copilot](https://github.com/apps/copilot-swe-agent))
26+
27+
#### Committers: 3
28+
- Copilot [Bot] ([@copilot-swe-agent](https://github.com/apps/copilot-swe-agent))
29+
- Krystan HuffMenne ([@gitKrystan](https://github.com/gitKrystan))
30+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
31+
332
## Release (2026-03-04)
433

534
* ember-eslint-parser 0.7.0 (minor)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-eslint-parser",
3-
"version": "0.7.0",
3+
"version": "0.8.0",
44
"description": "",
55
"keywords": [],
66
"repository": {

0 commit comments

Comments
 (0)