ember-cli 4.3.0-beta.1 → 4.4.0

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.
@@ -24,8 +24,8 @@ jobs:
24
24
  runs-on: ubuntu-latest
25
25
 
26
26
  steps:
27
- - uses: actions/checkout@v2
28
- - uses: actions/setup-node@v2.5.1
27
+ - uses: actions/checkout@v3
28
+ - uses: actions/setup-node@v3
29
29
  with:
30
30
  node-version: 12.x
31
31
  cache: 'yarn'
@@ -42,8 +42,8 @@ jobs:
42
42
  os: [ubuntu, macOS, windows]
43
43
 
44
44
  steps:
45
- - uses: actions/checkout@v2
46
- - uses: actions/setup-node@v2.5.1
45
+ - uses: actions/checkout@v3
46
+ - uses: actions/setup-node@v3
47
47
  with:
48
48
  node-version: 12.x
49
49
  cache: 'yarn'
@@ -64,8 +64,8 @@ jobs:
64
64
  os: [ubuntu, windows]
65
65
 
66
66
  steps:
67
- - uses: actions/checkout@v2
68
- - uses: actions/setup-node@v2.5.1
67
+ - uses: actions/checkout@v3
68
+ - uses: actions/setup-node@v3
69
69
  with:
70
70
  node-version: ${{ matrix.node-version }}
71
71
  cache: 'yarn'
@@ -89,8 +89,8 @@ jobs:
89
89
  - CLASSIC
90
90
 
91
91
  steps:
92
- - uses: actions/checkout@v2
93
- - uses: actions/setup-node@v2.5.1
92
+ - uses: actions/checkout@v3
93
+ - uses: actions/setup-node@v3
94
94
  with:
95
95
  node-version: 12.x
96
96
  cache: 'yarn'
package/CHANGELOG.md CHANGED
@@ -1,11 +1,28 @@
1
1
  # ember-cli Changelog
2
2
 
3
- ## v4.3.0-beta.1
3
+ ## v4.4.0
4
4
 
5
5
  #### Blueprint Changes
6
6
 
