@ember/app-blueprint 6.9.0-alpha.2 → 6.9.0-beta.2
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.
- package/.github/workflows/plan-alpha-release.yml +2 -0
- package/.github/workflows/plan-beta-release.yml +95 -0
- package/.github/workflows/plan-stable-release.yml +95 -0
- package/.github/workflows/publish-beta.yml +42 -0
- package/.github/workflows/publish-stable.yml +42 -0
- package/.release-plan.json +5 -13
- package/CHANGELOG.md +73 -38
- package/files/_ts_eslint.config.mjs +1 -0
- package/files/package.json +2 -2
- package/package.json +3 -3
|
@@ -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 }}
|
package/.release-plan.json
CHANGED
|
@@ -1,23 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.9.0-
|
|
6
|
-
"newVersion": "6.9.0-
|
|
7
|
-
"tagName": "
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "6.9.0-beta.1",
|
|
6
|
+
"newVersion": "6.9.0-beta.2",
|
|
7
|
+
"tagName": "beta",
|
|
8
8
|
"constraints": [
|
|
9
|
-
{
|
|
10
|
-
"impact": "minor",
|
|
11
|
-
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
-
},
|
|
13
9
|
{
|
|
14
10
|
"impact": "patch",
|
|
15
11
|
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
16
12
|
},
|
|
17
|
-
{
|
|
18
|
-
"impact": "patch",
|
|
19
|
-
"reason": "Appears in changelog section :memo: Documentation"
|
|
20
|
-
},
|
|
21
13
|
{
|
|
22
14
|
"impact": "patch",
|
|
23
15
|
"reason": "Appears in changelog section :house: Internal"
|
|
@@ -26,5 +18,5 @@
|
|
|
26
18
|
"pkgJSONPath": "./package.json"
|
|
27
19
|
}
|
|
28
20
|
},
|
|
29
|
-
"description": "## Release (2025-
|
|
21
|
+
"description": "## Release (2025-11-06)\n\n* @ember/app-blueprint 6.9.0-beta.2 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\n * [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))\n * [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))\n * [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#122](https://github.com/ember-cli/ember-app-blueprint/pull/122) Merge release into beta ([@mansona](https://github.com/mansona))\n * [#127](https://github.com/ember-cli/ember-app-blueprint/pull/127) Prepare Stable Release v6.8.3 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#121](https://github.com/ember-cli/ember-app-blueprint/pull/121) Prepare Stable Release v6.8.2 ([@github-actions[bot]](https://github.com/apps/github-actions))\n * [#117](https://github.com/ember-cli/ember-app-blueprint/pull/117) Prepare Stable Release v6.8.1 ([@github-actions[bot]](https://github.com/apps/github-actions))\n\n#### Committers: 4\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- [@github-actions[bot]](https://github.com/apps/github-actions)\n"
|
|
30
22
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,82 +1,117 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-11-06)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.9.0-beta.2 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))
|
|
10
|
+
* [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))
|
|
11
|
+
* [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))
|
|
12
|
+
|
|
13
|
+
#### :house: Internal
|
|
14
|
+
* `@ember/app-blueprint`
|
|
15
|
+
* [#122](https://github.com/ember-cli/ember-app-blueprint/pull/122) Merge release into beta ([@mansona](https://github.com/mansona))
|
|
16
|
+
* [#127](https://github.com/ember-cli/ember-app-blueprint/pull/127) Prepare Stable Release v6.8.3 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
17
|
+
* [#121](https://github.com/ember-cli/ember-app-blueprint/pull/121) Prepare Stable Release v6.8.2 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
18
|
+
* [#117](https://github.com/ember-cli/ember-app-blueprint/pull/117) Prepare Stable Release v6.8.1 ([@github-actions[bot]](https://github.com/apps/github-actions))
|
|
19
|
+
|
|
20
|
+
#### Committers: 4
|
|
21
|
+
- Alexey Kulakov ([@aklkv](https://github.com/aklkv))
|
|
22
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
23
|
+
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
24
|
+
- [@github-actions[bot]](https://github.com/apps/github-actions)
|
|
25
|
+
|
|
26
|
+
## Release (2025-11-02)
|
|
27
|
+
|
|
28
|
+
* @ember/app-blueprint 6.8.3 (patch)
|
|
29
|
+
|
|
30
|
+
#### :bug: Bug Fix
|
|
31
|
+
* `@ember/app-blueprint`
|
|
32
|
+
* [#126](https://github.com/ember-cli/ember-app-blueprint/pull/126) [bugfix release] Add eslint parser option `project: true` ([@mkszepp](https://github.com/mkszepp))
|
|
33
|
+
|
|
34
|
+
#### Committers: 1
|
|
35
|
+
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
36
|
+
|
|
37
|
+
## Release (2025-10-24)
|
|
38
|
+
|
|
39
|
+
* @ember/app-blueprint 6.8.2 (patch)
|
|
40
|
+
|
|
41
|
+
#### :bug: Bug Fix
|
|
42
|
+
* `@ember/app-blueprint`
|
|
43
|
+
* [#120](https://github.com/ember-cli/ember-app-blueprint/pull/120) [bugfix release] set node version in engines to >= 20 ([@aklkv](https://github.com/aklkv))
|
|
44
|
+
|
|
45
|
+
#### Committers: 1
|
|
46
|
+
- Alexey Kulakov ([@aklkv](https://github.com/aklkv))
|
|
47
|
+
|
|
48
|
+
## Release (2025-10-17)
|
|
49
|
+
|
|
50
|
+
* @ember/app-blueprint 6.8.1 (patch)
|
|
51
|
+
|
|
52
|
+
#### :bug: Bug Fix
|
|
53
|
+
* `@ember/app-blueprint`
|
|
54
|
+
* [#116](https://github.com/ember-cli/ember-app-blueprint/pull/116) [bugfix release] update ember-cli version to latest stable ([@mansona](https://github.com/mansona))
|
|
55
|
+
|
|
56
|
+
#### Committers: 1
|
|
57
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
58
|
+
|
|
3
59
|
## Release (2025-10-14)
|
|
4
60
|
|
|
5
|
-
* @ember/app-blueprint 6.9.0-
|
|
61
|
+
* @ember/app-blueprint 6.9.0-beta.1 (minor)
|
|
6
62
|
|
|
7
63
|
#### :rocket: Enhancement
|
|
8
64
|
* `@ember/app-blueprint`
|
|
9
|
-
* [#
|
|
10
|
-
* [#
|
|
11
|
-
* [#
|
|
12
|
-
* [#91](https://github.com/ember-cli/ember-app-blueprint/pull/91) [bugfix beta] add legacy inspector support ([@mansona](https://github.com/mansona))
|
|
65
|
+
* [#111](https://github.com/ember-cli/ember-app-blueprint/pull/111) Prepare 6.9 Beta ([@mansona](https://github.com/mansona))
|
|
66
|
+
* [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))
|
|
67
|
+
* [#76](https://github.com/ember-cli/ember-app-blueprint/pull/76) Prepare 6.9-alpha ([@mansona](https://github.com/mansona))
|
|
13
68
|
|
|
14
69
|
#### :bug: Bug Fix
|
|
15
70
|
* `@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
71
|
* [#78](https://github.com/ember-cli/ember-app-blueprint/pull/78) Use strict mode for all CJS files ([@simonihmig](https://github.com/simonihmig))
|
|
21
72
|
|
|
22
73
|
#### :memo: Documentation
|
|
23
74
|
* `@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
75
|
* [#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
76
|
* [#81](https://github.com/ember-cli/ember-app-blueprint/pull/81) Correct example usage command in README ([@abeforgit](https://github.com/abeforgit))
|
|
27
77
|
* [#80](https://github.com/ember-cli/ember-app-blueprint/pull/80) Fix formatting of README file ([@bertdeblock](https://github.com/bertdeblock))
|
|
28
78
|
|
|
29
79
|
#### :house: Internal
|
|
30
80
|
* `@ember/app-blueprint`
|
|
81
|
+
* [#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))
|
|
82
|
+
* [#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
83
|
* [#108](https://github.com/ember-cli/ember-app-blueprint/pull/108) update release-plan ([@mansona](https://github.com/mansona))
|
|
32
84
|
* [#106](https://github.com/ember-cli/ember-app-blueprint/pull/106) Merge beta into main ([@mansona](https://github.com/mansona))
|
|
33
|
-
* [#
|
|
34
|
-
|
|
35
|
-
|
|
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
|
|
85
|
+
* [#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))
|
|
86
|
+
|
|
87
|
+
#### Committers: 5
|
|
47
88
|
- Arne Bertrand ([@abeforgit](https://github.com/abeforgit))
|
|
48
89
|
- Bert De Block ([@bertdeblock](https://github.com/bertdeblock))
|
|
49
90
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
50
|
-
- Florian Pichler ([@pichfl](https://github.com/pichfl))
|
|
51
91
|
- Simon Ihmig ([@simonihmig](https://github.com/simonihmig))
|
|
52
|
-
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
53
92
|
- [@github-actions[bot]](https://github.com/apps/github-actions)
|
|
54
93
|
|
|
55
|
-
## Release (2025-
|
|
94
|
+
## Release (2025-10-14)
|
|
56
95
|
|
|
57
|
-
* @ember/app-blueprint 6.
|
|
96
|
+
* @ember/app-blueprint 6.8.0 (minor)
|
|
58
97
|
|
|
59
98
|
#### :rocket: Enhancement
|
|
60
99
|
* `@ember/app-blueprint`
|
|
61
|
-
* [#
|
|
100
|
+
* [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))
|
|
62
101
|
|
|
63
102
|
#### Committers: 1
|
|
64
103
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
65
104
|
|
|
66
|
-
## Release (2025-
|
|
67
|
-
|
|
68
|
-
* @ember/app-blueprint 6.8.0-beta.1 (minor)
|
|
105
|
+
## Release (2025-10-02)
|
|
69
106
|
|
|
70
|
-
|
|
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))
|
|
107
|
+
* @ember/app-blueprint 6.7.2 (patch)
|
|
73
108
|
|
|
74
|
-
#### :
|
|
109
|
+
#### :bug: Bug Fix
|
|
75
110
|
* `@ember/app-blueprint`
|
|
76
|
-
* [#
|
|
111
|
+
* [#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
112
|
|
|
78
113
|
#### Committers: 1
|
|
79
|
-
-
|
|
114
|
+
- Florian Pichler ([@pichfl](https://github.com/pichfl))
|
|
80
115
|
|
|
81
116
|
## Release (2025-09-04)
|
|
82
117
|
|
package/files/package.json
CHANGED
|
@@ -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-
|
|
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",
|
|
@@ -103,7 +103,7 @@
|
|
|
103
103
|
"vite": "^7.1.9"
|
|
104
104
|
},
|
|
105
105
|
"engines": {
|
|
106
|
-
"node": ">=
|
|
106
|
+
"node": ">= 20"
|
|
107
107
|
},
|
|
108
108
|
"ember": {
|
|
109
109
|
"edition": "octane"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ember/app-blueprint",
|
|
3
|
-
"version": "6.9.0-
|
|
3
|
+
"version": "6.9.0-beta.2",
|
|
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": "
|
|
21
|
-
"publishTag": "
|
|
20
|
+
"semverIncrementTag": "beta",
|
|
21
|
+
"publishTag": "beta"
|
|
22
22
|
},
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"chalk": "^4.1.2",
|