@backstage/plugin-catalog-backend-module-gcp 0.0.0-nightly-20260127025640 → 0.0.0-nightly-20260129030729

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 CHANGED
@@ -1,15 +1,28 @@
1
1
  # @backstage/plugin-catalog-backend-module-gcp
2
2
 
3
- ## 0.0.0-nightly-20260127025640
3
+ ## 0.0.0-nightly-20260129030729
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - cfd8103: Updated imports to use stable catalog extension points from `@backstage/plugin-catalog-node` instead of the deprecated alpha exports.
7
8
  - Updated dependencies
8
- - @backstage/backend-plugin-api@0.0.0-nightly-20260127025640
9
+ - @backstage/plugin-catalog-node@0.0.0-nightly-20260129030729
10
+ - @backstage/backend-plugin-api@0.0.0-nightly-20260129030729
11
+ - @backstage/plugin-kubernetes-common@0.0.0-nightly-20260129030729
9
12
  - @backstage/catalog-model@1.7.6
10
13
  - @backstage/config@1.3.6
11
- - @backstage/plugin-catalog-node@0.0.0-nightly-20260127025640
12
- - @backstage/plugin-kubernetes-common@0.0.0-nightly-20260127025640
14
+
15
+ ## 0.3.16-next.0
16
+
17
+ ### Patch Changes
18
+
19
+ - cfd8103: Updated imports to use stable catalog extension points from `@backstage/plugin-catalog-node` instead of the deprecated alpha exports.
20
+ - Updated dependencies
21
+ - @backstage/plugin-catalog-node@1.21.0-next.0
22
+ - @backstage/backend-plugin-api@1.7.0-next.0
23
+ - @backstage/catalog-model@1.7.6
24
+ - @backstage/config@1.3.6
25
+ - @backstage/plugin-kubernetes-common@0.9.10-next.0
13
26
 
14
27
  ## 0.3.15
15
28
 
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var backendPluginApi = require('@backstage/backend-plugin-api');
4
- var alpha = require('@backstage/plugin-catalog-node/alpha');
4
+ var pluginCatalogNode = require('@backstage/plugin-catalog-node');
5
5
  var GkeEntityProvider = require('../providers/GkeEntityProvider.cjs.js');
6
6
 
