@backstage/plugin-scaffolder-node-test-utils 0.1.0-next.2 → 0.1.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.
- package/CHANGELOG.md +20 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-node-test-utils
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f44589d: Introduced `createMockActionContext` to unify the way of creating scaffolder mock context.
|
|
8
|
+
|
|
9
|
+
It will help to maintain tests in a long run during structural changes of action context.
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- 2bd1410: Removed unused dependencies
|
|
14
|
+
- aa543c9: Add an initiator credentials getter to the default mock context.
|
|
15
|
+
- 563dfd0: Fix issue with package bundling, should be `dist/index.cjs.js` instead of `dist/index.esm.js`.
|
|
16
|
+
- bbd1fe1: Made "checkpoint" on scaffolder action context non-optional
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/backend-test-utils@0.3.4
|
|
19
|
+
- @backstage/plugin-scaffolder-node@0.4.0
|
|
20
|
+
- @backstage/backend-common@0.21.4
|
|
21
|
+
- @backstage/types@1.1.1
|
|
22
|
+
|
|
3
23
|
## 0.1.0-next.2
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-node-test-utils",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "node-library"
|
|
6
6
|
},
|
|
@@ -31,13 +31,13 @@
|
|
|
31
31
|
"test": "backstage-cli package test"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.21.4
|
|
35
|
-
"@backstage/backend-test-utils": "^0.3.4
|
|
36
|
-
"@backstage/plugin-scaffolder-node": "^0.4.0
|
|
34
|
+
"@backstage/backend-common": "^0.21.4",
|
|
35
|
+
"@backstage/backend-test-utils": "^0.3.4",
|
|
36
|
+
"@backstage/plugin-scaffolder-node": "^0.4.0",
|
|
37
37
|
"@backstage/types": "^1.1.1"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@backstage/cli": "^0.
|
|
40
|
+
"@backstage/cli": "^0.26.0",
|
|
41
41
|
"@types/react": "*"
|
|
42
42
|
}
|
|
43
43
|
}
|