@backstage/plugin-catalog-backend-module-gitlab 0.3.5-next.0 → 0.3.5-next.2
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 +27 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +1 -1
- package/dist/alpha.cjs.js.map +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.3.5-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cc4228e: Switched module ID to use kebab-case.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-catalog-node@1.6.0-next.2
|
|
10
|
+
- @backstage/backend-common@0.20.0-next.2
|
|
11
|
+
- @backstage/backend-plugin-api@0.6.8-next.2
|
|
12
|
+
- @backstage/backend-tasks@0.5.13-next.2
|
|
13
|
+
- @backstage/catalog-model@1.4.3
|
|
14
|
+
- @backstage/config@1.1.1
|
|
15
|
+
- @backstage/integration@1.8.0-next.1
|
|
16
|
+
|
|
17
|
+
## 0.3.5-next.1
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/integration@1.8.0-next.1
|
|
23
|
+
- @backstage/backend-common@0.20.0-next.1
|
|
24
|
+
- @backstage/backend-plugin-api@0.6.8-next.1
|
|
25
|
+
- @backstage/backend-tasks@0.5.13-next.1
|
|
26
|
+
- @backstage/catalog-model@1.4.3
|
|
27
|
+
- @backstage/config@1.1.1
|
|
28
|
+
- @backstage/plugin-catalog-node@1.5.1-next.1
|
|
29
|
+
|
|
3
30
|
## 0.3.5-next.0
|
|
4
31
|
|
|
5
32
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.cjs.js
CHANGED
|
@@ -16,7 +16,7 @@ require('@backstage/plugin-catalog-node');
|
|
|
16
16
|
|
|
17
17
|
const catalogModuleGitlabDiscoveryEntityProvider = backendPluginApi.createBackendModule({
|
|
18
18
|
pluginId: "catalog",
|
|
19
|
-
moduleId: "
|
|
19
|
+
moduleId: "gitlab-discovery-entity-provider",
|
|
20
20
|
register(env) {
|
|
21
21
|
env.registerInit({
|
|
22
22
|
deps: {
|
package/dist/alpha.cjs.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"alpha.cjs.js","sources":["../src/module/catalogModuleGitlabDiscoveryEntityProvider.ts"],"sourcesContent":["/*\n * Copyright 2022 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createBackendModule,\n coreServices,\n} from '@backstage/backend-plugin-api';\nimport { loggerToWinstonLogger } from '@backstage/backend-common';\nimport { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node/alpha';\nimport { GitlabDiscoveryEntityProvider } from '../providers';\n\n/**\n * Registers the GitlabDiscoveryEntityProvider with the catalog processing extension point.\n *\n * @alpha\n */\nexport const catalogModuleGitlabDiscoveryEntityProvider = createBackendModule({\n pluginId: 'catalog',\n moduleId: '
|
|
1
|
+
{"version":3,"file":"alpha.cjs.js","sources":["../src/module/catalogModuleGitlabDiscoveryEntityProvider.ts"],"sourcesContent":["/*\n * Copyright 2022 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport {\n createBackendModule,\n coreServices,\n} from '@backstage/backend-plugin-api';\nimport { loggerToWinstonLogger } from '@backstage/backend-common';\nimport { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node/alpha';\nimport { GitlabDiscoveryEntityProvider } from '../providers';\n\n/**\n * Registers the GitlabDiscoveryEntityProvider with the catalog processing extension point.\n *\n * @alpha\n */\nexport const catalogModuleGitlabDiscoveryEntityProvider = createBackendModule({\n pluginId: 'catalog',\n moduleId: 'gitlab-discovery-entity-provider',\n register(env) {\n env.registerInit({\n deps: {\n config: coreServices.rootConfig,\n catalog: catalogProcessingExtensionPoint,\n logger: coreServices.logger,\n scheduler: coreServices.scheduler,\n },\n async init({ config, catalog, logger, scheduler }) {\n catalog.addEntityProvider(\n GitlabDiscoveryEntityProvider.fromConfig(config, {\n logger: loggerToWinstonLogger(logger),\n scheduler,\n }),\n );\n },\n });\n },\n});\n"],"names":["createBackendModule","coreServices","catalogProcessingExtensionPoint","GitlabDiscoveryEntityProvider","loggerToWinstonLogger"],"mappings":";;;;;;;;;;;;;;;;AA6BO,MAAM,6CAA6CA,oCAAoB,CAAA;AAAA,EAC5E,QAAU,EAAA,SAAA;AAAA,EACV,QAAU,EAAA,kCAAA;AAAA,EACV,SAAS,GAAK,EAAA;AACZ,IAAA,GAAA,CAAI,YAAa,CAAA;AAAA,MACf,IAAM,EAAA;AAAA,QACJ,QAAQC,6BAAa,CAAA,UAAA;AAAA,QACrB,OAAS,EAAAC,qCAAA;AAAA,QACT,QAAQD,6BAAa,CAAA,MAAA;AAAA,QACrB,WAAWA,6BAAa,CAAA,SAAA;AAAA,OAC1B;AAAA,MACA,MAAM,IAAK,CAAA,EAAE,QAAQ,OAAS,EAAA,MAAA,EAAQ,WAAa,EAAA;AACjD,QAAQ,OAAA,CAAA,iBAAA;AAAA,UACNE,2DAAA,CAA8B,WAAW,MAAQ,EAAA;AAAA,YAC/C,MAAA,EAAQC,oCAAsB,MAAM,CAAA;AAAA,YACpC,SAAA;AAAA,WACD,CAAA;AAAA,SACH,CAAA;AAAA,OACF;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACF,CAAC;;;;"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-gitlab",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps integrate towards GitLab",
|
|
4
|
-
"version": "0.3.5-next.
|
|
4
|
+
"version": "0.3.5-next.2",
|
|
5
5
|
"main": "./dist/index.cjs.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -43,21 +43,21 @@
|
|
|
43
43
|
"clean": "backstage-cli package clean"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage/backend-common": "^0.20.0-next.
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.8-next.
|
|
48
|
-
"@backstage/backend-tasks": "^0.5.13-next.
|
|
46
|
+
"@backstage/backend-common": "^0.20.0-next.2",
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.8-next.2",
|
|
48
|
+
"@backstage/backend-tasks": "^0.5.13-next.2",
|
|
49
49
|
"@backstage/catalog-model": "^1.4.3",
|
|
50
50
|
"@backstage/config": "^1.1.1",
|
|
51
|
-
"@backstage/integration": "^1.8.0-next.
|
|
52
|
-
"@backstage/plugin-catalog-node": "^1.
|
|
51
|
+
"@backstage/integration": "^1.8.0-next.1",
|
|
52
|
+
"@backstage/plugin-catalog-node": "^1.6.0-next.2",
|
|
53
53
|
"lodash": "^4.17.21",
|
|
54
54
|
"node-fetch": "^2.6.7",
|
|
55
55
|
"uuid": "^8.0.0",
|
|
56
56
|
"winston": "^3.2.1"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@backstage/backend-test-utils": "^0.2.9-next.
|
|
60
|
-
"@backstage/cli": "^0.
|
|
59
|
+
"@backstage/backend-test-utils": "^0.2.9-next.2",
|
|
60
|
+
"@backstage/cli": "^0.25.0-next.2",
|
|
61
61
|
"@types/lodash": "^4.14.151",
|
|
62
62
|
"@types/uuid": "^8.0.0",
|
|
63
63
|
"luxon": "^3.0.0",
|