7
7
  const catalogModuleGcpGkeEntityProvider = backendPluginApi.createBackendModule({
@@ -11,7 +11,7 @@ const catalogModuleGcpGkeEntityProvider = backendPluginApi.createBackendModule({
11
11
  env.registerInit({
12
12
  deps: {
13
13
  config: backendPluginApi.coreServices.rootConfig,
14
- catalog: alpha.catalogProcessingExtensionPoint,
14
+ catalog: pluginCatalogNode.catalogProcessingExtensionPoint,
15
15
  logger: backendPluginApi.coreServices.logger,
16
16
  scheduler: backendPluginApi.coreServices.scheduler
17
17
  },
@@ -1 +1 @@
1
- {"version":3,"file":"catalogModuleGcpGkeEntityProvider.cjs.js","sources":["../../src/module/catalogModuleGcpGkeEntityProvider.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 coreServices,\n createBackendModule,\n} from '@backstage/backend-plugin-api';\nimport { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node/alpha';\nimport { GkeEntityProvider } from '../providers/GkeEntityProvider';\n\n/**\n * Registers the GcpGkeEntityProvider with the catalog processing extension point.\n *\n * @public\n */\nexport const catalogModuleGcpGkeEntityProvider = createBackendModule({\n pluginId: 'catalog',\n moduleId: 'gcp-gke-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 GkeEntityProvider.fromConfig({\n logger,\n scheduler,\n config,\n }),\n );\n },\n });\n },\n});\n"],"names":["createBackendModule","coreServices","catalogProcessingExtensionPoint","GkeEntityProvider"],"mappings":";;;;;;AA4BO,MAAM,oCAAoCA,oCAAA,CAAoB;AAAA,EACnE,QAAA,EAAU,SAAA;AAAA,EACV,QAAA,EAAU,yBAAA;AAAA,EACV,SAAS,GAAA,EAAK;AACZ,IAAA,GAAA,CAAI,YAAA,CAAa;AAAA,MACf,IAAA,EAAM;AAAA,QACJ,QAAQC,6BAAA,CAAa,UAAA;AAAA,QACrB,OAAA,EAASC,qCAAA;AAAA,QACT,QAAQD,6BAAA,CAAa,MAAA;AAAA,QACrB,WAAWA,6BAAA,CAAa;AAAA,OAC1B;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,QAAQ,OAAA,EAAS,MAAA,EAAQ,WAAU,EAAG;AACjD,QAAA,OAAA,CAAQ,iBAAA;AAAA,UACNE,oCAAkB,UAAA,CAAW;AAAA,YAC3B,MAAA;AAAA,YACA,SAAA;AAAA,YACA;AAAA,WACD;AAAA,SACH;AAAA,MACF;AAAA,KACD,CAAA;AAAA,EACH;AACF,CAAC;;;;"}
1
+ {"version":3,"file":"catalogModuleGcpGkeEntityProvider.cjs.js","sources":["../../src/module/catalogModuleGcpGkeEntityProvider.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 coreServices,\n createBackendModule,\n} from '@backstage/backend-plugin-api';\nimport { catalogProcessingExtensionPoint } from '@backstage/plugin-catalog-node';\nimport { GkeEntityProvider } from '../providers/GkeEntityProvider';\n\n/**\n * Registers the GcpGkeEntityProvider with the catalog processing extension point.\n *\n * @public\n */\nexport const catalogModuleGcpGkeEntityProvider = createBackendModule({\n pluginId: 'catalog',\n moduleId: 'gcp-gke-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 GkeEntityProvider.fromConfig({\n logger,\n scheduler,\n config,\n }),\n );\n },\n });\n },\n});\n"],"names":["createBackendModule","coreServices","catalogProcessingExtensionPoint","GkeEntityProvider"],"mappings":";;;;;;AA4BO,MAAM,oCAAoCA,oCAAA,CAAoB;AAAA,EACnE,QAAA,EAAU,SAAA;AAAA,EACV,QAAA,EAAU,yBAAA;AAAA,EACV,SAAS,GAAA,EAAK;AACZ,IAAA,GAAA,CAAI,YAAA,CAAa;AAAA,MACf,IAAA,EAAM;AAAA,QACJ,QAAQC,6BAAA,CAAa,UAAA;AAAA,QACrB,OAAA,EAASC,iDAAA;AAAA,QACT,QAAQD,6BAAA,CAAa,MAAA;AAAA,QACrB,WAAWA,6BAAA,CAAa;AAAA,OAC1B;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,QAAQ,OAAA,EAAS,MAAA,EAAQ,WAAU,EAAG;AACjD,QAAA,OAAA,CAAQ,iBAAA;AAAA,UACNE,oCAAkB,UAAA,CAAW;AAAA,YAC3B,MAAA;AAAA,YACA,SAAA;AAAA,YACA;AAAA,WACD;AAAA,SACH;AAAA,MACF;AAAA,KACD,CAAA;AAAA,EACH;AACF,CAAC;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-gcp",
3
- "version": "0.0.0-nightly-20260127025640",
3
+ "version": "0.0.0-nightly-20260129030729",
4
4
  "description": "A Backstage catalog backend module that helps integrate towards GCP",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -63,16 +63,16 @@
63
63
  "test": "backstage-cli package test"
64
64
  },
65
65
  "dependencies": {
66
- "@backstage/backend-plugin-api": "0.0.0-nightly-20260127025640",
66
+ "@backstage/backend-plugin-api": "0.0.0-nightly-20260129030729",
67
67
  "@backstage/catalog-model": "1.7.6",
68
68
  "@backstage/config": "1.3.6",
69
- "@backstage/plugin-catalog-node": "0.0.0-nightly-20260127025640",
70
- "@backstage/plugin-kubernetes-common": "0.0.0-nightly-20260127025640",
69
+ "@backstage/plugin-catalog-node": "0.0.0-nightly-20260129030729",
70
+ "@backstage/plugin-kubernetes-common": "0.0.0-nightly-20260129030729",
71
71
  "@google-cloud/container": "^5.0.0"
72
72
  },
73
73
  "devDependencies": {
74
- "@backstage/backend-test-utils": "0.0.0-nightly-20260127025640",
75
- "@backstage/cli": "0.0.0-nightly-20260127025640"
74
+ "@backstage/backend-test-utils": "0.0.0-nightly-20260129030729",
75
+ "@backstage/cli": "0.0.0-nightly-20260129030729"
76
76
  },
77
77
  "configSchema": "config.d.ts"
78
78
  }