Skip to content

Commit ecb3aeb

Browse files
Merge pull request #2720 from ember-cli/release-preview
Prepare Release v13.1.1
2 parents 2e7eea1 + ead63c1 commit ecb3aeb

3 files changed

Lines changed: 30 additions & 8 deletions

File tree

.release-plan.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
22
"solution": {
33
"eslint-plugin-ember": {
4-
"impact": "minor",
5-
"oldVersion": "13.0.0",
6-
"newVersion": "13.1.0",
4+
"impact": "patch",
5+
"oldVersion": "13.1.0",
6+
"newVersion": "13.1.1",
77
"tagName": "latest",
88
"constraints": [
99
{
10-
"impact": "minor",
11-
"reason": "Appears in changelog section :rocket: Enhancement"
10+
"impact": "patch",
11+
"reason": "Appears in changelog section :bug: Bug Fix"
1212
},
1313
{
1414
"impact": "patch",
15-
"reason": "Appears in changelog section :bug: Bug Fix"
15+
"reason": "Appears in changelog section :house: Internal"
1616
}
1717
],
1818
"pkgJSONPath": "./package.json"
1919
}
2020
},
21-
"description": "## Release (2026-04-21)\n\n* eslint-plugin-ember 13.1.0 (minor)\n\n#### :rocket: Enhancement\n* `eslint-plugin-ember`\n * [#2715](https://github.com/ember-cli/eslint-plugin-ember/pull/2715) feat: re-export hbs parser and document HBS flat-config setup ([@johanrd](https://github.com/johanrd))\n\n#### :bug: Bug Fix\n* `eslint-plugin-ember`\n * [#2713](https://github.com/ember-cli/eslint-plugin-ember/pull/2713) BUGFIX: false positive: interactive flow content inside <details> ([@johanrd](https://github.com/johanrd))\n\n#### Committers: 1\n- [@johanrd](https://github.com/johanrd)\n"
21+
"description": "## Release (2026-04-25)\n\n* eslint-plugin-ember 13.1.1 (patch)\n\n#### :bug: Bug Fix\n* `eslint-plugin-ember`\n * [#2735](https://github.com/ember-cli/eslint-plugin-ember/pull/2735) Update ember-eslint-parser to 0.11 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#2736](https://github.com/ember-cli/eslint-plugin-ember/pull/2736) fix: ignore comment + whitespace nodes in template-no-yield-only ([@johanrd](https://github.com/johanrd))\n * [#2722](https://github.com/ember-cli/eslint-plugin-ember/pull/2722) refactor(template-require-presentational-children): source role list from aria-query ([@johanrd](https://github.com/johanrd))\n * [#2719](https://github.com/ember-cli/eslint-plugin-ember/pull/2719) BUGFIX: template-no-aria-unsupported-elements — source the reserved-element list from aria-query ([@johanrd](https://github.com/johanrd))\n * [#2718](https://github.com/ember-cli/eslint-plugin-ember/pull/2718) BUGFIX: template-require-media-caption — compare kind=\"captions\" case-insensitively ([@johanrd](https://github.com/johanrd))\n * [#2714](https://github.com/ember-cli/eslint-plugin-ember/pull/2714) BUGFIX: accept tabindex=\"-1\" in template-require-aria-activedescendant-tabindex ([@johanrd](https://github.com/johanrd))\n\n#### :house: Internal\n* `eslint-plugin-ember`\n * [#2733](https://github.com/ember-cli/eslint-plugin-ember/pull/2733) test: cover {{! eslint-disable-* }} directives inside <template> in .gts ([@johanrd](https://github.com/johanrd))\n * [#2721](https://github.com/ember-cli/eslint-plugin-ember/pull/2721) refactor(template-no-abstract-roles): source abstract-role list from aria-query ([@johanrd](https://github.com/johanrd))\n\n#### Committers: 2\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n- [@johanrd](https://github.com/johanrd)\n"
2222
}

CHANGELOG.md

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

3+
## Release (2026-04-25)
4+
5+
* eslint-plugin-ember 13.1.1 (patch)
6+
7+
#### :bug: Bug Fix
8+
* `eslint-plugin-ember`
9+
* [#2735](https://github.com/ember-cli/eslint-plugin-ember/pull/2735) Update ember-eslint-parser to 0.11 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
10+
* [#2736](https://github.com/ember-cli/eslint-plugin-ember/pull/2736) fix: ignore comment + whitespace nodes in template-no-yield-only ([@johanrd](https://github.com/johanrd))
11+
* [#2722](https://github.com/ember-cli/eslint-plugin-ember/pull/2722) refactor(template-require-presentational-children): source role list from aria-query ([@johanrd](https://github.com/johanrd))
12+
* [#2719](https://github.com/ember-cli/eslint-plugin-ember/pull/2719) BUGFIX: template-no-aria-unsupported-elements — source the reserved-element list from aria-query ([@johanrd](https://github.com/johanrd))
13+
* [#2718](https://github.com/ember-cli/eslint-plugin-ember/pull/2718) BUGFIX: template-require-media-caption — compare kind="captions" case-insensitively ([@johanrd](https://github.com/johanrd))
14+
* [#2714](https://github.com/ember-cli/eslint-plugin-ember/pull/2714) BUGFIX: accept tabindex="-1" in template-require-aria-activedescendant-tabindex ([@johanrd](https://github.com/johanrd))
15+
16+
#### :house: Internal
17+
* `eslint-plugin-ember`
18+
* [#2733](https://github.com/ember-cli/eslint-plugin-ember/pull/2733) test: cover {{! eslint-disable-* }} directives inside <template> in .gts ([@johanrd](https://github.com/johanrd))
19+
* [#2721](https://github.com/ember-cli/eslint-plugin-ember/pull/2721) refactor(template-no-abstract-roles): source abstract-role list from aria-query ([@johanrd](https://github.com/johanrd))
20+
21+
#### Committers: 2
22+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
23+
- [@johanrd](https://github.com/johanrd)
24+
325
## Release (2026-04-21)
426

527
* eslint-plugin-ember 13.1.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": "eslint-plugin-ember",
3-
"version": "13.1.0",
3+
"version": "13.1.1",
44
"description": "ESLint plugin for Ember.js apps",
55
"keywords": [
66
"eslint",

0 commit comments

Comments
 (0)