ember-cli 7.1.0-beta.1 → 7.2.0-alpha.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.
- package/CHANGELOG.md +73 -16
- package/blueprints/http-mock/index.js +1 -1
- package/blueprints/http-proxy/index.js +1 -1
- package/docs/build/data.json +105 -1590
- package/lib/commands/generate.js +1 -1
- package/lib/models/command.js +1 -1
- package/lib/models/package-info-cache/package-info.js +1 -1
- package/lib/tasks/generate-from-blueprint.js +1 -1
- package/lib/tasks/install-blueprint.js +4 -2
- package/lib/utilities/merge-blueprint-options.js +1 -1
- package/package.json +11 -11
- package/packages/addon-blueprint/files/README.md +10 -0
- package/packages/addon-blueprint/package.json +4 -4
- package/packages/app-blueprint/files/package.json +4 -4
- package/packages/app-blueprint/package.json +4 -4
- package/packages/blueprint-blueprint/files/blueprints/__name__/files/.gitkeep +0 -0
- package/packages/blueprint-blueprint/files/blueprints/__name__/index.js +16 -0
- package/packages/blueprint-blueprint/index.js +5 -0
- package/packages/blueprint-blueprint/package.json +13 -0
- package/{lib/models/blueprint.js → packages/blueprint-model/index.js} +11 -7
- package/packages/blueprint-model/node_modules/.bin/markdown-it +21 -0
- package/packages/blueprint-model/package.json +31 -0
- package/packages/blueprint-model/utilities/directory-for-package-name.js +31 -0
- package/packages/blueprint-model/utilities/edit-file-diff.js +64 -0
- package/packages/blueprint-model/utilities/experiments.js +63 -0
- package/packages/blueprint-model/utilities/file-info.js +170 -0
- package/packages/blueprint-model/utilities/open-editor.js +44 -0
- package/packages/blueprint-model/utilities/prepend-emoji.js +12 -0
- package/packages/blueprint-model/utilities/process-template.js +10 -0
- package/patches/ember-cli-blueprint-test-helpers.patch +15 -0
- package/tests/helpers/acceptance.js +6 -5
- /package/{lib → packages/blueprint-model}/utilities/clean-remove.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/insert-into-file.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/is-addon.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/markdown-color.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/print-command.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/sequence.js +0 -0
- /package/{lib → packages/blueprint-model}/utilities/walk-up-path.js +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,25 +1,55 @@
|
|
|
1
1
|
# ember-cli Changelog
|
|
2
2
|
|
|
3
|
-
## Release (2026-
|
|
3
|
+
## Release (2026-06-30)
|
|
4
4
|
|
|
5
|
-
* ember-cli 7.
|
|
6
|
-
* @ember-tooling/classic-build-addon-blueprint 7.
|
|
7
|
-
* @ember-tooling/classic-build-app-blueprint 7.
|
|
5
|
+
* ember-cli 7.2.0-alpha.1 (minor)
|
|
6
|
+
* @ember-tooling/classic-build-addon-blueprint 7.2.0-alpha.1 (minor)
|
|
7
|
+
* @ember-tooling/classic-build-app-blueprint 7.2.0-alpha.1 (minor)
|
|
8
|
+
* @ember-tooling/blueprint-model 0.7.0 (minor)
|
|
8
9
|
|
|
9
10
|
#### :rocket: Enhancement
|
|
11
|
+
* `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`, `@ember-tooling/blueprint-model`
|
|
12
|
+
* [#11032](https://github.com/ember-cli/ember-cli/pull/11032) Prepare 7.2 alpha ([@mansona](https://github.com/mansona))
|
|
13
|
+
* `@ember-tooling/classic-build-addon-blueprint`
|
|
14
|
+
* [#11035](https://github.com/ember-cli/ember-cli/pull/11035) Add placeholder for documenting exports from an addon ([@kategengler](https://github.com/kategengler))
|
|
15
|
+
* `ember-cli`, `@ember-tooling/blueprint-model`
|
|
16
|
+
* [#10672](https://github.com/ember-cli/ember-cli/pull/10672) Separate blueprint model so it can be used outside of ember-cli ([@mansona](https://github.com/mansona))
|
|
17
|
+
|
|
18
|
+
#### :bug: Bug Fix
|
|
19
|
+
* `ember-cli`
|
|
20
|
+
* [#11027](https://github.com/ember-cli/ember-cli/pull/11027) Fix error when blueprint is missing keyword ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
21
|
+
* [#11028](https://github.com/ember-cli/ember-cli/pull/11028) [BUGFIX release] fix require(esm) of blueprint indexes ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
|
|
22
|
+
|
|
23
|
+
#### :house: Internal
|
|
24
|
+
* `ember-cli`
|
|
25
|
+
* [#11037](https://github.com/ember-cli/ember-cli/pull/11037) bring test fixtures in line with updates from addon readme ([@void-mAlex](https://github.com/void-mAlex))
|
|
26
|
+
* [#11038](https://github.com/ember-cli/ember-cli/pull/11038) fix running tests on blueprint markdown changes ([@mansona](https://github.com/mansona))
|
|
27
|
+
* [#10880](https://github.com/ember-cli/ember-cli/pull/10880) stop using internal package cache in the addon smoke test and rely on pnpm caching ([@mansona](https://github.com/mansona))
|
|
28
|
+
* [#11033](https://github.com/ember-cli/ember-cli/pull/11033) Merge release into beta ([@mansona](https://github.com/mansona))
|
|
10
29
|
* `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
|
|
11
|
-
* [#
|
|
30
|
+
* [#11029](https://github.com/ember-cli/ember-cli/pull/11029) Prepare Beta Release ([@mansona](https://github.com/mansona))
|
|
31
|
+
|
|
32
|
+
#### Committers: 4
|
|
33
|
+
- Alex ([@void-mAlex](https://github.com/void-mAlex))
|
|
34
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
35
|
+
- Katie Gengler ([@kategengler](https://github.com/kategengler))
|
|
36
|
+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
|
|
37
|
+
|
|
38
|
+
## Release (2026-05-13)
|
|
39
|
+
|
|
40
|
+
* ember-cli 7.1.0-alpha.3 (minor)
|
|
41
|
+
* @ember-tooling/classic-build-addon-blueprint 7.1.0-alpha.2 (patch)
|
|
42
|
+
* @ember-tooling/classic-build-app-blueprint 7.1.0-alpha.3 (patch)
|
|
43
|
+
* @ember-tooling/blueprint-model 0.6.3 (patch)
|
|
44
|
+
|
|
45
|
+
#### :rocket: Enhancement
|
|
12
46
|
* `ember-cli`
|
|
13
47
|
* [#10610](https://github.com/ember-cli/ember-cli/pull/10610) use semver-deprecate instead of internal code ([@mansona](https://github.com/mansona))
|
|
14
48
|
* [#11008](https://github.com/ember-cli/ember-cli/pull/11008) update babel-remove-types to v2 ([@mansona](https://github.com/mansona))
|
|
15
49
|
* [#11009](https://github.com/ember-cli/ember-cli/pull/11009) update configstore to v8 ([@mansona](https://github.com/mansona))
|
|
16
|
-
* `@ember-tooling/classic-build-app-blueprint`, `ember-cli`
|
|
17
|
-
* [#11006](https://github.com/ember-cli/ember-cli/pull/11006) update ember-welcome-page to v8 in app blueprint ([@mansona](https://github.com/mansona))
|
|
18
|
-
* [#11005](https://github.com/ember-cli/ember-cli/pull/11005) update ember-cli-deprecation-workflow to v4 ([@mansona](https://github.com/mansona))
|
|
19
|
-
* [#11003](https://github.com/ember-cli/ember-cli/pull/11003) update @ember/optional-features to v3 ([@mansona](https://github.com/mansona))
|
|
20
50
|
|
|
21
51
|
#### :bug: Bug Fix
|
|
22
|
-
* `ember-cli`
|
|
52
|
+
* `ember-cli`, `@ember-tooling/blueprint-model`
|
|
23
53
|
* [#11020](https://github.com/ember-cli/ember-cli/pull/11020) Update diff to latest v8.x ([@mkszepp](https://github.com/mkszepp))
|
|
24
54
|
|
|
25
55
|
#### :house: Internal
|
|
@@ -34,15 +64,42 @@
|
|
|
34
64
|
- Katie Gengler ([@kategengler](https://github.com/kategengler))
|
|
35
65
|
- Markus Sanin ([@mkszepp](https://github.com/mkszepp))
|
|
36
66
|
|
|
37
|
-
## Release (2026-
|
|
67
|
+
## Release (2026-04-26)
|
|
38
68
|
|
|
39
|
-
* ember-cli 7.0.
|
|
40
|
-
* @ember-tooling/classic-build-
|
|
41
|
-
* @ember-tooling/classic-build-app-blueprint 7.0.0 (major)
|
|
69
|
+
* ember-cli 7.1.0-alpha.2 (minor)
|
|
70
|
+
* @ember-tooling/classic-build-app-blueprint 7.1.0-alpha.2 (minor)
|
|
42
71
|
|
|
43
|
-
#### :
|
|
72
|
+
#### :rocket: Enhancement
|
|
73
|
+
* `@ember-tooling/classic-build-app-blueprint`, `ember-cli`
|
|
74
|
+
* [#11006](https://github.com/ember-cli/ember-cli/pull/11006) update ember-welcome-page to v8 in app blueprint ([@mansona](https://github.com/mansona))
|
|
75
|
+
* [#11005](https://github.com/ember-cli/ember-cli/pull/11005) update ember-cli-deprecation-workflow to v4 ([@mansona](https://github.com/mansona))
|
|
76
|
+
* [#11003](https://github.com/ember-cli/ember-cli/pull/11003) update @ember/optional-features to v3 ([@mansona](https://github.com/mansona))
|
|
77
|
+
|
|
78
|
+
#### Committers: 1
|
|
79
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
80
|
+
|
|
81
|
+
## Release (2026-04-24)
|
|
82
|
+
|
|
83
|
+
* ember-cli 7.1.0-alpha.1 (minor)
|
|
84
|
+
* @ember-tooling/classic-build-addon-blueprint 7.1.0-alpha.1 (minor)
|
|
85
|
+
* @ember-tooling/classic-build-app-blueprint 7.1.0-alpha.1 (minor)
|
|
86
|
+
|
|
87
|
+
#### :rocket: Enhancement
|
|
88
|
+
* `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
|
|
89
|
+
* [#11001](https://github.com/ember-cli/ember-cli/pull/11001) Prepare 7.1 Alpha ([@mansona](https://github.com/mansona))
|
|
90
|
+
|
|
91
|
+
#### Committers: 1
|
|
92
|
+
- Chris Manson ([@mansona](https://github.com/mansona))
|
|
93
|
+
|
|
94
|
+
## Release (2026-04-21)
|
|
95
|
+
|
|
96
|
+
* ember-cli 7.0.0-beta.1 (minor)
|
|
97
|
+
* @ember-tooling/classic-build-addon-blueprint 7.0.0-beta.1 (minor)
|
|
98
|
+
* @ember-tooling/classic-build-app-blueprint 7.0.0-beta.1 (minor)
|
|
99
|
+
|
|
100
|
+
#### :rocket: Enhancement
|
|
44
101
|
* `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
|
|
45
|
-
* [#
|
|
102
|
+
* [#10997](https://github.com/ember-cli/ember-cli/pull/10997) Prepare 7.0 Beta ([@mansona](https://github.com/mansona))
|
|
46
103
|
|
|
47
104
|
#### Committers: 1
|
|
48
105
|
- Chris Manson ([@mansona](https://github.com/mansona))
|