@ember/app-blueprint 6.12.0-beta.0 → 6.12.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3,9 +3,11 @@ name: CI
3
3
  on:
4
4
  workflow_dispatch:
5
5
  pull_request:
6
+ paths-ignore:
7
+ - '**.md'
6
8
  push:
7
9
  paths-ignore:
8
- - '**/*.md'
10
+ - '**.md'
9
11
  branches:
10
12
  - main
11
13
 
@@ -23,19 +25,32 @@ jobs:
23
25
  - run: pnpm install --frozen-lockfile
24
26
  - run: pnpm lint
25
27
 
26
- test:
27
- name: Test
28
+ matrix-job:
29
+ name: "Setup Matrix"
30
+ runs-on: ubuntu-latest
31
+ timeout-minutes: 1
32
+ outputs:
33
+ matrix: ${{ steps.set-matrix.outputs.matrix }}
34
+
35
+ steps:
36
+ - uses: actions/checkout@v6
37
+ - uses: pnpm/action-setup@v4
38
+ - uses: actions/setup-node@v6
39
+ with:
40
+ node-version: 24
41
+ cache: 'pnpm'
42
+ - run: pnpm install
43
+ - id: set-matrix
44
+ run: echo "matrix=$(pnpm vitest-matrix --node 20 22 24 --os ubuntu-latest windows-latest)" >> $GITHUB_OUTPUT
45
+
46
+ tests:
47
+ name: ${{ matrix.name }} - Node ${{matrix.node}} - ${{matrix.os}}
28
48
  runs-on: ${{ matrix.os }}
49
+ needs: "matrix-job"
29
50
  strategy:
30
51
  fail-fast: false
31
52
  matrix:
32
- os:
33
- - ubuntu-latest
34
- - windows-latest
35
- node:
36
- - 20
37
- - 22
38
- - 24
53
+ include: ${{fromJson(needs.matrix-job.outputs.matrix)}}
39
54
 
40
55
  steps:
41
56
  - uses: actions/checkout@v4
@@ -45,9 +60,9 @@ jobs:
45
60
  node-version: ${{ matrix.node }}
46
61
  cache: pnpm
47
62
  - name: Set TEMP to D:/Temp on windows
48
- if: ${{matrix.os}} == windows-latest
63
+ if: ${{matrix.os == 'windows-latest'}}
49
64
  run: |
50
65
  mkdir "D:\\Temp"
51
66
  echo "TEMP=D:\\Temp" >> $env:GITHUB_ENV
52
67
  - run: pnpm install --frozen-lockfile
53
- - run: pnpm test
68
+ - run: pnpm ${{matrix.command}}
@@ -8,85 +8,50 @@ on:
8
8
  types:
9
9
  - labeled
10
10
  - unlabeled
11
- branches:
12
- - main
13
11
 
14
12
  concurrency:
15
13
  group: plan-release-alpha # only the latest one of these should ever be running
16
14
  cancel-in-progress: true
17
15
 
18
16
  jobs:
19
- is-this-a-release:
20
- name: "Is this a release?"
17
+ should-run-release-plan-prepare:
18
+ name: Should we run release-plan prepare?
21
19
  runs-on: ubuntu-latest
22
20
  outputs:
23
- command: ${{ steps.check-release.outputs.command }}
24
-
21
+ should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
25
22
  steps:
26
- - uses: actions/checkout@v4
23
+ - uses: release-plan/actions/should-prepare-release@v1
27
24
  with:
28
- fetch-depth: 2
29
25
  ref: 'main'
30
- # This will only cause the `is-this-a-release` job to have a "command" of `release`
31
- # when the .release-plan.json file was changed on the last commit.
32
- - id: check-release
33
- run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT
26
+ id: should-prepare
34
27
 
35
28
  create-prepare-release-pr:
36
29
  name: Create Prepare Release PR
37
30
  runs-on: ubuntu-latest
38
31
  timeout-minutes: 5
39
- needs: is-this-a-release
32
+ needs: should-run-release-plan-prepare
40
33
  permissions:
41
34
  contents: write
42
35
  issues: read
43
36
  pull-requests: write
