@backstage/plugin-scaffolder-backend-module-sentry 0.2.13-next.0 → 0.2.14-next.0

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,24 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-sentry
2
2
 
3
+ ## 0.2.14-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - c8aa210: Updating import for the `scaffolderActionsExtensionPoint` to be the main export
8
+ - Updated dependencies
9
+ - @backstage/plugin-scaffolder-node@0.12.0-next.0
10
+ - @backstage/backend-plugin-api@1.4.3
11
+ - @backstage/config@1.3.3
12
+ - @backstage/errors@1.2.7
13
+
14
+ ## 0.2.13
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @backstage/backend-plugin-api@1.4.3
20
+ - @backstage/plugin-scaffolder-node@0.11.1
21
+
3
22
  ## 0.2.13-next.0
4
23
 
5
24
  ### Patch Changes
@@ -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-scaffolder-node/alpha');
4
+ var pluginScaffolderNode = require('@backstage/plugin-scaffolder-node');
5
5
  var createProject = require('./actions/createProject.cjs.js');
6
6
 
7
7
  const sentryModule = backendPluginApi.createBackendModule({
@@ -10,7 +10,7 @@ const sentryModule = backendPluginApi.createBackendModule({
10
10
  register({ registerInit }) {
11
11
  registerInit({
12
12
  deps: {
13
- scaffolder: alpha.scaffolderActionsExtensionPoint,
13
+ scaffolder: pluginScaffolderNode.scaffolderActionsExtensionPoint,
14
14
  config: backendPluginApi.coreServices.rootConfig,
15
15
  reade: backendPluginApi.coreServices.urlReader
16
16
  },
@@ -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 { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node/alpha';\nimport { createSentryCreateProjectAction } from './actions/createProject';\n\n/**\n * @public\n * The Sentry Module for the Scaffolder Backend\n */\nexport const sentryModule = createBackendModule({\n pluginId: 'scaffolder',\n moduleId: 'sentry',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolder: scaffolderActionsExtensionPoint,\n config: coreServices.rootConfig,\n reade: coreServices.urlReader,\n },\n async init({ scaffolder, config }) {\n scaffolder.addActions(createSentryCreateProjectAction({ config }));\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderActionsExtensionPoint","coreServices","createSentryCreateProjectAction"],"mappings":";;;;;;AA0BO,MAAM,eAAeA,oCAAA,CAAoB;AAAA,EAC9C,QAAA,EAAU,YAAA;AAAA,EACV,QAAA,EAAU,QAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAa,EAAG;AACzB,IAAA,YAAA,CAAa;AAAA,MACX,IAAA,EAAM;AAAA,QACJ,UAAA,EAAYC,qCAAA;AAAA,QACZ,QAAQC,6BAAA,CAAa,UAAA;AAAA,QACrB,OAAOA,6BAAA,CAAa;AAAA,OACtB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,UAAA,EAAY,QAAO,EAAG;AACjC,QAAA,UAAA,CAAW,UAAA,CAAWC,6CAAA,CAAgC,EAAE,MAAA,EAAQ,CAAC,CAAA;AAAA,MACnE;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 { scaffolderActionsExtensionPoint } from '@backstage/plugin-scaffolder-node';\nimport { createSentryCreateProjectAction } from './actions/createProject';\n\n/**\n * @public\n * The Sentry Module for the Scaffolder Backend\n */\nexport const sentryModule = createBackendModule({\n pluginId: 'scaffolder',\n moduleId: 'sentry',\n register({ registerInit }) {\n registerInit({\n deps: {\n scaffolder: scaffolderActionsExtensionPoint,\n config: coreServices.rootConfig,\n reade: coreServices.urlReader,\n },\n async init({ scaffolder, config }) {\n scaffolder.addActions(createSentryCreateProjectAction({ config }));\n },\n });\n },\n});\n"],"names":["createBackendModule","scaffolderActionsExtensionPoint","coreServices","createSentryCreateProjectAction"],"mappings":";;;;;;AA0BO,MAAM,eAAeA,oCAAA,CAAoB;AAAA,EAC9C,QAAA,EAAU,YAAA;AAAA,EACV,QAAA,EAAU,QAAA;AAAA,EACV,QAAA,CAAS,EAAE,YAAA,EAAa,EAAG;AACzB,IAAA,YAAA,CAAa;AAAA,MACX,IAAA,EAAM;AAAA,QACJ,UAAA,EAAYC,oDAAA;AAAA,QACZ,QAAQC,6BAAA,CAAa,UAAA;AAAA,QACrB,OAAOA,6BAAA,CAAa;AAAA,OACtB;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,UAAA,EAAY,QAAO,EAAG;AACjC,QAAA,UAAA,CAAW,UAAA,CAAWC,6CAAA,CAAgC,EAAE,MAAA,EAAQ,CAAC,CAAA;AAAA,MACnE;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-sentry",
3
- "version": "0.2.13-next.0",
3
+ "version": "0.2.14-next.0",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "scaffolder",
@@ -50,17 +50,17 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-plugin-api": "1.4.3-next.0",
53
+ "@backstage/backend-plugin-api": "1.4.3",
54
54
  "@backstage/config": "1.3.3",
55
55
  "@backstage/errors": "1.2.7",
56
- "@backstage/plugin-scaffolder-node": "0.11.1-next.0",
56
+ "@backstage/plugin-scaffolder-node": "0.12.0-next.0",
57
57
  "yaml": "^2.3.3"
58
58
  },
59
59
  "devDependencies": {
60
- "@backstage/backend-test-utils": "1.9.0-next.1",
61
- "@backstage/cli": "0.34.2-next.1",
62
- "@backstage/plugin-scaffolder-node-test-utils": "0.3.3-next.1",
63
- "@backstage/types": "1.2.1",
60
+ "@backstage/backend-test-utils": "1.9.1-next.0",
61
+ "@backstage/cli": "0.34.4-next.0",
62
+ "@backstage/plugin-scaffolder-node-test-utils": "0.3.4-next.0",
63
+ "@backstage/types": "1.2.2",
64
64
  "msw": "^2.0.0"
65
65
  }
66
66
  }