@ember/app-blueprint 6.8.0-beta.7 → 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.
@@ -8,6 +8,8 @@ on:
8
8
  types:
9
9
  - labeled
10
10
  - unlabeled
11
+ branches:
12
+ - beta
11
13
 
12
14
  concurrency:
13
15
  group: plan-release-beta # only the latest one of these should ever be running
@@ -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 }}
@@ -2,25 +2,17 @@
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
4
  "impact": "minor",
5
- "oldVersion": "6.8.0-beta.6",
6
- "newVersion": "6.8.0-beta.7",
7
- "tagName": "beta",
5
+ "oldVersion": "6.7.2",
6
+ "newVersion": "6.8.0",
7
+ "tagName": "latest",
8
8
  "constraints": [
9
9
  {
10
10
  "impact": "minor",
11
11
  "reason": "Appears in changelog section :rocket: Enhancement"
12
- },
13
- {
14
- "impact": "patch",
15
- "reason": "Appears in changelog section :bug: Bug Fix"
16
- },
17
- {
18
- "impact": "patch",
19
- "reason": "Appears in changelog section :house: Internal"
20
12
  }
21
13
  ],
22
14
  "pkgJSONPath": "./package.json"
23
15
  }
24
16
  },
25
- "description": "## Release (2025-10-13)\n\n* @ember/app-blueprint 6.8.0-beta.7 (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\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\n#### :house: Internal\n* `@ember/app-blueprint`\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\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
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"
26
18
  }
package/CHANGELOG.md CHANGED
@@ -1,104 +1,26 @@
1
1
  # Changelog
2
2
 
3
- ## Release (2025-10-13)
3
+ ## Release (2025-10-14)
4
4
 
5
- * @ember/app-blueprint 6.8.0-beta.7 (minor)
5
+ * @ember/app-blueprint 6.8.0 (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
-
12
- #### :bug: Bug Fix
13
- * `@ember/app-blueprint`
14
- * [#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))
15
-
16
- #### :house: Internal
17
- * `@ember/app-blueprint`
18
- * [#101](https://github.com/ember-cli/ember-app-blueprint/pull/101) [beta] update node version used in CI ([@mansona](https://github.com/mansona))
19
-
20
- #### Committers: 2
21
- - Chris Manson ([@mansona](https://github.com/mansona))
22
- - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
23
-
24
- ## Release (2025-10-10)
25
-
26
- * @ember/app-blueprint 6.8.0-beta.6 (minor)
27
-
28
- #### :rocket: Enhancement
29
- * `@ember/app-blueprint`
30
- * [#95](https://github.com/ember-cli/ember-app-blueprint/pull/95) [Beta] add services directory ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
31
-
32
- #### :memo: Documentation
33
- * `@ember/app-blueprint`
34
- * [#97](https://github.com/ember-cli/ember-app-blueprint/pull/97) [documentation beta] update readme for Vite ([@mansona](https://github.com/mansona))
35
-
36
- #### :house: Internal
37
- * `@ember/app-blueprint`
38
- * [#93](https://github.com/ember-cli/ember-app-blueprint/pull/93) Add Windows tests ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
39
-
40
- #### Committers: 2
41
- - Chris Manson ([@mansona](https://github.com/mansona))
42
- - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
43
-
44
- ## Release (2025-10-06)
45
-
46
- * @ember/app-blueprint 6.8.0-beta.5 (minor)
47
-
48
- #### :rocket: Enhancement
49
- * `@ember/app-blueprint`
50
- * [#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))
51
10
 
52
11
  #### Committers: 1
53
12
  - Chris Manson ([@mansona](https://github.com/mansona))
54
13
 
55
- ## Release (2025-10-06)
14
+ ## Release (2025-10-02)
56
15
 
57
- * @ember/app-blueprint 6.8.0-beta.4 (patch)
16
+ * @ember/app-blueprint 6.7.2 (patch)
58
17
 
59
18
  #### :bug: Bug Fix
60
19
  * `@ember/app-blueprint`
61
- * [#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))
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))
62
21
 
63
22
  #### Committers: 1
64
- - Chris Manson ([@mansona](https://github.com/mansona))
65
-
66
- ## Release (2025-10-03)
67
-
68
- * @ember/app-blueprint 6.8.0-beta.3 (patch)
69
-
70
- #### :bug: Bug Fix
71
- * `@ember/app-blueprint`
72
- * [#86](https://github.com/ember-cli/ember-app-blueprint/pull/86) [bugfix beta] update ember-cli to beta ([@mansona](https://github.com/mansona))
73
-
74
- #### Committers: 1
75
- - Chris Manson ([@mansona](https://github.com/mansona))
76
-
77
- ## Release (2025-09-29)
78
-
79
- * @ember/app-blueprint 6.8.0-beta.2 (patch)
80
-
81
- #### :house: Internal
82
- * `@ember/app-blueprint`
83
- * [#83](https://github.com/ember-cli/ember-app-blueprint/pull/83) update ember source to latest beta ([@mansona](https://github.com/mansona))
84
-
85
- #### Committers: 1
86
- - Chris Manson ([@mansona](https://github.com/mansona))
87
-
88
- ## Release (2025-09-05)
89
-
90
- * @ember/app-blueprint 6.8.0-beta.1 (minor)
91
-
92
- #### :rocket: Enhancement
93
- * `@ember/app-blueprint`
94
- * [#73](https://github.com/ember-cli/ember-app-blueprint/pull/73) Prepare 6.8 beta ([@mansona](https://github.com/mansona))
95
-
96
- #### :house: Internal
97
- * `@ember/app-blueprint`
98
- * [#75](https://github.com/ember-cli/ember-app-blueprint/pull/75) update the beta version ([@mansona](https://github.com/mansona))
99
-
100
- #### Committers: 1
101
- - Chris Manson ([@mansona](https://github.com/mansona))
23
+ - Florian Pichler ([@pichfl](https://github.com/pichfl))
102
24
 
103
25
  ## Release (2025-09-04)
104
26
 
@@ -26,6 +26,7 @@ assert(
26
26
 
27
27
  export default config as {
28
28
  modulePrefix: string;
29
+ podModulePrefix?: string;
29
30
  locationType: string;
30
31
  rootURL: string;
31
32
  APP: Record<string, unknown>;
@@ -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-beta.4",
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-beta.7",
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",