44
- # only run on push event or workflow dispatch if plan wasn't updated (don't create a release plan when we're releasing)
45
- # only run on labeled event if the PR has already been merged
46
- if: ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.is-this-a-release.outputs.command != 'release') || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
47
-
37
+ if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
48
38
  steps:
49
- - uses: actions/checkout@v4
50
- # We need to download lots of history so that
51
- # github-changelog can discover what's changed since the last release
39
+ - uses: release-plan/actions/prepare@v1
40
+ name: Run release-plan prepare
52
41
  with:
53
- fetch-depth: 0
54
42
  ref: 'main'
55
- - uses: pnpm/action-setup@v4
56
- - uses: actions/setup-node@v4
57
- with:
58
- node-version: 18
59
- cache: pnpm
60
- - run: pnpm install --frozen-lockfile
61
- - name: "Generate Explanation and Prep Changelogs"
62
- id: explanation
63
- run: |
64
- set +e
65
- pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2)
66
-
67
- if [ $? -ne 0 ]; then
68
- release_plan_output=$(cat release-plan-stderr.txt)
69
- else
70
- release_plan_output=$(jq .description .release-plan.json -r)
71
- rm release-plan-stderr.txt
72
-
73
- if [ $(jq '.solution | length' .release-plan.json) -eq 1 ]; then
74
- new_version=$(jq -r '.solution[].newVersion' .release-plan.json)
75
- echo "new_version=v$new_version" >> $GITHUB_OUTPUT
76
- fi
77
- fi
78
- echo 'text<<EOF' >> $GITHUB_OUTPUT
79
- echo "$release_plan_output" >> $GITHUB_OUTPUT
80
- echo 'EOF' >> $GITHUB_OUTPUT
81
43
  env:
82
44
  GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
45
+ id: explanation
83
46
 
84
- - uses: peter-evans/create-pull-request@v7
47
+ - uses: peter-evans/create-pull-request@v8
48
+ name: Create Prepare Release PR
85
49
  with:
86
- commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
50
+ commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
87
51
  labels: "internal"
52
+ sign-commits: true
88
53
  branch: release-preview
89
- title: Prepare Alpha Release ${{ steps.explanation.outputs.new_version }}
54
+ title: Prepare Alpha Release ${{ steps.explanation.outputs.new-version }}
90
55
  body: |
91
56
  This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍
92
57
 
@@ -8,85 +8,50 @@ on:
8
8
  types:
9
9
  - labeled
10
10
  - unlabeled
11
- branches:
12
- - beta
13
11
 
14
12
  concurrency:
15
13
  group: plan-release-beta # only the latest one of these should ever be running
16
14
  cancel-in-progress: true
17
15
 
18
16
  jobs:
19
- is-this-a-release:
20
- name: "Is this a release?"
17
+ should-run-release-plan-prepare:
18
+ name: Should we run release-plan prepare?
21
19
  runs-on: ubuntu-latest
22
20
  outputs:
23
- command: ${{ steps.check-release.outputs.command }}
24
-
21
+ should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
25
22
  steps:
26
- - uses: actions/checkout@v4
23
+ - uses: release-plan/actions/should-prepare-release@v1
27
24
  with:
28
- fetch-depth: 2
29
25
  ref: 'beta'
30
- # This will only cause the `is-this-a-release` job to have a "command" of `release`
31
- # when the .release-plan.json file was changed on the last commit.
32
- - id: check-release
33
- run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT
26
+ id: should-prepare
34
27
 
35
28
  create-prepare-release-pr:
36
29
  name: Create Prepare Release PR
37
30
  runs-on: ubuntu-latest
38
31
  timeout-minutes: 5
39
- needs: is-this-a-release
32
+ needs: should-run-release-plan-prepare
40
33
  permissions:
41
34
  contents: write
42
35
  issues: read
43
36
  pull-requests: write
44
- # only run on push event or workflow dispatch if plan wasn't updated (don't create a release plan when we're releasing)
45
- # only run on labeled event if the PR has already been merged
46
- if: ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.is-this-a-release.outputs.command != 'release') || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
47
-
37
+ if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
48
38
  steps:
