@backstage/plugin-catalog-node 1.0.0-next.0 → 1.0.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 +17 -0
- package/alpha/package.json +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-node
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- 9a6aba1d85: This package houses stable types from the `@backstage/plugin-catalog-backend` package and is intended for creation of catalog modules. Prefer importing from this package over the `@backstage/plugin-catalog-backend` package.
|
|
8
|
+
|
|
9
|
+
### Minor Changes
|
|
10
|
+
|
|
11
|
+
- 91c1d12123: Added alpha exports for the new experimental backend system.
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-plugin-api@0.1.0
|
|
17
|
+
- @backstage/catalog-model@1.1.0
|
|
18
|
+
- @backstage/errors@1.1.0
|
|
19
|
+
|
|
3
20
|
## 1.0.0-next.0
|
|
4
21
|
|
|
5
22
|
### Major Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-node",
|
|
3
3
|
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -25,18 +25,18 @@
|
|
|
25
25
|
"postpack": "backstage-cli package postpack"
|
|
26
26
|
},
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@backstage/backend-plugin-api": "^0.1.0
|
|
29
|
-
"@backstage/catalog-model": "^1.1.0
|
|
30
|
-
"@backstage/errors": "1.1.0
|
|
28
|
+
"@backstage/backend-plugin-api": "^0.1.0",
|
|
29
|
+
"@backstage/catalog-model": "^1.1.0",
|
|
30
|
+
"@backstage/errors": "1.1.0",
|
|
31
31
|
"@backstage/types": "^1.0.0"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.14.1
|
|
35
|
-
"@backstage/cli": "^0.18.0
|
|
34
|
+
"@backstage/backend-common": "^0.14.1",
|
|
35
|
+
"@backstage/cli": "^0.18.0"
|
|
36
36
|
},
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|
|
39
39
|
"alpha"
|
|
40
40
|
],
|
|
41
|
-
"gitHead": "
|
|
41
|
+
"gitHead": "999878d8f1ae30f6a15925816af2016cb9d717a1"
|
|
42
42
|
}
|