@backstage/backend-test-utils 1.3.0-next.2 → 1.3.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 +37 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/backend-test-utils
|
|
2
2
|
|
|
3
|
+
## 1.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- dd05a97: Added mocks for the new `PermissionsRegistryService`.
|
|
8
|
+
- a4aa244: This change introduces mocks for the `auditor` service.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- f866b86: Internal refactor to use explicit `require` for lazy-loading dependency.
|
|
13
|
+
- fb051f2: Sync feature installation compatibility logic with `@backstage/backend-app-api`.
|
|
14
|
+
- 72cddf2: Added the new `getPermissionRuleset` method to `mockServices.permissionsRegistry`.
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-defaults@0.8.0
|
|
17
|
+
- @backstage/backend-plugin-api@1.2.0
|
|
18
|
+
- @backstage/plugin-auth-node@0.6.0
|
|
19
|
+
- @backstage/backend-app-api@1.2.0
|
|
20
|
+
- @backstage/config@1.3.2
|
|
21
|
+
- @backstage/errors@1.2.7
|
|
22
|
+
- @backstage/types@1.2.1
|
|
23
|
+
- @backstage/plugin-events-node@0.4.8
|
|
24
|
+
|
|
25
|
+
## 1.3.0-next.3
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- 72cddf2: Added the new `getPermissionRuleset` method to `mockServices.permissionsRegistry`.
|
|
30
|
+
- Updated dependencies
|
|
31
|
+
- @backstage/backend-defaults@0.8.0-next.3
|
|
32
|
+
- @backstage/backend-plugin-api@1.2.0-next.2
|
|
33
|
+
- @backstage/backend-app-api@1.2.0-next.3
|
|
34
|
+
- @backstage/plugin-auth-node@0.6.0-next.2
|
|
35
|
+
- @backstage/plugin-events-node@0.4.8-next.2
|
|
36
|
+
- @backstage/config@1.3.2
|
|
37
|
+
- @backstage/errors@1.2.7
|
|
38
|
+
- @backstage/types@1.2.1
|
|
39
|
+
|
|
3
40
|
## 1.3.0-next.2
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/backend-test-utils",
|
|
3
|
-
"version": "1.3.0
|
|
3
|
+
"version": "1.3.0",
|
|
4
4
|
"description": "Test helpers library for Backstage backends",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -49,14 +49,14 @@
|
|
|
49
49
|
"test": "backstage-cli package test"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@backstage/backend-app-api": "1.2.0
|
|
53
|
-
"@backstage/backend-defaults": "0.8.0
|
|
54
|
-
"@backstage/backend-plugin-api": "1.2.0
|
|
55
|
-
"@backstage/config": "1.3.2",
|
|
56
|
-
"@backstage/errors": "1.2.7",
|
|
57
|
-
"@backstage/plugin-auth-node": "0.6.0
|
|
58
|
-
"@backstage/plugin-events-node": "0.4.8
|
|
59
|
-
"@backstage/types": "1.2.1",
|
|
52
|
+
"@backstage/backend-app-api": "^1.2.0",
|
|
53
|
+
"@backstage/backend-defaults": "^0.8.0",
|
|
54
|
+
"@backstage/backend-plugin-api": "^1.2.0",
|
|
55
|
+
"@backstage/config": "^1.3.2",
|
|
56
|
+
"@backstage/errors": "^1.2.7",
|
|
57
|
+
"@backstage/plugin-auth-node": "^0.6.0",
|
|
58
|
+
"@backstage/plugin-events-node": "^0.4.8",
|
|
59
|
+
"@backstage/types": "^1.2.1",
|
|
60
60
|
"@keyv/memcache": "^2.0.1",
|
|
61
61
|
"@keyv/redis": "^4.0.1",
|
|
62
62
|
"@types/express": "^4.17.6",
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
"yn": "^4.0.0"
|
|
79
79
|
},
|
|
80
80
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "0.30.0
|
|
81
|
+
"@backstage/cli": "^0.30.0",
|
|
82
82
|
"@types/supertest": "^2.0.8",
|
|
83
83
|
"supertest": "^7.0.0"
|
|
84
84
|
},
|