@backstage/test-utils 0.0.0-nightly-20240326055012 → 0.0.0-nightly-20240410021126

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 CHANGED
@@ -1,11 +1,37 @@
1
1
  # @backstage/test-utils
2
2
 
3
- ## 0.0.0-nightly-20240326055012
3
+ ## 0.0.0-nightly-20240410021126
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/core-app-api@0.0.0-nightly-20240326055012
8
+ - @backstage/core-app-api@0.0.0-nightly-20240410021126
9
+ - @backstage/config@1.2.0
10
+ - @backstage/core-plugin-api@1.9.1
11
+ - @backstage/theme@0.5.2
12
+ - @backstage/types@1.1.1
13
+ - @backstage/plugin-permission-common@0.7.13
14
+ - @backstage/plugin-permission-react@0.4.21
15
+
16
+ ## 1.5.4-next.0
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/core-app-api@1.12.4-next.0
22
+ - @backstage/config@1.2.0
23
+ - @backstage/core-plugin-api@1.9.1
24
+ - @backstage/theme@0.5.2
25
+ - @backstage/types@1.1.1
26
+ - @backstage/plugin-permission-common@0.7.13
27
+ - @backstage/plugin-permission-react@0.4.21
28
+
29
+ ## 1.5.3
30
+
31
+ ### Patch Changes
32
+
33
+ - Updated dependencies
34
+ - @backstage/core-app-api@1.12.3
9
35
  - @backstage/core-plugin-api@1.9.1
10
36
  - @backstage/config@1.2.0
11
37
  - @backstage/theme@0.5.2
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/test-utils",
3
- "version": "0.0.0-nightly-20240326055012",
3
+ "version": "0.0.0-nightly-20240410021126",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/package.json CHANGED
@@ -1,10 +1,24 @@
1
1
  {
2
2
  "name": "@backstage/test-utils",
3
+ "version": "0.0.0-nightly-20240410021126",
3
4
  "description": "Utilities to test Backstage plugins and apps.",
4
- "version": "0.0.0-nightly-20240326055012",
5
+ "backstage": {
6
+ "role": "web-library"
7
+ },
5
8
  "publishConfig": {
6
9
  "access": "public"
7
10
  },
11
+ "keywords": [
12
+ "backstage"
13
+ ],
14
+ "homepage": "https://backstage.io",
15
+ "repository": {
16
+ "type": "git",
17
+ "url": "https://github.com/backstage/backstage",
18
+ "directory": "packages/test-utils"
19
+ },
20
+ "license": "Apache-2.0",
21
+ "sideEffects": false,
8
22
  "exports": {
9
23
  ".": {
10
24
  "import": "./dist/index.esm.js",
@@ -18,34 +32,24 @@
18
32
  },
19
33
  "./package.json": "./package.json"
20
34
  },
21
- "backstage": {
22
- "role": "web-library"
23
- },
24
- "homepage": "https://backstage.io",
25
- "repository": {
26
- "type": "git",
27
- "url": "https://github.com/backstage/backstage",
28
- "directory": "packages/test-utils"
29
- },
30
- "keywords": [
31
- "backstage"
32
- ],
33
- "license": "Apache-2.0",
34
35
  "main": "./dist/index.esm.js",
35
36
  "types": "./dist/index.d.ts",
36
- "sideEffects": false,
37
+ "files": [
38
+ "dist",
39
+ "alpha"
40
+ ],
37
41
  "scripts": {
38
42
  "build": "backstage-cli package build",
43
+ "clean": "backstage-cli package clean",
39
44
  "lint": "backstage-cli package lint",
40
- "test": "backstage-cli package test",
41
45
  "prepack": "backstage-cli package prepack",
42
46
  "postpack": "backstage-cli package postpack",
43
- "clean": "backstage-cli package clean",
44
- "start": "backstage-cli package start"
47
+ "start": "backstage-cli package start",
48
+ "test": "backstage-cli package test"
45
49
  },
46
50
  "dependencies": {
47
51
  "@backstage/config": "^1.2.0",
48
- "@backstage/core-app-api": "^0.0.0-nightly-20240326055012",
52
+ "@backstage/core-app-api": "^0.0.0-nightly-20240410021126",
49
53
  "@backstage/core-plugin-api": "^1.9.1",
50
54
  "@backstage/plugin-permission-common": "^0.7.13",
51
55
  "@backstage/plugin-permission-react": "^0.4.21",
@@ -58,20 +62,16 @@
58
62
  "i18next": "^22.4.15",
59
63
  "zen-observable": "^0.10.0"
60
64
  },
65
+ "devDependencies": {
66
+ "@backstage/cli": "^0.0.0-nightly-20240410021126",
67
+ "@testing-library/jest-dom": "^6.0.0",
68
+ "msw": "^1.0.0"
69
+ },
61
70
  "peerDependencies": {
62
71
  "@testing-library/react": "^12.1.3 || ^13.0.0 || ^14.0.0",
63
72
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
64
73
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
65
74
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
66
75
  },
67
- "devDependencies": {
68
- "@backstage/cli": "^0.0.0-nightly-20240326055012",
69
- "@testing-library/jest-dom": "^6.0.0",
70
- "msw": "^1.0.0"
71
- },
72
- "files": [
73
- "dist",
74
- "alpha"
75
- ],
76
76
  "module": "./dist/index.esm.js"
77
77
  }