49
- - uses: actions/checkout@v4
50
- # We need to download lots of history so that
51
- # github-changelog can discover what's changed since the last release
39
+ - uses: release-plan/actions/prepare@v1
40
+ name: Run release-plan prepare
52
41
  with:
53
- fetch-depth: 0
54
42
  ref: 'beta'
55
- - uses: pnpm/action-setup@v4
56
- - uses: actions/setup-node@v4
57
- with:
58
- node-version: 18
59
- cache: pnpm
60
- - run: pnpm install --frozen-lockfile
61
- - name: "Generate Explanation and Prep Changelogs"
62
- id: explanation
63
- run: |
64
- set +e
65
- pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2)
66
-
67
- if [ $? -ne 0 ]; then
68
- release_plan_output=$(cat release-plan-stderr.txt)
69
- else
70
- release_plan_output=$(jq .description .release-plan.json -r)
71
- rm release-plan-stderr.txt
72
-
73
- if [ $(jq '.solution | length' .release-plan.json) -eq 1 ]; then
74
- new_version=$(jq -r '.solution[].newVersion' .release-plan.json)
75
- echo "new_version=v$new_version" >> $GITHUB_OUTPUT
76
- fi
77
- fi
78
- echo 'text<<EOF' >> $GITHUB_OUTPUT
79
- echo "$release_plan_output" >> $GITHUB_OUTPUT
80
- echo 'EOF' >> $GITHUB_OUTPUT
81
43
  env:
82
44
  GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
45
+ id: explanation
83
46
 
84
- - uses: peter-evans/create-pull-request@v7
47
+ - uses: peter-evans/create-pull-request@v8
48
+ name: Create Prepare Release PR
85
49
  with:
86
- commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
50
+ commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
87
51
  labels: "internal"
88
- branch: release-preview
89
- title: Prepare Beta Release ${{ steps.explanation.outputs.new_version }}
52
+ sign-commits: true
53
+ branch: release-preview-beta
54
+ title: Prepare Beta Release ${{ steps.explanation.outputs.new-version }}
90
55
  body: |
91
56
  This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍
92
57
 
@@ -8,85 +8,50 @@ on:
8
8
  types:
9
9
  - labeled
10
10
  - unlabeled
11
- branches:
12
- - release
13
11
 
14
12
  concurrency:
15
13
  group: plan-release # only the latest one of these should ever be running
16
14
  cancel-in-progress: true
17
15
 
18
16
  jobs:
19
- is-this-a-release:
20
- name: "Is this a release?"
17
+ should-run-release-plan-prepare:
18
+ name: Should we run release-plan prepare?
21
19
  runs-on: ubuntu-latest
22
20
  outputs:
23
- command: ${{ steps.check-release.outputs.command }}
24
-
21
+ should-prepare: ${{ steps.should-prepare.outputs.should-prepare }}
25
22
  steps:
26
- - uses: actions/checkout@v4
23
+ - uses: release-plan/actions/should-prepare-release@v1
27
24
  with:
28
- fetch-depth: 2
29
25
  ref: 'release'
30
- # This will only cause the `is-this-a-release` job to have a "command" of `release`
31
- # when the .release-plan.json file was changed on the last commit.
32
- - id: check-release
33
- run: if git diff --name-only HEAD HEAD~1 | grep -w -q ".release-plan.json"; then echo "command=release"; fi >> $GITHUB_OUTPUT
26
+ id: should-prepare
34
27
 
35
28
  create-prepare-release-pr:
36
29
  name: Create Prepare Release PR
37
30
  runs-on: ubuntu-latest
38
31
  timeout-minutes: 5
39
- needs: is-this-a-release
32
+ needs: should-run-release-plan-prepare
40
33
  permissions:
41
34
  contents: write
42
35
  issues: read
43
36
  pull-requests: write
44
- # only run on push event or workflow dispatch if plan wasn't updated (don't create a release plan when we're releasing)
45
- # only run on labeled event if the PR has already been merged
46
- if: ((github.event_name == 'push' || github.event_name == 'workflow_dispatch') && needs.is-this-a-release.outputs.command != 'release') || (github.event_name == 'pull_request_target' && github.event.pull_request.merged == true)
47
-
37
+ if: needs.should-run-release-plan-prepare.outputs.should-prepare == 'true'
48
38
  steps:
