@ember/app-blueprint 6.8.0-beta.8 → 6.8.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.
|
@@ -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 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,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.
|
|
6
|
-
"newVersion": "6.8.0
|
|
7
|
-
"tagName": "
|
|
4
|
+
"impact": "minor",
|
|
5
|
+
"oldVersion": "6.7.2",
|
|
6
|
+
"newVersion": "6.8.0",
|
|
7
|
+
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
|
-
"impact": "
|
|
11
|
-
"reason": "Appears in changelog section :
|
|
10
|
+
"impact": "minor",
|
|
11
|
+
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
12
|
}
|
|
13
13
|
],
|
|
14
14
|
"pkgJSONPath": "./package.json"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"description": "## Release (2025-10-14)\n\n* @ember/app-blueprint 6.8.0
|
|
17
|
+
"description": "## Release (2025-10-14)\n\n* @ember/app-blueprint 6.8.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
|
|
18
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,114 +2,25 @@
|
|
|
2
2
|
|
|
3
3
|
## Release (2025-10-14)
|
|
4
4
|
|
|
5
|
-
* @ember/app-blueprint 6.8.0
|
|
6
|
-
|
|
7
|
-
#### :house: Internal
|
|
8
|
-
* `@ember/app-blueprint`
|
|
9
|
-
* [#104](https://github.com/ember-cli/ember-app-blueprint/pull/104) Merge release into beta ([@mansona](https://github.com/mansona))
|
|
10
|
-
|
|
11
|
-
#### Committers: 1
|
|
12
|
-
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
13
|
-
|
|
14
|
-
## Release (2025-10-13)
|
|
15
|
-
|
|
16
|
-
* @ember/app-blueprint 6.8.0-beta.7 (minor)
|
|
17
|
-
|
|
18
|
-
#### :rocket: Enhancement
|
|
19
|
-
* `@ember/app-blueprint`
|
|
20
|
-
* [#103](https://github.com/ember-cli/ember-app-blueprint/pull/103) [beta] update Vite to latest (v7) ([@mansona](https://github.com/mansona))
|
|
21
|
-
* [#98](https://github.com/ember-cli/ember-app-blueprint/pull/98) Update deps ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
22
|
-
|
|
23
|
-
#### :bug: Bug Fix
|
|
24
|
-
* `@ember/app-blueprint`
|
|
25
|
-
* [#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))
|
|
26
|
-
|
|
27
|
-
#### :house: Internal
|
|
28
|
-
* `@ember/app-blueprint`
|
|
29
|
-
* [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))
|
|
30
|
-
|
|
31
|
-
#### Committers: 2
|
|
32
|
-
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
33
|
-
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
34
|
-
|
|
35
|
-
## Release (2025-10-10)
|
|
36
|
-
|
|
37
|
-
* @ember/app-blueprint 6.8.0-beta.6 (minor)
|
|
5
|
+
* @ember/app-blueprint 6.8.0 (minor)
|
|
38
6
|
|
|
39
7
|
#### :rocket: Enhancement
|
|
40
8
|
* `@ember/app-blueprint`
|
|
41
|
-
* [#
|
|
42
|
-
|
|
43
|
-
#### :memo: Documentation
|
|
44
|
-
* `@ember/app-blueprint`
|
|
45
|
-
* [#97](https://github.com/ember-cli/ember-app-blueprint/pull/97) [documentation beta] update readme for Vite ([@mansona](https://github.com/mansona))
|
|
46
|
-
|
|
47
|
-
#### :house: Internal
|
|
48
|
-
* `@ember/app-blueprint`
|
|
49
|
-
* [#93](https://github.com/ember-cli/ember-app-blueprint/pull/93) Add Windows tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
50
|
-
|
|
51
|
-
#### Committers: 2
|
|
52
|
-
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
53
|
-
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
54
|
-
|
|
55
|
-
## Release (2025-10-06)
|
|
56
|
-
|
|
57
|
-
* @ember/app-blueprint 6.8.0-beta.5 (minor)
|
|
58
|
-
|
|
59
|
-
#### :rocket: Enhancement
|
|
60
|
-
* `@ember/app-blueprint`
|
|
61
|
-
* [#91](https://github.com/ember-cli/ember-app-blueprint/pull/91) [bugfix beta] add legacy inspector support ([@mansona](https://github.com/mansona))
|
|
9
|
+
* [#109](https://github.com/ember-cli/ember-app-blueprint/pull/109) Release 6.8 ([@mansona](https://github.com/mansona))
|
|
62
10
|
|
|
63
11
|
#### Committers: 1
|
|
64
12
|
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
65
13
|
|
|
66
|
-
## Release (2025-10-
|
|
14
|
+
## Release (2025-10-02)
|
|
67
15
|
|
|
68
|
-
* @ember/app-blueprint 6.
|
|
16
|
+
* @ember/app-blueprint 6.7.2 (patch)
|
|
69
17
|
|
|
70
18
|
#### :bug: Bug Fix
|
|
71
19
|
* `@ember/app-blueprint`
|
|
72
|
-
* [#
|
|
20
|
+
* [#82](https://github.com/ember-cli/ember-app-blueprint/pull/82) Use TypeScript way of accessing potentially undefined `podModulePrefix` ([@pichfl](https://github.com/pichfl))
|
|
73
21
|
|
|
74
22
|
#### Committers: 1
|
|
75
|
-
-
|
|
76
|
-
|
|
77
|
-
## Release (2025-10-03)
|
|
78
|
-
|
|
79
|
-
* @ember/app-blueprint 6.8.0-beta.3 (patch)
|
|
80
|
-
|
|
81
|
-
#### :bug: Bug Fix
|
|
82
|
-
* `@ember/app-blueprint`
|
|
83
|
-
* [#86](https://github.com/ember-cli/ember-app-blueprint/pull/86) [bugfix beta] update ember-cli to beta ([@mansona](https://github.com/mansona))
|
|
84
|
-
|
|
85
|
-
#### Committers: 1
|
|
86
|
-
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
87
|
-
|
|
88
|
-
## Release (2025-09-29)
|
|
89
|
-
|
|
90
|
-
* @ember/app-blueprint 6.8.0-beta.2 (patch)
|
|
91
|
-
|
|
92
|
-
#### :house: Internal
|
|
93
|
-
* `@ember/app-blueprint`
|
|
94
|
-
* [#83](https://github.com/ember-cli/ember-app-blueprint/pull/83) update ember source to latest beta ([@mansona](https://github.com/mansona))
|
|
95
|
-
|
|
96
|
-
#### Committers: 1
|
|
97
|
-
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
98
|
-
|
|
99
|
-
## Release (2025-09-05)
|
|
100
|
-
|
|
101
|
-
* @ember/app-blueprint 6.8.0-beta.1 (minor)
|
|
102
|
-
|
|
103
|
-
#### :rocket: Enhancement
|
|
104
|
-
* `@ember/app-blueprint`
|
|
105
|
-
* [#73](https://github.com/ember-cli/ember-app-blueprint/pull/73) Prepare 6.8 beta ([@mansona](https://github.com/mansona))
|
|
106
|
-
|
|
107
|
-
#### :house: Internal
|
|
108
|
-
* `@ember/app-blueprint`
|
|
109
|
-
* [#75](https://github.com/ember-cli/ember-app-blueprint/pull/75) update the beta version ([@mansona](https://github.com/mansona))
|
|
110
|
-
|
|
111
|
-
#### Committers: 1
|
|
112
|
-
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
23
|
+
- Florian Pichler ([@pichfl](https://github.com/pichfl))
|
|
113
24
|
|
|
114
25
|
## Release (2025-09-04)
|
|
115
26
|
|
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.8.0
|
|
84
|
+
"ember-source": "~6.8.0",
|
|
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.8.0
|
|
3
|
+
"version": "6.8.0",
|
|
4
4
|
"description": "Blueprint for next generation of Ember apps",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-blueprint"
|
|
@@ -12,14 +12,6 @@
|
|
|
12
12
|
"license": "MIT",
|
|
13
13
|
"author": "",
|
|
14
14
|
"main": "index.js",
|
|
15
|
-
"release-plan": {
|
|
16
|
-
"semverIncrementAs": {
|
|
17
|
-
"minor": "prerelease",
|
|
18
|
-
"patch": "prerelease"
|
|
19
|
-
},
|
|
20
|
-
"semverIncrementTag": "beta",
|
|
21
|
-
"publishTag": "beta"
|
|
22
|
-
},
|
|
23
15
|
"dependencies": {
|
|
24
16
|
"chalk": "^4.1.2",
|
|
25
17
|
"ember-cli-string-utils": "^1.1.0",
|