ember-cli 7.1.0-beta.2 → 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.
Files changed (38) hide show
  1. package/CHANGELOG.md +61 -20
  2. package/blueprints/http-mock/index.js +1 -1
  3. package/blueprints/http-proxy/index.js +1 -1
  4. package/docs/build/data.json +105 -1590
  5. package/lib/commands/generate.js +1 -1
  6. package/lib/models/command.js +1 -1
  7. package/lib/models/package-info-cache/package-info.js +1 -1
  8. package/lib/tasks/generate-from-blueprint.js +1 -1
  9. package/lib/tasks/install-blueprint.js +4 -2
  10. package/lib/utilities/merge-blueprint-options.js +1 -1
  11. package/package.json +11 -11
  12. package/packages/addon-blueprint/files/README.md +10 -0
  13. package/packages/addon-blueprint/package.json +4 -4
  14. package/packages/app-blueprint/files/package.json +4 -4
  15. package/packages/app-blueprint/package.json +4 -4
  16. package/packages/blueprint-blueprint/files/blueprints/__name__/files/.gitkeep +0 -0
  17. package/packages/blueprint-blueprint/files/blueprints/__name__/index.js +16 -0
  18. package/packages/blueprint-blueprint/index.js +5 -0
  19. package/packages/blueprint-blueprint/package.json +13 -0
  20. package/{lib/models/blueprint.js → packages/blueprint-model/index.js} +6 -6
  21. package/packages/blueprint-model/node_modules/.bin/markdown-it +21 -0
  22. package/packages/blueprint-model/package.json +31 -0
  23. package/packages/blueprint-model/utilities/directory-for-package-name.js +31 -0
  24. package/packages/blueprint-model/utilities/edit-file-diff.js +64 -0
  25. package/packages/blueprint-model/utilities/experiments.js +63 -0
  26. package/packages/blueprint-model/utilities/file-info.js +170 -0
  27. package/packages/blueprint-model/utilities/open-editor.js +44 -0
  28. package/packages/blueprint-model/utilities/prepend-emoji.js +12 -0
  29. package/packages/blueprint-model/utilities/process-template.js +10 -0
  30. package/patches/ember-cli-blueprint-test-helpers.patch +15 -0
  31. package/tests/helpers/acceptance.js +6 -5
  32. /package/{lib → packages/blueprint-model}/utilities/clean-remove.js +0 -0
  33. /package/{lib → packages/blueprint-model}/utilities/insert-into-file.js +0 -0
  34. /package/{lib → packages/blueprint-model}/utilities/is-addon.js +0 -0
  35. /package/{lib → packages/blueprint-model}/utilities/markdown-color.js +0 -0
  36. /package/{lib → packages/blueprint-model}/utilities/print-command.js +0 -0
  37. /package/{lib → packages/blueprint-model}/utilities/sequence.js +0 -0
  38. /package/{lib → packages/blueprint-model}/utilities/walk-up-path.js +0 -0
package/CHANGELOG.md CHANGED
@@ -1,41 +1,55 @@
1
1
  # ember-cli Changelog
2
2
 
3
- ## Release (2026-05-30)
3
+ ## Release (2026-06-30)
4
4
 
5
- * ember-cli 7.1.0-beta.2 (patch)
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)
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))
6
17
 
7
18
  #### :bug: Bug Fix
