ember-cli 5.2.0 → 5.2.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 CHANGED
@@ -1,5 +1,19 @@
1
1
  # ember-cli Changelog
2
2
 
3
+ ## v5.2.1
4
+
5
+ #### Blueprint Changes
6
+
7
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v5.2.0...v5.2.1)
8
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v5.2.0...v5.2.1)
9
+
10
+ #### Changelog
11
+
12
+ - [#10346](https://github.com/ember-cli/ember-cli/pull/10346) [BUGFIX release] App blueprint may not have explicit-any in ember-data types [@NullVoxPopuli](https://github.com/NullVoxPopuli)
13
+ - [#10349](https://github.com/ember-cli/ember-cli/pull/10349) [BUGFIX release] Add `@babel/core` to `app` and `addon` blueprints [@bertdeblock](https://github.com/bertdeblock)
14
+
15
+ Thank you to all who took the time to contribute!
16
+
3
17
  ## v5.2.0
4
18
 
5
19
  #### Blueprint Changes
@@ -56,6 +56,12 @@ module.exports = {
56
56
  contents.dependencies['ember-cli-babel'] = contents.devDependencies['ember-cli-babel'];
57
57
  delete contents.devDependencies['ember-cli-babel'];
58
58
 
59
+ // Addons must bring in their own version of `@babel/core` when using
60
+ // `ember-cli-babel` >= v8. More info:
61
+ // https://github.com/babel/ember-cli-babel/blob/master/UPGRADING.md#upgrade-path-for-addons
62
+ contents.dependencies['@babel/core'] = contents.devDependencies['@babel/core'];
63
+ delete contents.devDependencies['@babel/core'];
64
+
59
65
  // Move ember-cli-htmlbars into the dependencies of the addon blueprint by default
60
66
  // to prevent error:
61
67
  // `Addon templates were detected but there are no template compilers registered for (addon-name)`
@@ -26,6 +26,7 @@
26
26
  "test:ember": "ember test"
27
27
  },
28
28
  "devDependencies": {
29
+ "@babel/core": "^7.22.10",
29
30
  "<% if (!typescript) { %>@babel/eslint-parser": "^7.22.10",
30
31
  "@babel/plugin-proposal-decorators": "^7.22.10",
31
32
  "<% } %>@ember/optional-features": "^2.0.0",
@@ -2,5 +2,6 @@
2
2
  * Catch-all for ember-data.
3
3
  */
4
4
  export default interface ModelRegistry {
5
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
5
6
  [key: string]: any;
6
7
  }
@@ -3,7 +3,7 @@
3
3
  "logo": "https://ember-cli.com/assets/images/ember-cli-logo-small-dark.png",
4
4
  "name": "ember-cli",
5
5
  "description": "Command line tool for developing ambitious ember.js apps",
6
- "version": "5.2.0-release-007b731b3c"
6
+ "version": "5.2.1-release-1af65a4074"
7
7
  },
8
8
  "files": {
9
9
  "lib/broccoli/default-packager.js": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "5.2.0",
3
+ "version": "5.2.1",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",