49
- - uses: actions/checkout@v4
50
- # We need to download lots of history so that
51
- # github-changelog can discover what's changed since the last release
39
+ - uses: release-plan/actions/prepare@v1
40
+ name: Run release-plan prepare
52
41
  with:
53
- fetch-depth: 0
54
42
  ref: 'release'
55
- - uses: pnpm/action-setup@v4
56
- - uses: actions/setup-node@v4
57
- with:
58
- node-version: 18
59
- cache: pnpm
60
- - run: pnpm install --frozen-lockfile
61
- - name: "Generate Explanation and Prep Changelogs"
62
- id: explanation
63
- run: |
64
- set +e
65
- pnpm release-plan prepare 2> >(tee -a release-plan-stderr.txt >&2)
66
-
67
- if [ $? -ne 0 ]; then
68
- release_plan_output=$(cat release-plan-stderr.txt)
69
- else
70
- release_plan_output=$(jq .description .release-plan.json -r)
71
- rm release-plan-stderr.txt
72
-
73
- if [ $(jq '.solution | length' .release-plan.json) -eq 1 ]; then
74
- new_version=$(jq -r '.solution[].newVersion' .release-plan.json)
75
- echo "new_version=v$new_version" >> $GITHUB_OUTPUT
76
- fi
77
- fi
78
- echo 'text<<EOF' >> $GITHUB_OUTPUT
79
- echo "$release_plan_output" >> $GITHUB_OUTPUT
80
- echo 'EOF' >> $GITHUB_OUTPUT
81
43
  env:
82
44
  GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
45
+ id: explanation
83
46
 
84
- - uses: peter-evans/create-pull-request@v7
47
+ - uses: peter-evans/create-pull-request@v8
48
+ name: Create Prepare Release PR
85
49
  with:
86
- commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
50
+ commit-message: "Prepare Release ${{ steps.explanation.outputs.new-version}} using 'release-plan'"
87
51
  labels: "internal"
88
- branch: release-preview
89
- title: Prepare Stable Release ${{ steps.explanation.outputs.new_version }}
52
+ sign-commits: true
53
+ branch: release-preview-stable
54
+ title: Prepare Stable Release ${{ steps.explanation.outputs.new-version }}
90
55
  body: |