8
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))
9
21
  * [#11028](https://github.com/ember-cli/ember-cli/pull/11028) [BUGFIX release] fix require(esm) of blueprint indexes ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
10
22
 
11
23
  #### :house: Internal
12
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))
13
28
  * [#11033](https://github.com/ember-cli/ember-cli/pull/11033) Merge release into beta ([@mansona](https://github.com/mansona))
29
+ * `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
30
+ * [#11029](https://github.com/ember-cli/ember-cli/pull/11029) Prepare Beta Release ([@mansona](https://github.com/mansona))
14
31
 
15
- #### Committers: 2
32
+ #### Committers: 4
33
+ - Alex ([@void-mAlex](https://github.com/void-mAlex))
16
34
  - Chris Manson ([@mansona](https://github.com/mansona))
35
+ - Katie Gengler ([@kategengler](https://github.com/kategengler))
17
36
  - [@NullVoxPopuli](https://github.com/NullVoxPopuli)
18
37
 
19
- ## Release (2026-05-22)
38
+ ## Release (2026-05-13)
20
39
 
21
- * ember-cli 7.1.0-beta.1 (minor)
22
- * @ember-tooling/classic-build-addon-blueprint 7.1.0-beta.1 (minor)
23
- * @ember-tooling/classic-build-app-blueprint 7.1.0-beta.1 (minor)
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)
24
44
 
25
45
  #### :rocket: Enhancement
26
- * `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
27
- * [#11026](https://github.com/ember-cli/ember-cli/pull/11026) Prepare 7.1 beta ([@mansona](https://github.com/mansona))
28
46
  * `ember-cli`
29
47
  * [#10610](https://github.com/ember-cli/ember-cli/pull/10610) use semver-deprecate instead of internal code ([@mansona](https://github.com/mansona))
30
48
  * [#11008](https://github.com/ember-cli/ember-cli/pull/11008) update babel-remove-types to v2 ([@mansona](https://github.com/mansona))
31
49
  * [#11009](https://github.com/ember-cli/ember-cli/pull/11009) update configstore to v8 ([@mansona](https://github.com/mansona))
32
- * `@ember-tooling/classic-build-app-blueprint`, `ember-cli`
33
- * [#11006](https://github.com/ember-cli/ember-cli/pull/11006) update ember-welcome-page to v8 in app blueprint ([@mansona](https://github.com/mansona))
34
- * [#11005](https://github.com/ember-cli/ember-cli/pull/11005) update ember-cli-deprecation-workflow to v4 ([@mansona](https://github.com/mansona))
35
- * [#11003](https://github.com/ember-cli/ember-cli/pull/11003) update @ember/optional-features to v3 ([@mansona](https://github.com/mansona))
36
50
 
37
51
  #### :bug: Bug Fix
38
- * `ember-cli`
52
+ * `ember-cli`, `@ember-tooling/blueprint-model`
39
53
  * [#11020](https://github.com/ember-cli/ember-cli/pull/11020) Update diff to latest v8.x ([@mkszepp](https://github.com/mkszepp))
40
54
 
41
55
  #### :house: Internal
@@ -50,15 +64,42 @@
50
64
  - Katie Gengler ([@kategengler](https://github.com/kategengler))
51
65
  - Markus Sanin ([@mkszepp](https://github.com/mkszepp))
52
66
 
53
- ## Release (2026-05-15)
67
+ ## Release (2026-04-26)
68
+
69
+ * ember-cli 7.1.0-alpha.2 (minor)
70
+ * @ember-tooling/classic-build-app-blueprint 7.1.0-alpha.2 (minor)
71
+
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)
54
86
 
55
- * ember-cli 7.0.0 (major)
56
- * @ember-tooling/classic-build-addon-blueprint 7.0.0 (major)
57
- * @ember-tooling/classic-build-app-blueprint 7.0.0 (major)
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)
58
95
 
59
- #### :boom: Breaking Change
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
60
101
  * `ember-cli`, `@ember-tooling/classic-build-addon-blueprint`, `@ember-tooling/classic-build-app-blueprint`
61
- * [#11022](https://github.com/ember-cli/ember-cli/pull/11022) Promote Beta and update all dependencies for 7.0 release ([@mansona](https://github.com/mansona))
102
+ * [#10997](https://github.com/ember-cli/ember-cli/pull/10997) Prepare 7.0 Beta ([@mansona](https://github.com/mansona))
62
103
 
63
104
  #### Committers: 1
64
105
  - Chris Manson ([@mansona](https://github.com/mansona))
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const Blueprint = require('../../lib/models/blueprint');
3
+ const Blueprint = require('@ember-tooling/blueprint-model');
4
4
  const isPackageMissing = require('ember-cli-is-package-missing');
5
5
  const SilentError = require('silent-error');
6
6
 
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- const Blueprint = require('../../lib/models/blueprint');
3
+ const Blueprint = require('@ember-tooling/blueprint-model');
4
4
  const SilentError = require('silent-error');
5
5
 
6
6
  module.exports = {