ember-vitest 0.2.0 → 0.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/.release-plan.json +6 -6
- package/CHANGELOG.md +11 -0
- package/package.json +3 -2
package/.release-plan.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"solution": {
|
|
3
3
|
"ember-vitest": {
|
|
4
|
-
"impact": "
|
|
5
|
-
"oldVersion": "0.
|
|
6
|
-
"newVersion": "0.2.
|
|
4
|
+
"impact": "patch",
|
|
5
|
+
"oldVersion": "0.2.0",
|
|
6
|
+
"newVersion": "0.2.1",
|
|
7
7
|
"tagName": "latest",
|
|
8
8
|
"constraints": [
|
|
9
9
|
{
|
|
10
|
-
"impact": "
|
|
11
|
-
"reason": "Appears in changelog section :
|
|
10
|
+
"impact": "patch",
|
|
11
|
+
"reason": "Appears in changelog section :bug: Bug Fix"
|
|
12
12
|
}
|
|
13
13
|
],
|
|
14
14
|
"pkgJSONPath": "./package.json"
|
|
15
15
|
}
|
|
16
16
|
},
|
|
17
|
-
"description": "## Release (2025-11-13)\n\n* ember-vitest 0.2.
|
|
17
|
+
"description": "## Release (2025-11-13)\n\n* ember-vitest 0.2.1 (patch)\n\n#### :bug: Bug Fix\n* `ember-vitest`\n * [#9](https://github.com/NullVoxPopuli/ember-vitest/pull/9) Add @ember/test-helpers to peerDependencies ([@SergeAstapov](https://github.com/SergeAstapov))\n\n#### Committers: 1\n- Sergey Astapov ([@SergeAstapov](https://github.com/SergeAstapov))\n"
|
|
18
18
|
}
|
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## Release (2025-11-13)
|
|
4
4
|
|
|
5
|
+
* ember-vitest 0.2.1 (patch)
|
|
6
|
+
|
|
7
|
+
#### :bug: Bug Fix
|
|
8
|
+
* `ember-vitest`
|
|
9
|
+
* [#9](https://github.com/NullVoxPopuli/ember-vitest/pull/9) Add @ember/test-helpers to peerDependencies ([@SergeAstapov](https://github.com/SergeAstapov))
|
|
10
|
+
|
|
11
|
+
#### Committers: 1
|
|
12
|
+
- Sergey Astapov ([@SergeAstapov](https://github.com/SergeAstapov))
|
|
13
|
+
|
|
14
|
+
## Release (2025-11-13)
|
|
15
|
+
|
|
5
16
|
* ember-vitest 0.2.0 (minor)
|
|
6
17
|
|
|
7
18
|
#### :rocket: Enhancement
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-vitest",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "integration for testing Ember with Vitest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember",
|
|
@@ -49,7 +49,8 @@
|
|
|
49
49
|
"webdriverio": "^9.20.0"
|
|
50
50
|
},
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"vitest": "^4.0.8"
|
|
52
|
+
"vitest": "^4.0.8",
|
|
53
|
+
"@ember/test-helpers": ">=4.0.0"
|
|
53
54
|
},
|
|
54
55
|
"engines": {
|
|
55
56
|
"node": "^20.11.0 || ^22 || >=24"
|