@backstage/plugin-scaffolder-backend-module-gcp 0.2.13 → 0.2.14-next.1

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,5 +1,27 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-gcp
2
2
 
3
+ ## 0.2.14-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/config@1.3.4-next.0
9
+ - @backstage/integration@1.18.1-next.1
10
+ - @backstage/backend-plugin-api@1.4.4-next.0
11
+ - @backstage/plugin-scaffolder-node@0.12.0-next.1
12
+
13
+ ## 0.2.14-next.0
14
+
15
+ ### Patch Changes
16
+
17
+ - baf1cab: Fix documentation strings to mention GCP instead of Azure
18
+ - Updated dependencies
19
+ - @backstage/integration@1.18.1-next.0
20
+ - @backstage/plugin-scaffolder-node@0.12.0-next.0
21
+ - @backstage/backend-plugin-api@1.4.3
22
+ - @backstage/config@1.3.3
23
+ - @backstage/errors@1.2.7
24
+
3
25
  ## 0.2.13
4
26
 
5
27
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
2
2
 
3
3
  /**
4
4
  * @public
5
- * The Azure Module for the Scaffolder Backend
5
+ * The GCP Module for the Scaffolder Backend
6
6
  */
7
7
  declare const gcpBucketModule: _backstage_backend_plugin_api.BackendFeature;
8
8
 
@@ -1 +1 @@
1
- {"version":3,"file":"module.cjs.js","sources":["../src/module.ts"],"sourcesContent":["/*\n * Copyright 2024 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 */\nimport {\n coreServices,\n createBackendModule,\n} from '@backstage/backend-plugin-api';\nimport { scaffolderWorkspaceProviderExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';\nimport { GcpBucketWorkspaceProvider } from './providers/GcpBucketWorkspaceProvider';\n\n/**\n * @public\n * The Azure Module for the Scaffolder Backend\n */\nexport const gcpBucketModule = createBackendModule({\n moduleId: 'gcp',\n pluginId: 'scaffolder',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolderWorkspaceProviders: scaffolderWorkspaceProviderExtensionPoint,\n config: coreServices.rootConfig,\n logger: coreServices.logger,\n },\n async init({ config, logger, scaffolderWorkspaceProviders }) {\n scaffolderWorkspaceProviders.addProviders({\n gcpBucket: GcpBucketWorkspaceProvider.create(logger, config),\n });\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderWorkspaceProviderExtensionPoint","coreServices","GcpBucketWorkspaceProvider"],"mappings":";;;;;;AA0BO,MAAM,kBAAkBA,oCAAA,CAAoB;AAAA,EACjD,QAAA,EAAU,KAAA;AAAA,EACV,QAAA,EAAU,YAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAa,EAAG;AACzB,IAAA,YAAA,CAAa;AAAA,MACX,IAAA,EAAM;AAAA,QACJ,4BAAA,EAA8BC,+CAAA;AAAA,QAC9B,QAAQC,6BAAA,CAAa,UAAA;AAAA,QACrB,QAAQA,6BAAA,CAAa;AAAA,OACvB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,MAAA,EAAQ,MAAA,EAAQ,8BAA6B,EAAG;AAC3D,QAAA,4BAAA,CAA6B,YAAA,CAAa;AAAA,UACxC,SAAA,EAAWC,qDAAA,CAA2B,MAAA,CAAO,MAAA,EAAQ,MAAM;AAAA,SAC5D,CAAA;AAAA,MACH;AAAA,KACD,CAAA;AAAA,EACH;AACF,CAAC;;;;"}
1
+ {"version":3,"file":"module.cjs.js","sources":["../src/module.ts"],"sourcesContent":["/*\n * Copyright 2024 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 */\nimport {\n coreServices,\n createBackendModule,\n} from '@backstage/backend-plugin-api';\nimport { scaffolderWorkspaceProviderExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';\nimport { GcpBucketWorkspaceProvider } from './providers/GcpBucketWorkspaceProvider';\n\n/**\n * @public\n * The GCP Module for the Scaffolder Backend\n */\nexport const gcpBucketModule = createBackendModule({\n moduleId: 'gcp',\n pluginId: 'scaffolder',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolderWorkspaceProviders: scaffolderWorkspaceProviderExtensionPoint,\n config: coreServices.rootConfig,\n logger: coreServices.logger,\n },\n async init({ config, logger, scaffolderWorkspaceProviders }) {\n scaffolderWorkspaceProviders.addProviders({\n gcpBucket: GcpBucketWorkspaceProvider.create(logger, config),\n });\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderWorkspaceProviderExtensionPoint","coreServices","GcpBucketWorkspaceProvider"],"mappings":";;;;;;AA0BO,MAAM,kBAAkBA,oCAAA,CAAoB;AAAA,EACjD,QAAA,EAAU,KAAA;AAAA,EACV,QAAA,EAAU,YAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAa,EAAG;AACzB,IAAA,YAAA,CAAa;AAAA,MACX,IAAA,EAAM;AAAA,QACJ,4BAAA,EAA8BC,+CAAA;AAAA,QAC9B,QAAQC,6BAAA,CAAa,UAAA;AAAA,QACrB,QAAQA,6BAAA,CAAa;AAAA,OACvB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,MAAA,EAAQ,MAAA,EAAQ,8BAA6B,EAAG;AAC3D,QAAA,4BAAA,CAA6B,YAAA,CAAa;AAAA,UACxC,SAAA,EAAWC,qDAAA,CAA2B,MAAA,CAAO,MAAA,EAAQ,MAAM;AAAA,SAC5D,CAAA;AAAA,MACH;AAAA,KACD,CAAA;AAAA,EACH;AACF,CAAC;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-gcp",
3
- "version": "0.2.13",
3
+ "version": "0.2.14-next.1",
4
4
  "description": "The GCP Bucket module for @backstage/plugin-scaffolder-backend",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -51,17 +51,17 @@
51
51
  "test": "backstage-cli package test"
52
52
  },
53
53
  "dependencies": {
54
- "@backstage/backend-plugin-api": "^1.4.3",
55
- "@backstage/config": "^1.3.3",
56
- "@backstage/errors": "^1.2.7",
57
- "@backstage/integration": "^1.18.0",
58
- "@backstage/plugin-scaffolder-node": "^0.11.1",
54
+ "@backstage/backend-plugin-api": "1.4.4-next.0",
55
+ "@backstage/config": "1.3.4-next.0",
56
+ "@backstage/errors": "1.2.7",
57
+ "@backstage/integration": "1.18.1-next.1",
58
+ "@backstage/plugin-scaffolder-node": "0.12.0-next.1",
59
59
  "@google-cloud/storage": "^7.0.0",
60
60
  "raw-body": "^2.4.1"
61
61
  },
62
62
  "devDependencies": {
63
- "@backstage/cli": "^0.34.2",
64
- "@backstage/plugin-scaffolder-node-test-utils": "^0.3.3"
63
+ "@backstage/cli": "0.34.4-next.1",
64
+ "@backstage/plugin-scaffolder-node-test-utils": "0.3.4-next.1"
65
65
  },
66
66
  "configSchema": "config.d.ts"
67
67
  }