@backstage/plugin-catalog-backend-module-puppetdb 0.2.17-next.0 → 0.2.17
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 +20 -0
- package/dist/index.d.ts +2 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-puppetdb
|
|
2
2
|
|
|
3
|
+
## 0.2.17
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@1.6.0
|
|
9
|
+
- @backstage/plugin-catalog-node@1.20.1
|
|
10
|
+
|
|
11
|
+
## 0.2.17-next.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies
|
|
16
|
+
- @backstage/backend-plugin-api@1.6.0-next.1
|
|
17
|
+
- @backstage/catalog-model@1.7.6
|
|
18
|
+
- @backstage/config@1.3.6
|
|
19
|
+
- @backstage/errors@1.2.7
|
|
20
|
+
- @backstage/types@1.2.2
|
|
21
|
+
- @backstage/plugin-catalog-node@1.20.1-next.1
|
|
22
|
+
|
|
3
23
|
## 0.2.17-next.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -197,4 +197,5 @@ declare const DEFAULT_PROVIDER_ID = "default";
|
|
|
197
197
|
*/
|
|
198
198
|
declare const catalogModulePuppetDbEntityProvider: _backstage_backend_plugin_api.BackendFeature;
|
|
199
199
|
|
|
200
|
-
export { ANNOTATION_PUPPET_CERTNAME, DEFAULT_PROVIDER_ID, PuppetDbEntityProvider,
|
|
200
|
+
export { ANNOTATION_PUPPET_CERTNAME, DEFAULT_PROVIDER_ID, PuppetDbEntityProvider, catalogModulePuppetDbEntityProvider as default, defaultResourceTransformer };
|
|
201
|
+
export type { PuppetDbEntityProviderConfig, PuppetFact, PuppetFactSet, PuppetNode, ResourceTransformer };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-puppetdb",
|
|
3
|
-
"version": "0.2.17
|
|
3
|
+
"version": "0.2.17",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards PuppetDB",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -57,18 +57,18 @@
|
|
|
57
57
|
"test": "backstage-cli package test"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
|
-
"@backstage/backend-plugin-api": "1.
|
|
61
|
-
"@backstage/catalog-model": "1.7.6",
|
|
62
|
-
"@backstage/config": "1.3.6",
|
|
63
|
-
"@backstage/errors": "1.2.7",
|
|
64
|
-
"@backstage/plugin-catalog-node": "1.20.1
|
|
65
|
-
"@backstage/types": "1.2.2",
|
|
60
|
+
"@backstage/backend-plugin-api": "^1.6.0",
|
|
61
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
62
|
+
"@backstage/config": "^1.3.6",
|
|
63
|
+
"@backstage/errors": "^1.2.7",
|
|
64
|
+
"@backstage/plugin-catalog-node": "^1.20.1",
|
|
65
|
+
"@backstage/types": "^1.2.2",
|
|
66
66
|
"lodash": "^4.17.21",
|
|
67
67
|
"uuid": "^11.0.0"
|
|
68
68
|
},
|
|
69
69
|
"devDependencies": {
|
|
70
|
-
"@backstage/backend-test-utils": "1.10.
|
|
71
|
-
"@backstage/cli": "0.
|
|
70
|
+
"@backstage/backend-test-utils": "^1.10.2",
|
|
71
|
+
"@backstage/cli": "^0.35.0",
|
|
72
72
|
"@types/lodash": "^4.14.151",
|
|
73
73
|
"msw": "^1.0.0"
|
|
74
74
|
},
|