@backstage/test-utils 1.2.0-next.2 → 1.2.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 +34 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @backstage/test-utils
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 817f3196f6: Elements rendered in a test app are no longer wrapped in a `Routes` and `Route` element, as this is not compatible with React Router v6 stable.
8
+
9
+ ### Patch Changes
10
+
11
+ - 817f3196f6: Updated React Router dependencies to be peer dependencies.
12
+ - 7d47def9c4: Removed dependency on `@types/jest`.
13
+ - 667d917488: Updated dependency `msw` to `^0.47.0`.
14
+ - 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
15
+ - bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
16
+ - d9e39544be: Add missing peer dependencies
17
+ - Updated dependencies
18
+ - @backstage/core-app-api@1.1.0
19
+ - @backstage/core-plugin-api@1.0.6
20
+ - @backstage/plugin-permission-react@0.4.5
21
+ - @backstage/config@1.0.2
22
+ - @backstage/plugin-permission-common@0.6.4
23
+
24
+ ## 1.2.0-next.3
25
+
26
+ ### Patch Changes
27
+
28
+ - 7d47def9c4: Removed dependency on `@types/jest`.
29
+ - d9e39544be: Add missing peer dependencies
30
+ - Updated dependencies
31
+ - @backstage/config@1.0.2-next.0
32
+ - @backstage/core-app-api@1.1.0-next.3
33
+ - @backstage/core-plugin-api@1.0.6-next.3
34
+ - @backstage/plugin-permission-common@0.6.4-next.2
35
+ - @backstage/plugin-permission-react@0.4.5-next.2
36
+
3
37
  ## 1.2.0-next.2
4
38
 
5
39
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/test-utils",
3
3
  "description": "Utilities to test Backstage plugins and apps.",
4
- "version": "1.2.0-next.2",
4
+ "version": "1.2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",
7
7
  "main": "dist/index.esm.js",
@@ -32,11 +32,11 @@
32
32
  "start": "backstage-cli package start"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/config": "^1.0.1",
36
- "@backstage/core-app-api": "^1.1.0-next.2",
37
- "@backstage/core-plugin-api": "^1.0.6-next.2",
38
- "@backstage/plugin-permission-common": "^0.6.4-next.1",
39
- "@backstage/plugin-permission-react": "^0.4.5-next.1",
35
+ "@backstage/config": "^1.0.2",
36
+ "@backstage/core-app-api": "^1.1.0",
37
+ "@backstage/core-plugin-api": "^1.0.6",
38
+ "@backstage/plugin-permission-common": "^0.6.4",
39
+ "@backstage/plugin-permission-react": "^0.4.5",
40
40
  "@backstage/theme": "^0.2.16",
41
41
  "@backstage/types": "^1.0.0",
42
42
  "@material-ui/core": "^4.12.2",
@@ -50,17 +50,17 @@
50
50
  "peerDependencies": {
51
51
  "@types/react": "^16.13.1 || ^17.0.0",
52
52
  "react": "^16.13.1 || ^17.0.0",
53
+ "react-dom": "^16.13.1 || ^17.0.0",
53
54
  "react-router": "6.0.0-beta.0 || ^6.3.0",
54
55
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
55
56
  },
56
57
  "devDependencies": {
57
- "@backstage/cli": "^0.19.0-next.2",
58
- "@types/jest": "^26.0.7",
58
+ "@backstage/cli": "^0.19.0",
59
59
  "@types/node": "^16.11.26",
60
60
  "msw": "^0.47.0"
61
61
  },
62
62
  "files": [
63
63
  "dist"
64
64
  ],
65
- "gitHead": "24f889f173370f060725fcf9404081e40769beb4"
65
+ "gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406"
66
66
  }