@ember/app-blueprint 6.6.0 → 6.7.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.
@@ -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
- - main
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: 'main'
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: 'main'
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
- - main
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 }}
@@ -1,15 +1,11 @@
1
1
  {
2
2
  "solution": {
3
3
  "@ember/app-blueprint": {
4
- "impact": "minor",
5
- "oldVersion": "6.5.0",
6
- "newVersion": "6.6.0",
4
+ "impact": "patch",
5
+ "oldVersion": "6.7.0",
6
+ "newVersion": "6.7.1",
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
11
  "reason": "Appears in changelog section :house: Internal"
@@ -18,5 +14,5 @@
18
14
  "pkgJSONPath": "./package.json"
19
15
  }
20
16
  },
21
- "description": "## Release (2025-09-04)\n\n* @ember/app-blueprint 6.6.0 (minor)\n\n#### :rocket: Enhancement\n* `@ember/app-blueprint`\n * [#63](https://github.com/ember-cli/ember-app-blueprint/pull/63) reset blueprint to match ember-cli app blueprint (in the next release) ([@mansona](https://github.com/mansona))\n * [#57](https://github.com/ember-cli/ember-app-blueprint/pull/57) run update-blueprint-deps to update to Ember 6.6 ([@mansona](https://github.com/mansona))\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#60](https://github.com/ember-cli/ember-app-blueprint/pull/60) Split test files ([@pichfl](https://github.com/pichfl))\n\n#### Committers: 2\n- Chris Manson ([@mansona](https://github.com/mansona))\n- Florian Pichler ([@pichfl](https://github.com/pichfl))\n"
17
+ "description": "## Release (2025-09-04)\n\n* @ember/app-blueprint 6.7.1 (patch)\n\n#### :house: Internal\n* `@ember/app-blueprint`\n * [#71](https://github.com/ember-cli/ember-app-blueprint/pull/71) fix publish-branch for pnpm publish ([@mansona](https://github.com/mansona))\n\n#### Committers: 1\n- Chris Manson ([@mansona](https://github.com/mansona))\n"
22
18
  }
package/CHANGELOG.md CHANGED
@@ -2,6 +2,36 @@
2
2
 
3
3
  ## Release (2025-09-04)
4
4
 
5
+ * @ember/app-blueprint 6.7.1 (patch)
6
+
7
+ #### :house: Internal
8
+ * `@ember/app-blueprint`
9
+ * [#71](https://github.com/ember-cli/ember-app-blueprint/pull/71) fix publish-branch for pnpm publish ([@mansona](https://github.com/mansona))
10
+
11
+ #### Committers: 1
12
+ - Chris Manson ([@mansona](https://github.com/mansona))
13
+
14
+ ## Release (2025-09-04)
15
+
16
+ * @ember/app-blueprint 6.7.0 (minor)
17
+
18
+ #### :rocket: Enhancement
19
+ * `@ember/app-blueprint`
20
+ * [#65](https://github.com/ember-cli/ember-app-blueprint/pull/65) Update all dependencies for 6.7 release ([@mansona](https://github.com/mansona))
21
+
22
+ #### :bug: Bug Fix
23
+ * `@ember/app-blueprint`
24
+ * [#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))
25
+
26
+ #### :memo: Documentation
27
+ * `@ember/app-blueprint`
28
+ * [#70](https://github.com/ember-cli/ember-app-blueprint/pull/70) add a basic readme ([@mansona](https://github.com/mansona))
29
+
30
+ #### Committers: 1
31
+ - Chris Manson ([@mansona](https://github.com/mansona))
32
+
33
+ ## Release (2025-09-04)
34
+
5
35
  * @ember/app-blueprint 6.6.0 (minor)
6
36
 
7
37
  #### :rocket: Enhancement
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
+
@@ -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": "~6.6.0",
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.6.0",
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.41.0<% } %>",
101
+ "typescript-eslint": "^8.42.0<% } %>",
102
102
  "vite": "^6.3.5"
103
103
  },
104
104
  "engines": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember/app-blueprint",
3
- "version": "6.6.0",
3
+ "version": "6.7.1",
4
4
  "description": "Blueprint for next generation of Ember apps",
5
5
  "keywords": [
6
6
  "ember-blueprint"