91
56
  This PR is a preview of the release that [release-plan](https://github.com/embroider-build/release-plan) has prepared. To release you should just merge this PR 👍
92
57
 
@@ -0,0 +1,52 @@
1
+ # Every push to any of the primary branches (master, beta, release) with .release-plan.json modified,
2
+ # runs release-plan publish.
3
+
4
+ name: Publish
5
+
6
+ on:
7
+ workflow_dispatch:
8
+ push:
9
+ branches:
10
+ - main
11
+ - master
12
+ - release
13
+ - beta
14
+ - v-*
15
+ paths:
16
+ - '.release-plan.json'
17
+
18
+ concurrency:
19
+ group: publish-${{ github.head_ref || github.ref }}
20
+ cancel-in-progress: true
21
+
22
+ jobs:
23
+ publish:
24
+ name: "NPM Publish"
25
+ runs-on: ubuntu-latest
26
+ permissions:
27
+ contents: write
28
+ id-token: write
29
+ attestations: write
30
+
31
+ steps:
32
+ - uses: actions/checkout@v6
33
+ - uses: pnpm/action-setup@v4
34
+ - uses: actions/setup-node@v6
35
+ with:
36
+ node-version: 24
37
+ registry-url: 'https://registry.npmjs.org'
38
+ cache: pnpm
39
+ - run: pnpm install --frozen-lockfile
40
+ - name: Publish to NPM
41
+ # pass --github-prerelease when we are only branch other than release
42
+ # pass --publish-branch=<branch-name> when we are on a branch other than master/main
43
+ run: |
44
+ if [ ${{ github.ref }} = "refs/heads/beta" ]; then
45
+ pnpm release-plan publish --github-prerelease --publish-branch=beta
46
+ elif [ ${{ github.ref }} = "refs/heads/main" ]; then
47
+ pnpm release-plan publish --github-prerelease
48
+ else
49
+ pnpm release-plan publish --publish-branch=${{github.ref_name}}
50
+ fi
51
+ env:
52
+ GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
@@ -0,0 +1,3 @@
1
+ export default {
2
+ singleQuote: true,
3
+ };
@@ -2,9 +2,9 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "minor",
5
- "oldVersion": "6.12.0-alpha.0",
6
- "newVersion": "6.12.0-beta.0",
7
- "tagName": "beta",
5
+ "oldVersion": "6.11.2",
6
+ "newVersion": "6.12.0",
7
+ "tagName": "latest",
8
8
  "constraints": [
9
9
  {
10
10
  "impact": "minor",
@@ -26,5 +26,5 @@
26
26
  "pkgJSONPath": "./package.json"
27
27
  }
28
28
  },
29
- "description": "## Release (2026-01-23)\n\n* @ember/app-blueprint 6.12.0-beta.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#190](https://github.com/ember-cli/ember-app-blueprint/pull/190) Promote Beta and update all dependencies for 6.10 release ([@mansona](https://github.com/mansona))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#197](https://github.com/ember-cli/ember-app-blueprint/pull/197) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))\n * [#195](https://github.com/ember-cli/ember-app-blueprint/pull/195) add sort-package-json as a dependency ([@mansona](https://github.com/mansona))\n * [#187](https://github.com/ember-cli/ember-app-blueprint/pull/187) [bugfix beta] Revert \"Add --minimal and --no-compat\" ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#202](https://github.com/ember-cli/ember-app-blueprint/pull/202) Prepare 6.12-alpha ([@mansona](https://github.com/mansona))\n * [#200](https://github.com/ember-cli/ember-app-blueprint/pull/200) Prepare Beta Release v6.11.0-beta.1 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#199](https://github.com/ember-cli/ember-app-blueprint/pull/199) Prepare 6.11 Beta ([@mansona](https://github.com/mansona))\n\n#### Committers: 3\n- Chris Manson ([@mansona](https://github.com/mansona))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n- [@github-actions[bot]](https://github.com/apps/github-actions)\n"
29
+ "description": "## Release (2026-04-09)\n\n* @ember/app-blueprint 6.12.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#243](https://github.com/ember-cli/ember-app-blueprint/pull/243) Promote Beta and update all dependencies for 6.12 release ([@mansona](https://github.com/mansona))\n * [#144](https://github.com/ember-cli/ember-app-blueprint/pull/144) feat: move ember-cli-build to `mjs` ([@aklkv](https://github.com/aklkv))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#215](https://github.com/ember-cli/ember-app-blueprint/pull/215) upgrade ember/optional-features to clear install deprecation warnings ([@void-mAlex](https://github.com/void-mAlex))\n * [#119](https://github.com/ember-cli/ember-app-blueprint/pull/119) fix: align linters with recent changes in classic app blueprint ([@aklkv](https://github.com/aklkv))\n * [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#204](https://github.com/ember-cli/ember-app-blueprint/pull/204) Update Release.md ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#247](https://github.com/ember-cli/ember-app-blueprint/pull/247) update node for Publish CI to a version that doesn't need to update npm ([@mansona](https://github.com/mansona))\n * [#244](https://github.com/ember-cli/ember-app-blueprint/pull/244) split tests into individual matrix jobs ([@mansona](https://github.com/mansona))\n * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))\n * [#211](https://github.com/ember-cli/ember-app-blueprint/pull/211) fix release-plan alpha tag ([@mansona](https://github.com/mansona))\n\n#### Committers: 4\n- Alex ([@void-mAlex](https://github.com/void-mAlex))\n- Alexey Kulakov ([@aklkv](https://github.com/aklkv))\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Markus Sanin ([@mkszepp](https://github.com/mkszepp))\n"
30
30
  }
package/CHANGELOG.md CHANGED
@@ -1,58 +1,101 @@
1
1
  # Changelog
2
2
 
3
- ## Release (2026-01-23)
3
+ ## Release (2026-04-09)
4
4
 
