@backstage/plugin-scaffolder-node-test-utils 0.1.0-next.1 → 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.
Files changed (2) hide show
  1. package/CHANGELOG.md +32 -0
  2. package/package.json +8 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
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
+
23
+ ## 0.1.0-next.2
24
+
25
+ ### Patch Changes
26
+
27
+ - 2bd1410: Removed unused dependencies
28
+ - 563dfd0: Fix issue with package bundling, should be `dist/index.cjs.js` instead of `dist/index.esm.js`.
29
+ - Updated dependencies
30
+ - @backstage/plugin-scaffolder-node@0.4.0-next.2
31
+ - @backstage/backend-common@0.21.4-next.2
32
+ - @backstage/backend-test-utils@0.3.4-next.2
33
+ - @backstage/types@1.1.1
34
+
3
35
  ## 0.1.0-next.1
4
36
 
5
37
  ### Patch Changes
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-node-test-utils",
3
- "version": "0.1.0-next.1",
3
+ "version": "0.1.0",
4
4
  "backstage": {
5
5
  "role": "node-library"
6
6
  },
7
7
  "publishConfig": {
8
8
  "access": "public",
9
- "main": "dist/index.esm.js",
9
+ "main": "dist/index.cjs.js",
10
10
  "types": "dist/index.d.ts"
11
11
  },
12
12
  "repository": {
@@ -16,7 +16,7 @@
16
16
  },
17
17
  "license": "Apache-2.0",
18
18
  "sideEffects": false,
19
- "main": "dist/index.esm.js",
19
+ "main": "dist/index.cjs.js",
20
20
  "types": "dist/index.d.ts",
21
21
  "files": [
22
22
  "dist"
@@ -31,16 +31,13 @@
31
31
  "test": "backstage-cli package test"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/backend-common": "^0.21.4-next.1",
35
- "@backstage/backend-test-utils": "^0.3.4-next.1",
36
- "@backstage/plugin-scaffolder-common": "^1.5.1-next.1",
37
- "@backstage/plugin-scaffolder-node": "^0.4.0-next.1",
38
- "@backstage/types": "^1.1.1",
39
- "winston": "^3.2.1"
34
+ "@backstage/backend-common": "^0.21.4",
35
+ "@backstage/backend-test-utils": "^0.3.4",
36
+ "@backstage/plugin-scaffolder-node": "^0.4.0",
37
+ "@backstage/types": "^1.1.1"
40
38
  },
41
39
  "devDependencies": {
42
- "@backstage/cli": "^0.25.3-next.1",
43
- "@testing-library/jest-dom": "^6.0.0",
40
+ "@backstage/cli": "^0.26.0",
44
41
  "@types/react": "*"
45
42
  }
46
43
  }