7
- - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.2.0...v4.3.0-beta.1)
8
- - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.2.0...v4.3.0-beta.1)
7
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.3.0...v4.4.0)
8
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.3.0...v4.4.0)
9
+
10
+ #### Changelog
11
+
12
+ - [#9611](https://github.com/ember-cli/ember-cli/pull/9611) use more standard markdown for addon readme [@mansona](https://github.com/mansona)
13
+ - [#9818](https://github.com/ember-cli/ember-cli/pull/9818) Update actions/checkout action to v3 [@SergeAstapov](https://github.com/SergeAstapov)
14
+ - [#9819](https://github.com/ember-cli/ember-cli/pull/9819) Update actions/setup-node action to v3 [@SergeAstapov](https://github.com/SergeAstapov)
15
+ - [#9822](https://github.com/ember-cli/ember-cli/pull/9822) Update `since.available` and `since.enabled` versions for Bower deprecations [@bertdeblock](https://github.com/bertdeblock)
16
+ - [#9850](https://github.com/ember-cli/ember-cli/pull/9850) Fix contents of addon `.gitignore` file [@bertdeblock](https://github.com/bertdeblock)
17
+
18
+ Thank you to all who took the time to contribute!
19
+
20
+ ## v4.3.0
21
+
22
+ #### Blueprint Changes
23
+
24
+ - [`ember new` diff](https://github.com/ember-cli/ember-new-output/compare/v4.2.0...v4.3.0)
25
+ - [`ember addon` diff](https://github.com/ember-cli/ember-addon-output/compare/v4.2.0...v4.3.0)
9
26
 
10
27
  #### Changelog
11
28
 
@@ -20,6 +37,9 @@
20
37
  - [#9803](https://github.com/ember-cli/ember-cli/pull/9803) [RFC 637] Customizable test setups [@bertdeblock](https://github.com/bertdeblock)
21
38
  - [#9804](https://github.com/ember-cli/ember-cli/pull/9804) Fix formatting of CI file in app and addon blueprints [@bertdeblock](https://github.com/bertdeblock)
22
39
  - [#9817](https://github.com/ember-cli/ember-cli/pull/9817) update beta deps [@kellyselden](https://github.com/kellyselden)
40
+ - [#9830](https://github.com/ember-cli/ember-cli/pull/9830) update deps before release [@kellyselden](https://github.com/kellyselden)
41
+
42
+ Thank you to all who took the time to contribute!
23
43
 
24
44
  ## v4.2.0
25
45
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "devDependencies": {
3
- "@embroider/test-setup": "^1.2.0",
3
+ "@embroider/test-setup": "^1.6.0",
4
4
  "ember-disable-prototype-extensions": "^1.1.3",
5
5
  "ember-try": "^2.0.0",
6
6
  "ember-source-channel-url": "^3.0.0"
@@ -17,9 +17,9 @@ jobs:
17
17
  runs-on: ubuntu-latest
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v2
20
+ - uses: actions/checkout@v3
21
21
  - name: Install Node
22
- uses: actions/setup-node@v2
22
+ uses: actions/setup-node@v3
23
23
  with:
24
24
  node-version: 12.x
25
25
  cache: <%= yarn ? 'yarn' : 'npm' %>
@@ -35,8 +35,8 @@ jobs:
35
35
  runs-on: ubuntu-latest
36
36
 
37
37
  steps:
38
- - uses: actions/checkout@v2
39
- - uses: actions/setup-node@v2
38
+ - uses: actions/checkout@v3
39
+ - uses: actions/setup-node@v3
40
40
  with:
41
41
  node-version: 12.x
42
42
  cache: <%= yarn ? 'yarn' : 'npm' %>
@@ -64,9 +64,9 @@ jobs:
64
64
  - embroider-optimized
65
65
 
66
66
  steps:
67
- - uses: actions/checkout@v2
67
+ - uses: actions/checkout@v3
68
68
  - name: Install Node
69
- uses: actions/setup-node@v2
69
+ uses: actions/setup-node@v3
70
70
  with:
71
71
  node-version: 12.x
72
72
  cache: <%= yarn ? 'yarn' : 'npm' %>
@@ -1,38 +1,32 @@
1
- <%= addonName %>
2
- ==============================================================================
1
+ # <%= addonName %>
3
2
 
4
3
  [Short description of the addon.]
5
4
 
6
5
 
7
- Compatibility
8
- ------------------------------------------------------------------------------
6
+ ## Compatibility
9
7
 
10
8
  * Ember.js v3.24 or above
11
9
  * Ember CLI v3.24 or above
12
10
  * Node.js v12 or above
13
11
 
14
12
 
15
- Installation
16
- ------------------------------------------------------------------------------
13
+ ## Installation
17
14
 
18
15
  ```
19
16
  ember install <%= addonName %>
20
17
  ```
21
18
 
22
19
 
23
- Usage
24
- ------------------------------------------------------------------------------
20
+ ## Usage
25
21
 
26
22
  [Longer description of how to use the addon in apps.]
27
23
 
28
24
 
29
- Contributing
30
- ------------------------------------------------------------------------------
25
+ ## Contributing
31
26
 
32
27
  See the [Contributing](CONTRIBUTING.md) guide for details.
33
28
 
34
29
 
35
- License
36
- ------------------------------------------------------------------------------
30
+ ## License
37
31
 
38
32
  This project is licensed under the [MIT License](LICENSE.md).
@@ -17,9 +17,9 @@ jobs:
17
17
  runs-on: ubuntu-latest
18
18
 
19
19
  steps:
20
- - uses: actions/checkout@v2
20
+ - uses: actions/checkout@v3
21
21
  - name: Install Node
22
- uses: actions/setup-node@v2
22
+ uses: actions/setup-node@v3
23
23
  with:
24
24
  node-version: 12.x
25
25
  cache: <%= yarn ? 'yarn' : 'npm' %>
@@ -33,9 +33,9 @@ jobs:
33
33
  runs-on: ubuntu-latest
34
34
 
35
35
  steps:
36
- - uses: actions/checkout@v2
36
+ - uses: actions/checkout@v3
37
37
  - name: Install Node
38
- uses: actions/setup-node@v2
38
+ uses: actions/setup-node@v3
39
39
  with:
40
40
  node-version: 12.x
41
41
  cache: <%= yarn ? 'yarn' : 'npm' %>
@@ -24,45 +24,45 @@
24
24
  },
25
25
  "devDependencies": {
26
26
  "@ember/optional-features": "^2.0.0",
27
- "@ember/test-helpers": "^2.6.0<% if (embroider) { %>",
28
- "@embroider/compat": "^1.2.0",
29
- "@embroider/core": "^1.2.0",
30
- "@embroider/webpack": "^1.2.0<% } %>",
31
- "@glimmer/component": "^1.0.4",
32
- "@glimmer/tracking": "^1.0.4",
27
+ "@ember/test-helpers": "^2.7.0<% if (embroider) { %>",
28
+ "@embroider/compat": "^1.6.0",
29
+ "@embroider/core": "^1.6.0",
30
+ "@embroider/webpack": "^1.6.0<% } %>",
31
+ "@glimmer/component": "^1.1.2",
32
+ "@glimmer/tracking": "^1.1.2",
33
33
  "babel-eslint": "^10.1.0",
34
34
  "broccoli-asset-rev": "^3.0.0",
35
- "ember-auto-import": "^2.4.0",
35
+ "ember-auto-import": "^2.4.1",
36
36
  "ember-cli": "~<%= emberCLIVersion %>",
37
37
  "ember-cli-app-version": "^5.0.0",
38
38
  "ember-cli-babel": "^7.26.11",
39
- "ember-cli-dependency-checker": "^3.2.0",
39
+ "ember-cli-dependency-checker": "^3.3.1",
40
40
  "ember-cli-htmlbars": "^6.0.1",
41
41
  "ember-cli-inject-live-reload": "^2.1.0",
42
42
  "ember-cli-sri": "^2.1.1",
43
43
  "ember-cli-terser": "^4.0.2",
44
- "ember-data": "~4.3.0-beta.0",
44
+ "ember-data": "~4.4.0",
45
45
  "ember-export-application-global": "^2.0.1",
46
46
  "ember-fetch": "^8.1.1",
47
47
  "ember-load-initializers": "^2.1.2",
48
48
  "ember-page-title": "^7.0.0",
49
49
  "ember-qunit": "^5.1.5",
50
50
  "ember-resolver": "^8.0.3",
51
- "ember-source": "~4.3.0-beta.1",
52
- "ember-template-lint": "^4.2.0<% if (welcome) { %>",
53
- "ember-welcome-page": "^6.1.0<% } %>",
51
+ "ember-source": "~4.4.0",
52
+ "ember-template-lint": "^4.8.0<% if (welcome) { %>",
53
+ "ember-welcome-page": "^6.2.0<% } %>",
54
54
  "eslint": "^7.32.0",
55
- "eslint-config-prettier": "^8.4.0",
56
- "eslint-plugin-ember": "^10.5.9",
55
+ "eslint-config-prettier": "^8.5.0",
56
+ "eslint-plugin-ember": "^10.6.1",
57
57
  "eslint-plugin-node": "^11.1.0",
58
58
  "eslint-plugin-prettier": "^4.0.0",
59
59
  "eslint-plugin-qunit": "^7.2.0",
60
60
  "loader.js": "^4.7.0",
61
61
  "npm-run-all": "^4.1.5",
62
- "prettier": "^2.5.1",
63
- "qunit": "^2.18.0",
62
+ "prettier": "^2.6.2",
63
+ "qunit": "^2.19.1",
64
64
  "qunit-dom": "^2.0.0",
65
- "webpack": "^5.69.1"
65
+ "webpack": "^5.72.1"
66
66
  },
67
67
  "engines": {
68
68
  "node": "12.* || 14.* || >= 16"
@@ -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": "4.3.0-beta.1-beta-7f49a34e21"
6
+ "version": "4.4.0-release-2f8a54df3b"
7
7
  },
8
8
  "files": {
9
9
  "lib/broccoli/default-packager.js": {
@@ -635,8 +635,8 @@ module.exports = class DefaultPackager {
635
635
  for: 'ember-cli',
636
636
  id: 'ember-cli.building-bower-packages',
637
637
  since: {
638
- available: '4.2.0',
639
- enabled: '4.2.0',
638
+ available: '4.3.0',
639
+ enabled: '4.3.0',
640
640
  },
641
641
  until: '5.0.0',
642
642
  });
@@ -1165,8 +1165,8 @@ let Blueprint = CoreObject.extend({
1165
1165
  for: 'ember-cli',
1166
1166
  id: 'ember-cli.blueprint.add-bower-package-to-project',
1167
1167
  since: {
1168
- available: '4.2.0',
1169
- enabled: '4.2.0',
1168
+ available: '4.3.0',
1169
+ enabled: '4.3.0',
1170
1170
  },
1171
1171
  until: '5.0.0',
1172
1172
  }
@@ -1218,8 +1218,8 @@ let Blueprint = CoreObject.extend({
1218
1218
  for: 'ember-cli',
1219
1219
  id: 'ember-cli.blueprint.add-bower-packages-to-project',
1220
1220
  since: {
1221
- available: '4.2.0',
1222
- enabled: '4.2.0',
1221
+ available: '4.3.0',
1222
+ enabled: '4.3.0',
1223
1223
  },
1224
1224
  until: '5.0.0',
1225
1225
  }
@@ -140,8 +140,8 @@ class Project {
140
140
  for: 'ember-cli',
141
141
  id: 'ember-cli.project.bower-directory',
142
142
  since: {
143
- available: '4.2.0',
144
- enabled: '4.2.0',
143
+ available: '4.3.0',
144
+ enabled: '4.3.0',
145
145
  },
146
146
  until: '5.0.0',
147
147
  }
@@ -419,8 +419,8 @@ class Project {
419
419
  for: 'ember-cli',
420
420
  id: 'ember-cli.project.bower-dependencies',
421
421
  since: {
422
- available: '4.2.0',
423
- enabled: '4.2.0',
422
+ available: '4.3.0',
423
+ enabled: '4.3.0',
424
424
  },
425
425
  until: '5.0.0',
426
426
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-cli",
3
- "version": "4.3.0-beta.1",
3
+ "version": "4.4.0",
4
4
  "description": "Command line tool for developing ambitious ember.js apps",
5
5
  "keywords": [
6
6
  "app",
@@ -37,7 +37,7 @@
37
37
  "test:slow": "node --unhandled-rejections=strict tests/runner slow"
38
38
  },
39
39
  "dependencies": {
40
- "@babel/core": "^7.16.7",
40
+ "@babel/core": "^7.17.9",
41
41
  "@babel/plugin-transform-modules-amd": "^7.16.7",
42
42
  "amd-name-resolver": "^1.3.1",
43
43
  "babel-plugin-module-resolver": "^4.1.0",
@@ -102,7 +102,7 @@
102
102
  "lodash.template": "^4.5.0",
103
103
  "markdown-it": "^12.2.0",
104
104
  "markdown-it-terminal": "0.2.1",
105
- "minimatch": "^3.0.4",
105
+ "minimatch": "^5.0.1",
106
106
  "morgan": "^1.10.0",
107
107
  "nopt": "^3.0.6",
108
108
  "npm-package-arg": "^8.1.5",
@@ -114,11 +114,11 @@
114
114
  "remove-types": "^1.0.0",
115
115
  "resolve": "^1.20.0",
116
116
  "resolve-package-path": "^3.1.0",
117
- "safe-stable-stringify": "^2.2.0",
117
+ "safe-stable-stringify": "^2.3.1",
118
118
  "sane": "^5.0.1",
119
119
  "semver": "^7.3.5",
120
120
  "silent-error": "^1.1.1",
121
- "sort-package-json": "^1.51.0",
121
+ "sort-package-json": "^1.55.0",
122
122
  "symlink-or-copy": "^1.3.1",
123
123
  "temp": "0.9.4",
124
124
  "testem": "^3.6.0",
@@ -141,7 +141,7 @@
141
141
  "chai-jest-snapshot": "^2.0.0",
142
142
  "ember-cli-blueprint-test-helpers": "^0.19.2",
143
143
  "ember-cli-internal-test-helpers": "^0.9.1",
144
- "eslint": "^8.6.0",
144
+ "eslint": "^8.10.0",
145
145
  "eslint-config-prettier": "^7.2.0",
146
146
  "eslint-plugin-chai-expect": "^3.0.0",
147
147
  "eslint-plugin-mocha": "^9.0.0",
@@ -150,11 +150,11 @@
150
150
  "fixturify": "^2.1.0",
151
151
  "jsdom": "^19.0.0",
152
152
  "latest-version": "^5.1.0",
153
- "mocha": "^9.2.1",
153
+ "mocha": "^9.2.2",
154
154
  "nock": "^13.2.2",
155
155
  "nyc": "^15.1.0",
156
- "prettier": "2.5.1",
157
- "release-it": "^14.12.4",
156
+ "prettier": "2.6.2",
157
+ "release-it": "^14.14.0",
158
158
  "rimraf": "^3.0.2",
159
159
  "strip-ansi": "^6.0.0",
160
160
  "supertest": "^6.1.6",
@@ -1,2 +0,0 @@
1
- # broccoli-debug
2
- /DEBUG/