@backstage/plugin-scaffolder-backend-module-azure 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-azure
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
+ - c8aa210: Updating import for the `scaffolderActionsExtensionPoint` to be the main export
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
@@ -2,7 +2,7 @@
2
2
 
3
3
  var backendPluginApi = require('@backstage/backend-plugin-api');
4
4
  var integration = require('@backstage/integration');
5
- var alpha = require('@backstage/plugin-scaffolder-node/alpha');
5
+ var pluginScaffolderNode = require('@backstage/plugin-scaffolder-node');
6
6
  var azure = require('./actions/azure.cjs.js');
7
7
 
8
8
  const azureModule = backendPluginApi.createBackendModule({
@@ -11,7 +11,7 @@ const azureModule = backendPluginApi.createBackendModule({
11
11
  register({ registerInit }) {
12
12
  registerInit({
13
13
  deps: {
14
- scaffolderActions: alpha.scaffolderActionsExtensionPoint,
14
+ scaffolderActions: pluginScaffolderNode.scaffolderActionsExtensionPoint,
15
15
  config: backendPluginApi.coreServices.rootConfig
16
16
  },
17
17
  async init({ scaffolderActions, config }) {
@@ -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 createBackendModule,\n coreServices,\n} from '@backstage/backend-plugin-api';\nimport { ScmIntegrations } from '@backstage/integration';\nimport { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';\nimport { createPublishAzureAction } from './actions';\n\n/**\n * @public\n * The Azure Module for the Scaffolder Backend\n */\nexport const azureModule = createBackendModule({\n moduleId: 'azure',\n pluginId: 'scaffolder',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolderActions: scaffolderActionsExtensionPoint,\n config: coreServices.rootConfig,\n },\n async init({ scaffolderActions, config }) {\n const integrations = ScmIntegrations.fromConfig(config);\n scaffolderActions.addActions(\n createPublishAzureAction({\n integrations,\n config,\n }),\n );\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderActionsExtensionPoint","coreServices","ScmIntegrations","createPublishAzureAction"],"mappings":";;;;;;;AA2BO,MAAM,cAAcA,oCAAA,CAAoB;AAAA,EAC7C,QAAA,EAAU,OAAA;AAAA,EACV,QAAA,EAAU,YAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAa,EAAG;AACzB,IAAA,YAAA,CAAa;AAAA,MACX,IAAA,EAAM;AAAA,QACJ,iBAAA,EAAmBC,qCAAA;AAAA,QACnB,QAAQC,6BAAA,CAAa;AAAA,OACvB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,iBAAA,EAAmB,QAAO,EAAG;AACxC,QAAA,MAAM,YAAA,GAAeC,2BAAA,CAAgB,UAAA,CAAW,MAAM,CAAA;AACtD,QAAA,iBAAA,CAAkB,UAAA;AAAA,UAChBC,8BAAA,CAAyB;AAAA,YACvB,YAAA;AAAA,YACA;AAAA,WACD;AAAA,SACH;AAAA,MACF;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 createBackendModule,\n coreServices,\n} from '@backstage/backend-plugin-api';\nimport { ScmIntegrations } from '@backstage/integration';\nimport { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node';\nimport { createPublishAzureAction } from './actions';\n\n/**\n * @public\n * The Azure Module for the Scaffolder Backend\n */\nexport const azureModule = createBackendModule({\n moduleId: 'azure',\n pluginId: 'scaffolder',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolderActions: scaffolderActionsExtensionPoint,\n config: coreServices.rootConfig,\n },\n async init({ scaffolderActions, config }) {\n const integrations = ScmIntegrations.fromConfig(config);\n scaffolderActions.addActions(\n createPublishAzureAction({\n integrations,\n config,\n }),\n );\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderActionsExtensionPoint","coreServices","ScmIntegrations","createPublishAzureAction"],"mappings":";;;;;;;AA2BO,MAAM,cAAcA,oCAAA,CAAoB;AAAA,EAC7C,QAAA,EAAU,OAAA;AAAA,EACV,QAAA,EAAU,YAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAa,EAAG;AACzB,IAAA,YAAA,CAAa;AAAA,MACX,IAAA,EAAM;AAAA,QACJ,iBAAA,EAAmBC,oDAAA;AAAA,QACnB,QAAQC,6BAAA,CAAa;AAAA,OACvB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,iBAAA,EAAmB,QAAO,EAAG;AACxC,QAAA,MAAM,YAAA,GAAeC,2BAAA,CAAgB,UAAA,CAAW,MAAM,CAAA;AACtD,QAAA,iBAAA,CAAkB,UAAA;AAAA,UAChBC,8BAAA,CAAyB;AAAA,YACvB,YAAA;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-scaffolder-backend-module-azure",
3
- "version": "0.2.13",
3
+ "version": "0.2.14-next.1",
4
4
  "description": "The azure module for @backstage/plugin-scaffolder-backend",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -50,16 +50,16 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-plugin-api": "^1.4.3",
54
- "@backstage/config": "^1.3.3",
55
- "@backstage/errors": "^1.2.7",
56
- "@backstage/integration": "^1.18.0",
57
- "@backstage/plugin-scaffolder-node": "^0.11.1",
53
+ "@backstage/backend-plugin-api": "1.4.4-next.0",
54
+ "@backstage/config": "1.3.4-next.0",
55
+ "@backstage/errors": "1.2.7",
56
+ "@backstage/integration": "1.18.1-next.1",
57
+ "@backstage/plugin-scaffolder-node": "0.12.0-next.1",
58
58
  "azure-devops-node-api": "^14.0.0",
59
59
  "yaml": "^2.0.0"
60
60
  },
61
61
  "devDependencies": {
62
- "@backstage/cli": "^0.34.2",
63
- "@backstage/plugin-scaffolder-node-test-utils": "^0.3.3"
62
+ "@backstage/cli": "0.34.4-next.1",
63
+ "@backstage/plugin-scaffolder-node-test-utils": "0.3.4-next.1"
64
64
  }
65
65
  }