@ember/app-blueprint 6.9.0-alpha.2 → 6.9.0-beta.1

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.
@@ -8,6 +8,8 @@ on:
8
8
  types:
9
9
  - labeled
10
10
  - unlabeled
11
+ branches:
12
+ - main
11
13
 
12
14
  concurrency:
13
15
  group: plan-release-alpha # only the latest one of these should ever be running
@@ -0,0 +1,95 @@
1
+ name: Plan Beta Release
2
+ on:
3
+ workflow_dispatch:
4
+ push:
5
+ branches:
6
+ - beta
7
+ pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
8
+ types:
9
+ - labeled
10
+ - unlabeled
11
+ branches:
12
+ - beta
13
+
14
+ concurrency:
15
+ group: plan-release-beta # only the latest one of these should ever be running
16
+ cancel-in-progress: true
17
+
18
+ jobs:
19
+ is-this-a-release:
20
+ name: "Is this a release?"
21
+ runs-on: ubuntu-latest
22
+ outputs:
23
+ command: ${{ steps.check-release.outputs.command }}
24
+
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ with:
28
+ fetch-depth: 2
29
+ 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
34
+
35
+ create-prepare-release-pr:
36
+ name: Create Prepare Release PR
37
+ runs-on: ubuntu-latest
38
+ timeout-minutes: 5
39
+ needs: is-this-a-release
40
+ permissions:
41
+ contents: write
42
+ issues: read
43
+ 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
+
48
+ 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
52
+ with:
53
+ fetch-depth: 0
54
+ 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
+ env:
82
+ GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
83
+
84
+ - uses: peter-evans/create-pull-request@v7
85
+ with:
86
+ commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
87
+ labels: "internal"
88
+ branch: release-preview
89
+ title: Prepare Beta Release ${{ steps.explanation.outputs.new_version }}
90
+ body: |
91
+ 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
+
93
+ -----------------------------------------
94
+
95
+ ${{ steps.explanation.outputs.text }}
@@ -0,0 +1,95 @@
1
+ name: Plan Stable Release
2
+ on:
3
+ workflow_dispatch:
4
+ push:
5
+ branches:
6
+ - release
7
+ pull_request_target: # This workflow has permissions on the repo, do NOT run code from PRs in this workflow. See https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
8
+ types:
9
+ - labeled
10
+ - unlabeled
11
+ branches:
12
+ - release
13
+
14
+ concurrency:
15
+ group: plan-release # only the latest one of these should ever be running
16
+ cancel-in-progress: true
17
+
18
+ jobs:
19
+ is-this-a-release:
20
+ name: "Is this a release?"
21
+ runs-on: ubuntu-latest
22
+ outputs:
23
+ command: ${{ steps.check-release.outputs.command }}
24
+
25
+ steps:
26
+ - uses: actions/checkout@v4
27
+ with:
28
+ fetch-depth: 2
29
+ 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
34
+
35
+ create-prepare-release-pr:
36
+ name: Create Prepare Release PR
37
+ runs-on: ubuntu-latest
38
+ timeout-minutes: 5
39
+ needs: is-this-a-release
40
+ permissions:
41
+ contents: write
42
+ issues: read
43
+ 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
+
48
+ 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
52
+ with:
53
+ fetch-depth: 0
54
+ 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
+ env:
82
+ GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
83
+
84
+ - uses: peter-evans/create-pull-request@v7
85
+ with:
86
+ commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
87
+ labels: "internal"
88
+ branch: release-preview
89
+ title: Prepare Stable Release ${{ steps.explanation.outputs.new_version }}
90
+ body: |
91
+ 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
+
93
+ -----------------------------------------
94
+
95
+ ${{ steps.explanation.outputs.text }}
@@ -0,0 +1,42 @@
1
+ # For every push to the primary branch with .release-plan.json modified,
2
+ # runs release-plan.
3
+
4
+ name: Publish Beta
5
+
6
+ on:
7
+ workflow_dispatch:
8
+ push:
9
+ branches:
10
+ - beta
11
+ paths:
12
+ - '.release-plan.json'
13
+
14
+ concurrency:
15
+ group: publish-${{ github.head_ref || github.ref }}
16
+ cancel-in-progress: true
17
+
18
+ jobs:
19
+ publish:
20
+ name: "NPM Publish"
21
+ runs-on: ubuntu-latest
22
+ permissions:
23
+ contents: write
24
+ pull-requests: write
25
+ id-token: write
26
+ attestations: write
27
+
28
+ steps:
29
+ - uses: actions/checkout@v4
30
+ - uses: pnpm/action-setup@v4
31
+ - uses: actions/setup-node@v4
32
+ with:
33
+ node-version: 18
34
+ # This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
35
+ registry-url: 'https://registry.npmjs.org'
36
+ cache: pnpm
37
+ - run: pnpm install --frozen-lockfile
38
+ - name: Publish to NPM
39
+ run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=beta --github-prerelease
40
+ env:
41
+ GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
42
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,42 @@
1
+ # For every push to the primary branch with .release-plan.json modified,
2
+ # runs release-plan.
3
+
4
+ name: Publish Stable
5
+
6
+ on:
7
+ workflow_dispatch:
8
+ push:
9
+ branches:
10
+ - release
11
+ paths:
12
+ - '.release-plan.json'
13
+
14
+ concurrency:
15
+ group: publish-${{ github.head_ref || github.ref }}
16
+ cancel-in-progress: true
17
+
18
+ jobs:
19
+ publish:
20
+ name: "NPM Publish"
21
+ runs-on: ubuntu-latest
22
+ permissions:
23
+ contents: write
24
+ pull-requests: write
25
+ id-token: write
26
+ attestations: write
27
+
28
+ steps:
29
+ - uses: actions/checkout@v4
30
+ - uses: pnpm/action-setup@v4
31
+ - uses: actions/setup-node@v4
32
+ with:
33
+ node-version: 18
34
+ # This creates an .npmrc that reads the NODE_AUTH_TOKEN environment variable
35
+ registry-url: 'https://registry.npmjs.org'
36
+ cache: pnpm
37
+ - run: pnpm install --frozen-lockfile
38
+ - name: Publish to NPM
39
+ run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=release
40
+ env:
41
+ GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
42
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
@@ -2,9 +2,9 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "minor",
5
- "oldVersion": "6.9.0-alpha.1",
6
- "newVersion": "6.9.0-alpha.2",
7
- "tagName": "alpha",
5
+ "oldVersion": "6.9.0-beta.0",
6
+ "newVersion": "6.9.0-beta.1",
7
+ "tagName": "beta",
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 (2025-10-14)\n\n* @ember/app-blueprint 6.9.0-alpha.2 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#103](https://github.com/ember-cli/ember-app-blueprint/pull/103) [beta] update Vite to latest (v7) ([@mansona](https://github.com/mansona))\n * [#98](https://github.com/ember-cli/ember-app-blueprint/pull/98) Update deps ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#95](https://github.com/ember-cli/ember-app-blueprint/pull/95) [Beta] add services directory ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#91](https://github.com/ember-cli/ember-app-blueprint/pull/91) [bugfix beta] add legacy inspector support ([@mansona](https://github.com/mansona))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#100](https://github.com/ember-cli/ember-app-blueprint/pull/100) [beta] swap to the Vitest beta to fix CI ([@mansona](https://github.com/mansona))\n * [#88](https://github.com/ember-cli/ember-app-blueprint/pull/88) [bugfix beta] fix the use of ember test in the new blueprint ([@mansona](https://github.com/mansona))\n * [#86](https://github.com/ember-cli/ember-app-blueprint/pull/86) [bugfix beta] update ember-cli to beta ([@mansona](https://github.com/mansona))\n * [#82](https://github.com/ember-cli/ember-app-blueprint/pull/82) Use TypeScript way of accessing potentially undefined `podModulePrefix` ([@pichfl](https://github.com/pichfl))\n * [#78](https://github.com/ember-cli/ember-app-blueprint/pull/78) Use strict mode for all CJS files ([@simonihmig](https://github.com/simonihmig))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#97](https://github.com/ember-cli/ember-app-blueprint/pull/97) [documentation beta] update readme for Vite ([@mansona](https://github.com/mansona))\n * [#64](https://github.com/ember-cli/ember-app-blueprint/pull/64) Update the release document to match the ember-cli process ([@mansona](https://github.com/mansona))\n * [#81](https://github.com/ember-cli/ember-app-blueprint/pull/81) Correct example usage command in README ([@abeforgit](https://github.com/abeforgit))\n * [#80](https://github.com/ember-cli/ember-app-blueprint/pull/80) Fix formatting of README file ([@bertdeblock](https://github.com/bertdeblock))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#108](https://github.com/ember-cli/ember-app-blueprint/pull/108) update release-plan ([@mansona](https://github.com/mansona))\n * [#106](https://github.com/ember-cli/ember-app-blueprint/pull/106) Merge beta into main ([@mansona](https://github.com/mansona))\n * [#105](https://github.com/ember-cli/ember-app-blueprint/pull/105) Prepare Beta Release v6.8.0-beta.8 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#104](https://github.com/ember-cli/ember-app-blueprint/pull/104) Merge release into beta ([@mansona](https://github.com/mansona))\n * [#102](https://github.com/ember-cli/ember-app-blueprint/pull/102) Prepare Beta Release v6.8.0-beta.7 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))\n * [#96](https://github.com/ember-cli/ember-app-blueprint/pull/96) Prepare Beta Release v6.8.0-beta.6 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#93](https://github.com/ember-cli/ember-app-blueprint/pull/93) Add Windows tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#92](https://github.com/ember-cli/ember-app-blueprint/pull/92) Prepare Beta Release v6.8.0-beta.5 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#89](https://github.com/ember-cli/ember-app-blueprint/pull/89) Prepare Beta Release v6.8.0-beta.4 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#87](https://github.com/ember-cli/ember-app-blueprint/pull/87) Prepare Beta Release v6.8.0-beta.3 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#85](https://github.com/ember-cli/ember-app-blueprint/pull/85) Prepare Stable Release v6.7.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#84](https://github.com/ember-cli/ember-app-blueprint/pull/84) Prepare Beta Release v6.8.0-beta.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#83](https://github.com/ember-cli/ember-app-blueprint/pull/83) update ember source to latest beta ([@mansona](https://github.com/mansona))\n\n#### Committers: 7\n- Arne Bertrand ([@abeforgit](https://github.com/abeforgit))\n- Bert De Block ([@bertdeblock](https://github.com/bertdeblock))\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Florian Pichler ([@pichfl](https://github.com/pichfl))\n- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n- [@github-actions[bot]](https://github.com/apps/github-actions)\n"
29
+ "description": "## Release (2025-10-14)\n\n* @ember/app-blueprint 6.9.0-beta.1 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#111](https://github.com/ember-cli/ember-app-blueprint/pull/111) Prepare 6.9 Beta ([@mansona](https://github.com/mansona))\n * [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))\n * [#76](https://github.com/ember-cli/ember-app-blueprint/pull/76) Prepare 6.9-alpha ([@mansona](https://github.com/mansona))\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#78](https://github.com/ember-cli/ember-app-blueprint/pull/78) Use strict mode for all CJS files ([@simonihmig](https://github.com/simonihmig))\n\n#### :memo: Documentation\n* `@ember/app-blueprint`\n * [#64](https://github.com/ember-cli/ember-app-blueprint/pull/64) Update the release document to match the ember-cli process ([@mansona](https://github.com/mansona))\n * [#81](https://github.com/ember-cli/ember-app-blueprint/pull/81) Correct example usage command in README ([@abeforgit](https://github.com/abeforgit))\n * [#80](https://github.com/ember-cli/ember-app-blueprint/pull/80) Fix formatting of README file ([@bertdeblock](https://github.com/bertdeblock))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#110](https://github.com/ember-cli/ember-app-blueprint/pull/110) Prepare Stable Release v6.8.0 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#107](https://github.com/ember-cli/ember-app-blueprint/pull/107) Prepare Alpha Release v6.9.0-alpha.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#108](https://github.com/ember-cli/ember-app-blueprint/pull/108) update release-plan ([@mansona](https://github.com/mansona))\n * [#106](https://github.com/ember-cli/ember-app-blueprint/pull/106) Merge beta into main ([@mansona](https://github.com/mansona))\n * [#77](https://github.com/ember-cli/ember-app-blueprint/pull/77) Prepare Alpha Release v6.9.0-alpha.1 ([@github-actions[bot]](https://github.com/apps/github-actions))\n\n#### Committers: 5\n- Arne Bertrand ([@abeforgit](https://github.com/abeforgit))\n- Bert De Block ([@bertdeblock](https://github.com/bertdeblock))\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))\n- [@github-actions[bot]](https://github.com/apps/github-actions)\n"
30
30
  }
