@backstage/test-utils 0.2.4-next.0 → 0.2.6

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 +31 -0
  2. package/package.json +21 -17
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/test-utils
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-plugin-api@0.7.0
9
+ - @backstage/core-app-api@0.5.4
10
+ - @backstage/plugin-permission-react@0.3.2
11
+
12
+ ## 0.2.5
13
+
14
+ ### Patch Changes
15
+
16
+ - 1ed305728b: Bump `node-fetch` to version 2.6.7 and `cross-fetch` to version 3.1.5
17
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
18
+ - Updated dependencies
19
+ - @backstage/core-app-api@0.5.3
20
+ - @backstage/core-plugin-api@0.6.1
21
+ - @backstage/plugin-permission-common@0.5.0
22
+ - @backstage/plugin-permission-react@0.3.1
23
+ - @backstage/config@0.1.14
24
+ - @backstage/theme@0.2.15
25
+ - @backstage/types@0.1.2
26
+
27
+ ## 0.2.4
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies
32
+ - @backstage/core-app-api@0.5.2
33
+
3
34
  ## 0.2.4-next.0
4
35
 
5
36
  ### Patch Changes
package/package.json CHANGED
@@ -1,13 +1,16 @@
1
1
  {
2
2
  "name": "@backstage/test-utils",
3
3
  "description": "Utilities to test Backstage plugins and apps.",
4
- "version": "0.2.4-next.0",
4
+ "version": "0.2.6",
5
5
  "private": false,
6
6
  "publishConfig": {
7
7
  "access": "public",
8
8
  "main": "dist/index.esm.js",
9
9
  "types": "dist/index.d.ts"
10
10
  },
11
+ "backstage": {
12
+ "role": "web-library"
13
+ },
11
14
  "homepage": "https://backstage.io",
12
15
  "repository": {
13
16
  "type": "git",
@@ -21,27 +24,28 @@
21
24
  "main": "dist/index.esm.js",
22
25
  "types": "dist/index.d.ts",
23
26
  "scripts": {
24
- "build": "backstage-cli build --outputs types,esm",
25
- "lint": "backstage-cli lint",
26
- "test": "backstage-cli test",
27
- "prepack": "backstage-cli prepack",
28
- "postpack": "backstage-cli postpack",
29
- "clean": "backstage-cli clean"
27
+ "build": "backstage-cli package build",
28
+ "lint": "backstage-cli package lint",
29
+ "test": "backstage-cli package test",
30
+ "prepack": "backstage-cli package prepack",
31
+ "postpack": "backstage-cli package postpack",
32
+ "clean": "backstage-cli package clean",
33
+ "start": "backstage-cli package start"
30
34
  },
31
35
  "dependencies": {
32
- "@backstage/config": "^0.1.13",
33
- "@backstage/core-app-api": "^0.5.2-next.0",
34
- "@backstage/core-plugin-api": "^0.6.0",
35
- "@backstage/plugin-permission-common": "^0.4.0",
36
- "@backstage/plugin-permission-react": "^0.3.0",
37
- "@backstage/theme": "^0.2.14",
38
- "@backstage/types": "^0.1.1",
36
+ "@backstage/config": "^0.1.15",
37
+ "@backstage/core-app-api": "^0.5.4",
38
+ "@backstage/core-plugin-api": "^0.7.0",
39
+ "@backstage/plugin-permission-common": "^0.5.1",
40
+ "@backstage/plugin-permission-react": "^0.3.2",
41
+ "@backstage/theme": "^0.2.15",
42
+ "@backstage/types": "^0.1.3",
39
43
  "@material-ui/core": "^4.12.2",
40
44
  "@material-ui/icons": "^4.11.2",
41
45
  "@testing-library/jest-dom": "^5.10.1",
42
46
  "@testing-library/react": "^11.2.5",
43
47
  "@testing-library/user-event": "^13.1.8",
44
- "cross-fetch": "^3.0.6",
48
+ "cross-fetch": "^3.1.5",
45
49
  "react-router": "6.0.0-beta.0",
46
50
  "react-router-dom": "6.0.0-beta.0",
47
51
  "zen-observable": "^0.8.15"
@@ -51,7 +55,7 @@
51
55
  "react": "^16.13.1 || ^17.0.0"
52
56
  },
53
57
  "devDependencies": {
54
- "@backstage/cli": "^0.13.1-next.1",
58
+ "@backstage/cli": "^0.14.1",
55
59
  "@types/jest": "^26.0.7",
56
60
  "@types/node": "^14.14.32",
57
61
  "msw": "^0.35.0"
@@ -59,5 +63,5 @@
59
63
  "files": [
60
64
  "dist"
61
65
  ],
62
- "gitHead": "d6da97a1edeb21fcefc682d91916987ba9f3d89a"
66
+ "gitHead": "a15da6ea1e3e8adc37be98be064071c8b5279b4a"
63
67
  }