@ember/app-blueprint 6.6.0 → 6.7.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-release.yml → plan-stable-release.yml} +5 -6
- package/.github/workflows/{publish.yml → publish-stable.yml} +2 -3
- package/.release-plan.json +5 -9
- package/CHANGELOG.md +41 -0
- package/README.md +10 -0
- package/files/app/config/environment.ts +1 -0
- package/files/package.json +3 -3
- package/package.json +1 -1
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
name: Plan Release
|
|
1
|
+
name: Plan Stable Release
|
|
2
2
|
on:
|
|
3
3
|
workflow_dispatch:
|
|
4
4
|
push:
|
|
5
5
|
branches:
|
|
6
|
-
-
|
|
7
|
-
- master
|
|
6
|
+
- release
|
|
8
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/
|
|
9
8
|
types:
|
|
10
9
|
- labeled
|
|
@@ -25,7 +24,7 @@ jobs:
|
|
|
25
24
|
- uses: actions/checkout@v4
|
|
26
25
|
with:
|
|
27
26
|
fetch-depth: 2
|
|
28
|
-
ref: '
|
|
27
|
+
ref: 'release'
|
|
29
28
|
# This will only cause the `is-this-a-release` job to have a "command" of `release`
|
|
30
29
|
# when the .release-plan.json file was changed on the last commit.
|
|
31
30
|
- id: check-release
|
|
@@ -50,7 +49,7 @@ jobs:
|
|
|
50
49
|
# github-changelog can discover what's changed since the last release
|
|
51
50
|
with:
|
|
52
51
|
fetch-depth: 0
|
|
53
|
-
ref: '
|
|
52
|
+
ref: 'release'
|
|
54
53
|
- uses: pnpm/action-setup@v4
|
|
55
54
|
- uses: actions/setup-node@v4
|
|
56
55
|
with:
|
|
@@ -85,7 +84,7 @@ jobs:
|
|
|
85
84
|
commit-message: "Prepare Release ${{ steps.explanation.outputs.new_version}} using 'release-plan'"
|
|
86
85
|
labels: "internal"
|
|
87
86
|
branch: release-preview
|
|
88
|
-
title: Prepare Release ${{ steps.explanation.outputs.new_version }}
|
|
87
|
+
title: Prepare Stable Release ${{ steps.explanation.outputs.new_version }}
|
|
89
88
|
body: |
|
|
90
89
|
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 👍
|
|
91
90
|
|
|
@@ -7,8 +7,7 @@ on:
|
|
|
7
7
|
workflow_dispatch:
|
|
8
8
|
push:
|
|
9
9
|
branches:
|
|
10
|
-
-
|
|
11
|
-
- master
|
|
10
|
+
- release
|
|
12
11
|
paths:
|
|
13
12
|
- '.release-plan.json'
|
|
14
13
|
|
|
@@ -37,7 +36,7 @@ jobs:
|
|
|
37
36
|
cache: pnpm
|
|
38
37
|
- run: pnpm install --frozen-lockfile
|
|
39
38
|
- name: Publish to NPM
|
|
40
|
-
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish
|
|
39
|
+
run: NPM_CONFIG_PROVENANCE=true pnpm release-plan publish --publish-branch=release
|
|
41
40
|
env:
|
|
42
41
|
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}
|
|
43
42
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
package/.release-plan.json
CHANGED
|
@@ -1,22 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"@ember/app-blueprint": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "6.
|
|
6
|
-
"newVersion": "6.
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "6.7.1",
|
|
6
|
+
"newVersion": "6.7.2",
|
|
7
7
|
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
|
-
{
|
|
10
|
-
"impact": "minor",
|
|
11
|
-
"reason": "Appears in changelog section :rocket: Enhancement"
|
|
12
|
-
},
|
|
13
9
|
{
|
|
14
10
|
"impact": "patch",
|
|
15
|
-
"reason": "Appears in changelog section :
|
|
11
|
+
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
16
12
|
}
|
|
17
13
|
],
|
|
18
14
|
"pkgJSONPath": "./package.json"
|
|
19
15
|
}
|
|
20
16
|
},
|
|
21
|
-
"description": "## Release (2025-
|
|
17
|
+
"description": "## Release (2025-10-02)\n\n* @ember/app-blueprint 6.7.2 (patch)\n\n#### :bug: Bug Fix\n* `@ember/app-blueprint`\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\n#### Committers: 1\n- Florian Pichler ([@pichfl](https://github.com/pichfl))\n"
|
|
22
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## Release (2025-10-02)
|
|
4
|
+
|
|
5
|
+
* @ember/app-blueprint 6.7.2 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `@ember/app-blueprint`
|
|
9
|
+
* [#82](https://github.com/ember-cli/ember-app-blueprint/pull/82) Use TypeScript way of accessing potentially undefined `podModulePrefix` ([@pichfl](https://github.com/pichfl))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Florian Pichler ([@pichfl](https://github.com/pichfl))
|
|
13
|
+
|
|
14
|
+
## Release (2025-09-04)
|
|
15
|
+
|
|
16
|
+
* @ember/app-blueprint 6.7.1 (patch)
|
|
17
|
+
|
|
18
|
+
#### :house: Internal
|
|
19
|
+
* `@ember/app-blueprint`
|
|
20
|
+
* [#71](https://github.com/ember-cli/ember-app-blueprint/pull/71) fix publish-branch for pnpm publish ([@mansona](https://github.com/mansona))
|
|
21
|
+
|
|
22
|
+
#### Committers: 1
|
|
23
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
24
|
+
|
|
25
|
+
## Release (2025-09-04)
|
|
26
|
+
|
|
27
|
+
* @ember/app-blueprint 6.7.0 (minor)
|
|
28
|
+
|
|
29
|
+
#### :rocket: Enhancement
|
|
30
|
+
* `@ember/app-blueprint`
|
|
31
|
+
* [#65](https://github.com/ember-cli/ember-app-blueprint/pull/65) Update all dependencies for 6.7 release ([@mansona](https://github.com/mansona))
|
|
32
|
+
|
|
33
|
+
#### :bug: Bug Fix
|
|
34
|
+
* `@ember/app-blueprint`
|
|
35
|
+
* [#67](https://github.com/ember-cli/ember-app-blueprint/pull/67) make sure that release-plan publishes from release branch ([@mansona](https://github.com/mansona))
|
|
36
|
+
|
|
37
|
+
#### :memo: Documentation
|
|
38
|
+
* `@ember/app-blueprint`
|
|
39
|
+
* [#70](https://github.com/ember-cli/ember-app-blueprint/pull/70) add a basic readme ([@mansona](https://github.com/mansona))
|
|
40
|
+
|
|
41
|
+
#### Committers: 1
|
|
42
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
43
|
+
|
|
3
44
|
## Release (2025-09-04)
|
|
4
45
|
|
|
5
46
|
* @ember/app-blueprint 6.6.0 (minor)
|
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# @ember/app-blueprint
|
|
2
|
+
|
|
3
|
+
This is the blueprint that is used to generate a **new** Ember app using [Vite](https://vite.dev/) as the primary build system.
|
|
4
|
+
|
|
5
|
+
If you have an existing app that you would like to upgrade to use Vite consider using the [ember-vite-codemod](https://github.com/mainmatter/ember-vite-codemod)
|
|
6
|
+
|
|
7
|
+
## Usage
|
|
8
|
+
|
|
9
|
+
pnpm dlx ember-cli@latest app my-app-name -b @ember/app-blueprint --pnpm
|
|
10
|
+
|
package/files/package.json
CHANGED
|
@@ -71,7 +71,7 @@
|
|
|
71
71
|
"concurrently": "^9.2.1",
|
|
72
72
|
"decorator-transforms": "^2.3.0",
|
|
73
73
|
"ember-auto-import": "^2.10.0",
|
|
74
|
-
"ember-cli": "
|
|
74
|
+
"ember-cli": "^6.6.0",
|
|
75
75
|
"ember-cli-babel": "^8.2.0",
|
|
76
76
|
"ember-cli-deprecation-workflow": "^3.4.0<% if (emberData) { %>",
|
|
77
77
|
"ember-data": "~5.6.0<% } %>",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"ember-page-title": "^9.0.3",
|
|
81
81
|
"ember-qunit": "^9.0.3",
|
|
82
82
|
"ember-resolver": "^13.1.1",
|
|
83
|
-
"ember-source": "~6.
|
|
83
|
+
"ember-source": "~6.7.0",
|
|
84
84
|
"ember-template-lint": "^7.9.3<% if (welcome) { %>",
|
|
85
85
|
"ember-welcome-page": "^7.0.2<% } %>",
|
|
86
86
|
"eslint": "^9.34.0",
|
|
@@ -98,7 +98,7 @@
|
|
|
98
98
|
"testem": "^3.16.0",
|
|
99
99
|
"tracked-built-ins": "^4.0.0<% if (typescript) { %>",
|
|
100
100
|
"typescript": "^5.9.2",
|
|
101
|
-
"typescript-eslint": "^8.
|
|
101
|
+
"typescript-eslint": "^8.42.0<% } %>",
|
|
102
102
|
"vite": "^6.3.5"
|
|
103
103
|
},
|
|
104
104
|
"engines": {
|