package/CHANGELOG.md CHANGED
@@ -2,81 +2,60 @@
2
2
 
3
3
  ## Release (2025-10-14)
4
4
 
5
- * @ember/app-blueprint 6.9.0-alpha.2 (minor)
5
+ * @ember/app-blueprint 6.9.0-beta.1 (minor)
6
6
 
7
7
  #### :rocket: Enhancement
8
8
  * `@ember/app-blueprint`
9
- * [#103](https://github.com/ember-cli/ember-app-blueprint/pull/103) [beta] update Vite to latest (v7) ([@mansona](https://github.com/mansona))
10
- * [#98](https://github.com/ember-cli/ember-app-blueprint/pull/98) Update deps ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
11
- * [#95](https://github.com/ember-cli/ember-app-blueprint/pull/95) [Beta] add services directory ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
12
- * [#91](https://github.com/ember-cli/ember-app-blueprint/pull/91) [bugfix beta] add legacy inspector support ([@mansona](https://github.com/mansona))
9
+ * [#111](https://github.com/ember-cli/ember-app-blueprint/pull/111) Prepare 6.9 Beta ([@mansona](https://github.com/mansona))
10
+ * [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))
11
+ * [#76](https://github.com/ember-cli/ember-app-blueprint/pull/76) Prepare 6.9-alpha ([@mansona](https://github.com/mansona))
13
12
 
14
13
  #### :bug: Bug Fix
15
14
  * `@ember/app-blueprint`
16
- * [#100](https://github.com/ember-cli/ember-app-blueprint/pull/100) [beta] swap to the Vitest beta to fix CI ([@mansona](https://github.com/mansona))
17
- * [#88](https://github.com/ember-cli/ember-app-blueprint/pull/88) [bugfix beta] fix the use of ember test in the new blueprint ([@mansona](https://github.com/mansona))
18
- * [#86](https://github.com/ember-cli/ember-app-blueprint/pull/86) [bugfix beta] update ember-cli to beta ([@mansona](https://github.com/mansona))
19
- * [#82](https://github.com/ember-cli/ember-app-blueprint/pull/82) Use TypeScript way of accessing potentially undefined `podModulePrefix` ([@pichfl](https://github.com/pichfl))
20
15
  * [#78](https://github.com/ember-cli/ember-app-blueprint/pull/78) Use strict mode for all CJS files ([@simonihmig](https://github.com/simonihmig))
21
16
 
22
17
  #### :memo: Documentation
23
18
  * `@ember/app-blueprint`
24
- * [#97](https://github.com/ember-cli/ember-app-blueprint/pull/97) [documentation beta] update readme for Vite ([@mansona](https://github.com/mansona))
25
19
  * [#64](https://github.com/ember-cli/ember-app-blueprint/pull/64) Update the release document to match the ember-cli process ([@mansona](https://github.com/mansona))
26
20
  * [#81](https://github.com/ember-cli/ember-app-blueprint/pull/81) Correct example usage command in README ([@abeforgit](https://github.com/abeforgit))
27
21
  * [#80](https://github.com/ember-cli/ember-app-blueprint/pull/80) Fix formatting of README file ([@bertdeblock](https://github.com/bertdeblock))
28
22
 
29
23
  #### :house: Internal
30
24
  * `@ember/app-blueprint`
25
+ * [#110](https://github.com/ember-cli/ember-app-blueprint/pull/110) Prepare Stable Release v6.8.0 ([@github-actions[bot]](https://github.com/apps/github-actions))
26
+ * [#107](https://github.com/ember-cli/ember-app-blueprint/pull/107) Prepare Alpha Release v6.9.0-alpha.2 ([@github-actions[bot]](https://github.com/apps/github-actions))
31
27
  * [#108](https://github.com/ember-cli/ember-app-blueprint/pull/108) update release-plan ([@mansona](https://github.com/mansona))
32
28
  * [#106](https://github.com/ember-cli/ember-app-blueprint/pull/106) Merge beta into main ([@mansona](https://github.com/mansona))
33
- * [#105](https://github.com/ember-cli/ember-app-blueprint/pull/105) Prepare Beta Release v6.8.0-beta.8 ([@github-actions[bot]](https://github.com/apps/github-actions))
34
- * [#104](https://github.com/ember-cli/ember-app-blueprint/pull/104) Merge release into beta ([@mansona](https://github.com/mansona))
35
- * [#102](https://github.com/ember-cli/ember-app-blueprint/pull/102) Prepare Beta Release v6.8.0-beta.7 ([@github-actions[bot]](https://github.com/apps/github-actions))
36
- * [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))
37
- * [#96](https://github.com/ember-cli/ember-app-blueprint/pull/96) Prepare Beta Release v6.8.0-beta.6 ([@github-actions[bot]](https://github.com/apps/github-actions))
38
- * [#93](https://github.com/ember-cli/ember-app-blueprint/pull/93) Add Windows tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
39
- * [#92](https://github.com/ember-cli/ember-app-blueprint/pull/92) Prepare Beta Release v6.8.0-beta.5 ([@github-actions[bot]](https://github.com/apps/github-actions))
40
- * [#89](https://github.com/ember-cli/ember-app-blueprint/pull/89) Prepare Beta Release v6.8.0-beta.4 ([@github-actions[bot]](https://github.com/apps/github-actions))
41
- * [#87](https://github.com/ember-cli/ember-app-blueprint/pull/87) Prepare Beta Release v6.8.0-beta.3 ([@github-actions[bot]](https://github.com/apps/github-actions))
42
- * [#85](https://github.com/ember-cli/ember-app-blueprint/pull/85) Prepare Stable Release v6.7.2 ([@github-actions[bot]](https://github.com/apps/github-actions))
43
- * [#84](https://github.com/ember-cli/ember-app-blueprint/pull/84) Prepare Beta Release v6.8.0-beta.2 ([@github-actions[bot]](https://github.com/apps/github-actions))
44
- * [#83](https://github.com/ember-cli/ember-app-blueprint/pull/83) update ember source to latest beta ([@mansona](https://github.com/mansona))
45
-
46
- #### Committers: 7
29
+ * [#77](https://github.com/ember-cli/ember-app-blueprint/pull/77) Prepare Alpha Release v6.9.0-alpha.1 ([@github-actions[bot]](https://github.com/apps/github-actions))
30
+
31
+ #### Committers: 5
47
32
  - Arne Bertrand ([@abeforgit](https://github.com/abeforgit))
48
33
  - Bert De Block ([@bertdeblock](https://github.com/bertdeblock))
49
34
  - Chris Manson ([@mansona](https://github.com/mansona))
50
- - Florian Pichler ([@pichfl](https://github.com/pichfl))
51
35
  - Simon Ihmig ([@simonihmig](https://github.com/simonihmig))
52
- - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
53
36
  - [@github-actions[bot]](https://github.com/apps/github-actions)
54
37
 
55
- ## Release (2025-09-05)
38
+ ## Release (2025-10-14)
56
39
 
57
- * @ember/app-blueprint 6.9.0-alpha.1 (minor)
40
+ * @ember/app-blueprint 6.8.0 (minor)
58
41
 
59
42
  #### :rocket: Enhancement
60
43
  * `@ember/app-blueprint`
61
- * [#76](https://github.com/ember-cli/ember-app-blueprint/pull/76) Prepare 6.9-alpha ([@mansona](https://github.com/mansona))
44
+ * [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))
62
45
 
63
46
  #### Committers: 1
64
47
  - Chris Manson ([@mansona](https://github.com/mansona))
65
48
 
66
- ## Release (2025-09-05)
49
+ ## Release (2025-10-02)
67
50
 
68
- * @ember/app-blueprint 6.8.0-beta.1 (minor)
51
+ * @ember/app-blueprint 6.7.2 (patch)
69
52
 
70
- #### :rocket: Enhancement
71
- * `@ember/app-blueprint`
72
- * [#73](https://github.com/ember-cli/ember-app-blueprint/pull/73) Prepare 6.8 beta ([@mansona](https://github.com/mansona))
73
-
74
- #### :house: Internal
53
+ #### :bug: Bug Fix
75
54
  * `@ember/app-blueprint`
76
- * [#75](https://github.com/ember-cli/ember-app-blueprint/pull/75) update the beta version ([@mansona](https://github.com/mansona))
55
+ * [#82](https://github.com/ember-cli/ember-app-blueprint/pull/82) Use TypeScript way of accessing potentially undefined `podModulePrefix` ([@pichfl](https://github.com/pichfl))
77
56
 
78
57
  #### Committers: 1
79
- - Chris Manson ([@mansona](https://github.com/mansona))
58
+ - Florian Pichler ([@pichfl](https://github.com/pichfl))
80
59
 
81
60
  ## Release (2025-09-04)
82
61
 
@@ -81,7 +81,7 @@
81
81
  "ember-page-title": "^9.0.3",
82
82
  "ember-qunit": "^9.0.4",
83
83
  "ember-resolver": "^13.1.1",
84
- "ember-source": "~6.9.0-alpha.6",
84
+ "ember-source": "~6.9.0-beta.1",
85
85
  "ember-template-lint": "^7.9.3<% if (welcome) { %>",
86
86
  "ember-welcome-page": "^7.0.2<% } %>",
87
87
  "eslint": "^9.37.0",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.9.0-alpha.2",
3
+ "version": "6.9.0-beta.1",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"
@@ -17,8 +17,8 @@
17
17
  "minor": "prerelease",
18
18
  "patch": "prerelease"
19
19
  },
20
- "semverIncrementTag": "alpha",
21
- "publishTag": "alpha"
20
+ "semverIncrementTag": "beta",
21
+ "publishTag": "beta"
22
22
  },
23
23
  "dependencies": {
24
24
  "chalk": "^4.1.2",