5
- * @ember/app-blueprint 6.12.0-beta.0 (minor)
5
+ * @ember/app-blueprint 6.12.0 (minor)
6
6
 
7
7
  #### :rocket: Enhancement
8
8
  * `@ember/app-blueprint`
9
- * [#190](https://github.com/ember-cli/ember-app-blueprint/pull/190) Promote Beta and update all dependencies for 6.10 release ([@mansona](https://github.com/mansona))
9
+ * [#243](https://github.com/ember-cli/ember-app-blueprint/pull/243) Promote Beta and update all dependencies for 6.12 release ([@mansona](https://github.com/mansona))
10
+ * [#144](https://github.com/ember-cli/ember-app-blueprint/pull/144) feat: move ember-cli-build to `mjs` ([@aklkv](https://github.com/aklkv))
10
11
 
11
12
  #### :bug: Bug Fix
12
13
  * `@ember/app-blueprint`
13
- * [#197](https://github.com/ember-cli/ember-app-blueprint/pull/197) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
14
- * [#195](https://github.com/ember-cli/ember-app-blueprint/pull/195) add sort-package-json as a dependency ([@mansona](https://github.com/mansona))
15
- * [#187](https://github.com/ember-cli/ember-app-blueprint/pull/187) [bugfix beta] Revert "Add --minimal and --no-compat" ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
14
+ * [#215](https://github.com/ember-cli/ember-app-blueprint/pull/215) upgrade ember/optional-features to clear install deprecation warnings ([@void-mAlex](https://github.com/void-mAlex))
15
+ * [#119](https://github.com/ember-cli/ember-app-blueprint/pull/119) fix: align linters with recent changes in classic app blueprint ([@aklkv](https://github.com/aklkv))
16
+ * [#208](https://github.com/ember-cli/ember-app-blueprint/pull/208) [Bugfix release] Add `globals.browser` to eslint config for TS files ([@mkszepp](https://github.com/mkszepp))
16
17
 
17
18
  #### :memo: Documentation
18
19
  * `@ember/app-blueprint`
19
- * [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))
20
+ * [#204](https://github.com/ember-cli/ember-app-blueprint/pull/204) Update Release.md ([@mansona](https://github.com/mansona))
20
21
 
21
22
  #### :house: Internal
22
23
  * `@ember/app-blueprint`
23
- * [#202](https://github.com/ember-cli/ember-app-blueprint/pull/202) Prepare 6.12-alpha ([@mansona](https://github.com/mansona))
24
- * [#200](https://github.com/ember-cli/ember-app-blueprint/pull/200) Prepare Beta Release v6.11.0-beta.1 ([@github-actions[bot]](https://github.com/apps/github-actions))
25
- * [#199](https://github.com/ember-cli/ember-app-blueprint/pull/199) Prepare 6.11 Beta ([@mansona](https://github.com/mansona))
24
+ * [#247](https://github.com/ember-cli/ember-app-blueprint/pull/247) update node for Publish CI to a version that doesn't need to update npm ([@mansona](https://github.com/mansona))
25
+ * [#244](https://github.com/ember-cli/ember-app-blueprint/pull/244) split tests into individual matrix jobs ([@mansona](https://github.com/mansona))
26
+ * [#228](https://github.com/ember-cli/ember-app-blueprint/pull/228) Enable patch publish ([@mansona](https://github.com/mansona))
27
+ * [#211](https://github.com/ember-cli/ember-app-blueprint/pull/211) fix release-plan alpha tag ([@mansona](https://github.com/mansona))
26
28
 
27
- #### Committers: 3
29
+ #### Committers: 4
30
+ - Alex ([@void-mAlex](https://github.com/void-mAlex))
31
+ - Alexey Kulakov ([@aklkv](https://github.com/aklkv))
28
32
  - Chris Manson ([@mansona](https://github.com/mansona))
29
- - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
30
- - [@github-actions[bot]](https://github.com/apps/github-actions)
33
+ - Markus Sanin ([@mkszepp](https://github.com/mkszepp))
31
34
 
32
- ## Release (2026-01-23)
35
+ ## Release (2026-03-03)
33
36
 
34
- * @ember/app-blueprint 6.11.0-beta.1 (minor)
37
+ * @ember/app-blueprint 6.11.2 (patch)
35
38
 
36
- #### :rocket: Enhancement
39
+ #### :bug: Bug Fix
37
40
  * `@ember/app-blueprint`
38
- * [#190](https://github.com/ember-cli/ember-app-blueprint/pull/190) Promote Beta and update all dependencies for 6.10 release ([@mansona](https://github.com/mansona))
41
+ * [#231](https://github.com/ember-cli/ember-app-blueprint/pull/231) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
42
+
43
+ #### Committers: 1
44
+ - Chris Manson ([@mansona](https://github.com/mansona))
45
+
46
+ ## Release (2026-03-01)
47
+
48
+ * @ember/app-blueprint 6.11.1 (patch)
39
49
 
40
50
  #### :bug: Bug Fix
41
51
  * `@ember/app-blueprint`
42
- * [#197](https://github.com/ember-cli/ember-app-blueprint/pull/197) update ember-cli dependency to latest ([@mansona](https://github.com/mansona))
43
- * [#195](https://github.com/ember-cli/ember-app-blueprint/pull/195) add sort-package-json as a dependency ([@mansona](https://github.com/mansona))
52
+ * [#226](https://github.com/ember-cli/ember-app-blueprint/pull/226) fix decorator-transforms runtime path in babel.config.mjs ([@mansona](https://github.com/mansona))
44
53
 
45
- #### :memo: Documentation
54
+ #### Committers: 1
55
+ - Chris Manson ([@mansona](https://github.com/mansona))
56
+
57
+ ## Release (2026-02-17)
58
+
59
+ * @ember/app-blueprint 6.11.0 (minor)
60
+
61
+ #### :rocket: Enhancement
46
62
  * `@ember/app-blueprint`
47
- * [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))
63
+ * [#222](https://github.com/ember-cli/ember-app-blueprint/pull/222) Promote Beta and update all dependencies for 6.11 release ([@mansona](https://github.com/mansona))
48
64
 
49
65
  #### :house: Internal
50
66
  * `@ember/app-blueprint`
51
- * [#199](https://github.com/ember-cli/ember-app-blueprint/pull/199) Prepare 6.11 Beta ([@mansona](https://github.com/mansona))
67
+ * [#158](https://github.com/ember-cli/ember-app-blueprint/pull/158) update RELEASE.md ([@mansona](https://github.com/mansona))
52
68
 
53
69
  #### Committers: 1
54
70
  - Chris Manson ([@mansona](https://github.com/mansona))
55
71
 
72
+ ## Release (2026-02-09)
73
+
74
+ * @ember/app-blueprint 6.10.4 (patch)
75
+
76
+ #### :bug: Bug Fix
77
+ * `@ember/app-blueprint`
78
+ * [#209](https://github.com/ember-cli/ember-app-blueprint/pull/209) Remove unnecessary empty lines when `--no-warp-drive` was passed ([@mkszepp](https://github.com/mkszepp))
79
+
80
+ #### :house: Internal
81
+ * `@ember/app-blueprint`
82
+ * [#217](https://github.com/ember-cli/ember-app-blueprint/pull/217) update release-plan to support OIDC ([@mansona](https://github.com/mansona))
83
+
84
+ #### Committers: 2
85
+ - Chris Manson ([@mansona](https://github.com/mansona))
86
+ - Markus Sanin ([@mkszepp](https://github.com/mkszepp))
87
+
88
+ ## Release (2026-01-23)
89
+
90
+ * @ember/app-blueprint 6.10.3 (patch)
91
+
92
+ #### :bug: Bug Fix
93
+ * `@ember/app-blueprint`
94
+ * [#205](https://github.com/ember-cli/ember-app-blueprint/pull/205) [bugfix release] Auto-choose correct compilerPath ([@ef4](https://github.com/ef4))
95
+
96
+ #### Committers: 1
97
+ - Edward Faulkner ([@ef4](https://github.com/ef4))
98
+
56
99
  ## Release (2026-01-23)
57
100
 
58
101
  * @ember/app-blueprint 6.10.2 (patch)