Skip to content

Commit dd51d41

Browse files
NullVoxPopuligithub-actions[bot]
authored andcommitted
Prepare Release using 'release-plan'
1 parent e31db51 commit dd51d41

File tree

3 files changed

+28
-15
lines changed

3 files changed

+28
-15
lines changed

.release-plan.json

+5-13
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,17 @@
11
{
22
"solution": {
33
"@ember/test-helpers": {
4-
"impact": "major",
5-
"oldVersion": "3.3.1",
6-
"newVersion": "4.0.0",
4+
"impact": "patch",
5+
"oldVersion": "4.0.0",
6+
"newVersion": "4.0.1",
77
"constraints": [
8-
{
9-
"impact": "major",
10-
"reason": "Appears in changelog section :boom: Breaking Change"
11-
},
12-
{
13-
"impact": "minor",
14-
"reason": "Appears in changelog section :rocket: Enhancement"
15-
},
168
{
179
"impact": "patch",
18-
"reason": "Appears in changelog section :house: Internal"
10+
"reason": "Appears in changelog section :bug: Bug Fix"
1911
}
2012
],
2113
"pkgJSONPath": "./addon/package.json"
2214
}
2315
},
24-
"description": "## Release (2024-08-20)\n\n@ember/test-helpers 4.0.0 (major)\n\n#### :boom: Breaking Change\n* Other\n * [#1474](https://github.com/emberjs/ember-test-helpers/pull/1474) Drop support for TS < 5 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@ember/test-helpers`\n * [#1472](https://github.com/emberjs/ember-test-helpers/pull/1472) Remove require usage, dropping support for automatic ember-data/setup-container inclusion ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :rocket: Enhancement\n* `@ember/test-helpers`, `test-app`\n * [#1471](https://github.com/emberjs/ember-test-helpers/pull/1471) V2 Addon Conversion ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@ember/test-helpers`\n * [#1472](https://github.com/emberjs/ember-test-helpers/pull/1472) Remove require usage, dropping support for automatic ember-data/setup-container inclusion ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `@ember/test-helpers`, `test-app`, `type-tests`\n * [#1476](https://github.com/emberjs/ember-test-helpers/pull/1476) Don't use a shared lockfile ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@ember/test-helpers`\n * [#1477](https://github.com/emberjs/ember-test-helpers/pull/1477) Add Docs-Generation to CI -- will error if docs get out of sync and provides actionable information towards resolution. ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* Other\n * [#1475](https://github.com/emberjs/ember-test-helpers/pull/1475) Use strict .npmrc ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n * [#1470](https://github.com/emberjs/ember-test-helpers/pull/1470) Re-enable try scenarios against 5.10, 5.11-beta and 5.12-canary ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `test-app`\n * [#1473](https://github.com/emberjs/ember-test-helpers/pull/1473) Get tests passing w/ Chrome's new selectionchange event behavior ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@ember/test-helpers`, `test-app`\n * [#1468](https://github.com/emberjs/ember-test-helpers/pull/1468) Move tests to new test-app ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n* `@ember/test-helpers`, `type-tests`\n * [#1467](https://github.com/emberjs/ember-test-helpers/pull/1467) Fix import type via upgrading @tsconfig/ember ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
16+
"description": "## Release (2024-08-22)\n\n@ember/test-helpers 4.0.1 (patch)\n\n#### :bug: Bug Fix\n* `@ember/test-helpers`, `test-app`\n * [#1482](https://github.com/emberjs/ember-test-helpers/pull/1482) Resolve Error: @ember/test-helpers is trying to import from @ember/-internals but that is not one of its explicit dependencies ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :memo: Documentation\n* [#1483](https://github.com/emberjs/ember-test-helpers/pull/1483) Update README.md to reflect TS support ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### :house: Internal\n* `test-app`\n * [#1484](https://github.com/emberjs/ember-test-helpers/pull/1484) Update tests to be compatible with Ember v6 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))\n\n#### Committers: 1\n- [@NullVoxPopuli](https://github.com/NullVoxPopuli)\n"
2517
}

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## Release (2024-08-22)
4+
5+
@ember/test-helpers 4.0.1 (patch)
6+
7+
#### :bug: Bug Fix
8+
* `@ember/test-helpers`, `test-app`
9+
* [#1482](https://github.com/emberjs/ember-test-helpers/pull/1482) Resolve Error: @ember/test-helpers is trying to import from @ember/-internals but that is not one of its explicit dependencies ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
10+
11+
#### :memo: Documentation
12+
* [#1483](https://github.com/emberjs/ember-test-helpers/pull/1483) Update README.md to reflect TS support ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
13+
14+
#### :house: Internal
15+
* `test-app`
16+
* [#1484](https://github.com/emberjs/ember-test-helpers/pull/1484) Update tests to be compatible with Ember v6 ([@NullVoxPopuli](https://github.com/NullVoxPopuli))
17+
18+
#### Committers: 1
19+
- [@NullVoxPopuli](https://github.com/NullVoxPopuli)
20+
321
## Release (2024-08-20)
422

523
@ember/test-helpers 4.0.0 (major)

addon/package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ember/test-helpers",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Helpers for testing Ember.js applications",
55
"keywords": [
66
"ember-addon"
@@ -98,6 +98,9 @@
9898
"type": "addon",
9999
"main": "addon-main.cjs",
100100
"app-js": {},
101-
"externals": ["@glimmer/manager", "@ember/-internals"]
101+
"externals": [
102+
"@glimmer/manager",
103+
"@ember/-internals"
104+
]
102105
}
103106
}

0 commit comments

Comments
 (0)