@backstage/plugin-catalog-node 1.14.0-next.2 → 1.14.1-next.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 +34 -0
- package/package.json +25 -14
- package/alpha/package.json +0 -6
- package/testUtils/package.json +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-node
|
|
2
2
|
|
|
3
|
+
## 1.14.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
9
|
+
- @backstage/catalog-client@1.8.1-next.0
|
|
10
|
+
- @backstage/catalog-model@1.7.1
|
|
11
|
+
- @backstage/errors@1.2.5
|
|
12
|
+
- @backstage/types@1.2.0
|
|
13
|
+
- @backstage/plugin-catalog-common@1.1.1
|
|
14
|
+
- @backstage/plugin-permission-common@0.8.2
|
|
15
|
+
- @backstage/plugin-permission-node@0.8.6-next.0
|
|
16
|
+
|
|
17
|
+
## 1.14.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- bc13b42: The `catalogServiceRef` now has its own accompanying `CatalogService` interface that requires Backstage `credentials` objects to be passed. This new version of the `catalogServiceRef` has been promoted and is now available via the main `@backstage/plugin-catalog-node` entry point.
|
|
22
|
+
|
|
23
|
+
The old `catalogServiceRef` with the old `CatalogApi` type is still available from the `/alpha` entry point.
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/catalog-client@1.8.0
|
|
29
|
+
- @backstage/types@1.2.0
|
|
30
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
31
|
+
- @backstage/plugin-permission-common@0.8.2
|
|
32
|
+
- @backstage/catalog-model@1.7.1
|
|
33
|
+
- @backstage/errors@1.2.5
|
|
34
|
+
- @backstage/plugin-catalog-common@1.1.1
|
|
35
|
+
- @backstage/plugin-permission-node@0.8.5
|
|
36
|
+
|
|
3
37
|
## 1.14.0-next.2
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-node",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.1-next.0",
|
|
4
4
|
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -46,10 +46,21 @@
|
|
|
46
46
|
},
|
|
47
47
|
"main": "./dist/index.cjs.js",
|
|
48
48
|
"types": "./dist/index.d.ts",
|
|
49
|
+
"typesVersions": {
|
|
50
|
+
"*": {
|
|
51
|
+
"index": [
|
|
52
|
+
"dist/index.d.ts"
|
|
53
|
+
],
|
|
54
|
+
"alpha": [
|
|
55
|
+
"dist/alpha.d.ts"
|
|
56
|
+
],
|
|
57
|
+
"testUtils": [
|
|
58
|
+
"dist/testUtils.d.ts"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
61
|
+
},
|
|
49
62
|
"files": [
|
|
50
|
-
"dist"
|
|
51
|
-
"alpha",
|
|
52
|
-
"testUtils"
|
|
63
|
+
"dist"
|
|
53
64
|
],
|
|
54
65
|
"scripts": {
|
|
55
66
|
"build": "backstage-cli package build",
|
|
@@ -61,18 +72,18 @@
|
|
|
61
72
|
"test": "backstage-cli package test"
|
|
62
73
|
},
|
|
63
74
|
"dependencies": {
|
|
64
|
-
"@backstage/backend-plugin-api": "1.0.
|
|
65
|
-
"@backstage/catalog-client": "1.8.
|
|
66
|
-
"@backstage/catalog-model": "1.7.
|
|
67
|
-
"@backstage/errors": "1.2.
|
|
68
|
-
"@backstage/plugin-catalog-common": "1.1.
|
|
69
|
-
"@backstage/plugin-permission-common": "0.8.
|
|
70
|
-
"@backstage/plugin-permission-node": "0.8.
|
|
71
|
-
"@backstage/types": "1.
|
|
75
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
76
|
+
"@backstage/catalog-client": "1.8.1-next.0",
|
|
77
|
+
"@backstage/catalog-model": "1.7.1",
|
|
78
|
+
"@backstage/errors": "1.2.5",
|
|
79
|
+
"@backstage/plugin-catalog-common": "1.1.1",
|
|
80
|
+
"@backstage/plugin-permission-common": "0.8.2",
|
|
81
|
+
"@backstage/plugin-permission-node": "0.8.6-next.0",
|
|
82
|
+
"@backstage/types": "1.2.0"
|
|
72
83
|
},
|
|
73
84
|
"devDependencies": {
|
|
74
|
-
"@backstage/backend-test-utils": "1.
|
|
75
|
-
"@backstage/cli": "0.29.
|
|
85
|
+
"@backstage/backend-test-utils": "1.2.0-next.0",
|
|
86
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
76
87
|
"msw": "^1.0.0"
|
|
77
88
|
}
|
|
78
89
|
}
|
package/alpha/package.json
DELETED