@backstage/plugin-events-backend-module-gerrit 0.2.12-next.1 → 0.2.12

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,14 @@
1
1
  # @backstage/plugin-events-backend-module-gerrit
2
2
 
3
+ ## 0.2.12
4
+
5
+ ### Patch Changes
6
+
7
+ - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import.
8
+ - Updated dependencies
9
+ - @backstage/plugin-events-node@0.4.1
10
+ - @backstage/backend-plugin-api@1.0.1
11
+
3
12
  ## 0.2.12-next.1
4
13
 
5
14
  ### Patch Changes
package/README.md CHANGED
@@ -28,7 +28,7 @@ yarn --cwd packages/backend add @backstage/plugin-events-backend-module-gerrit
28
28
 
29
29
  ```ts
30
30
  // packages/backend/src/index.ts
31
- backend.add(import('@backstage/plugin-events-backend-module-gerrit/alpha'));
31
+ backend.add(import('@backstage/plugin-events-backend-module-gerrit'));
32
32
  ```
33
33
 
34
34
  ### Legacy Backend System
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-gerrit__alpha",
3
- "version": "0.2.12-next.1",
3
+ "version": "0.2.12",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/dist/alpha.cjs.js CHANGED
@@ -2,10 +2,11 @@
2
2
 
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
- var eventsModuleGerritEventRouter = require('./service/eventsModuleGerritEventRouter.cjs.js');
5
+ var eventsModuleGerritEventRouter$1 = require('./service/eventsModuleGerritEventRouter.cjs.js');
6
6
 
7
+ const _feature = eventsModuleGerritEventRouter$1.eventsModuleGerritEventRouter;
8
+ const eventsModuleGerritEventRouter = _feature;
7
9
 
8
-
9
- exports.default = eventsModuleGerritEventRouter.eventsModuleGerritEventRouter;
10
- exports.eventsModuleGerritEventRouter = eventsModuleGerritEventRouter.eventsModuleGerritEventRouter;
10
+ exports.default = _feature;
11
+ exports.eventsModuleGerritEventRouter = eventsModuleGerritEventRouter;
11
12
  //# sourceMappingURL=alpha.cjs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"alpha.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;"}
1
+ {"version":3,"file":"alpha.cjs.js","sources":["../src/alpha.ts"],"sourcesContent":["/*\n * Copyright 2023 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 { eventsModuleGerritEventRouter as feature } from './service/eventsModuleGerritEventRouter';\n\n/** @alpha */\nconst _feature = feature;\nexport default _feature;\n/** @alpha */\nexport const eventsModuleGerritEventRouter = _feature;\n"],"names":["feature"],"mappings":";;;;;;AAmBA,MAAM,QAAW,GAAAA,8DAAA;AAGV,MAAM,6BAAgC,GAAA;;;;;"}
package/dist/alpha.d.ts CHANGED
@@ -1,12 +1,9 @@
1
1
  import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
2
2
 
3
- /**
4
- * Module for the events-backend plugin, adding an event router for Gerrit.
5
- *
6
- * Registers the `GerritEventRouter`.
7
- *
8
- * @alpha
9
- */
3
+ /** @alpha */
4
+ declare const _feature: _backstage_backend_plugin_api.BackendFeature;
5
+
6
+ /** @alpha */
10
7
  declare const eventsModuleGerritEventRouter: _backstage_backend_plugin_api.BackendFeature;
11
8
 
12
- export { eventsModuleGerritEventRouter as default, eventsModuleGerritEventRouter };
9
+ export { _feature as default, eventsModuleGerritEventRouter };
package/dist/index.cjs.js CHANGED
@@ -1,8 +1,12 @@
1
1
  'use strict';
2
2
 
3
+ Object.defineProperty(exports, '__esModule', { value: true });
4
+
5
+ var eventsModuleGerritEventRouter = require('./service/eventsModuleGerritEventRouter.cjs.js');
3
6
  var GerritEventRouter = require('./router/GerritEventRouter.cjs.js');
4
7
 
5
8
 
6
9
 
10
+ exports.default = eventsModuleGerritEventRouter.eventsModuleGerritEventRouter;
7
11
  exports.GerritEventRouter = GerritEventRouter.GerritEventRouter;
8
12
  //# sourceMappingURL=index.cjs.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;"}
1
+ {"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;"}
package/dist/index.d.ts CHANGED
@@ -1,5 +1,15 @@
1
+ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
1
2
  import { SubTopicEventRouter, EventsService, EventParams } from '@backstage/plugin-events-node';
2
3
 
4
+ /**
5
+ * Module for the events-backend plugin, adding an event router for Gerrit.
6
+ *
7
+ * Registers the `GerritEventRouter`.
8
+ *
9
+ * @public
10
+ */
11
+ declare const eventsModuleGerritEventRouter: _backstage_backend_plugin_api.BackendFeature;
12
+
3
13
  /**
4
14
  * Subscribes to the generic `gerrit` topic
5
15
  * and publishes the events under the more concrete sub-topic
@@ -15,4 +25,4 @@ declare class GerritEventRouter extends SubTopicEventRouter {
15
25
  protected determineSubTopic(params: EventParams): string | undefined;
16
26
  }
17
27
 
18
- export { GerritEventRouter };
28
+ export { GerritEventRouter, eventsModuleGerritEventRouter as default };
@@ -1 +1 @@
1
- {"version":3,"file":"eventsModuleGerritEventRouter.cjs.js","sources":["../../src/service/eventsModuleGerritEventRouter.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 { createBackendModule } from '@backstage/backend-plugin-api';\nimport { eventsServiceRef } from '@backstage/plugin-events-node';\nimport { GerritEventRouter } from '../router/GerritEventRouter';\n\n/**\n * Module for the events-backend plugin, adding an event router for Gerrit.\n *\n * Registers the `GerritEventRouter`.\n *\n * @alpha\n */\nexport const eventsModuleGerritEventRouter = createBackendModule({\n pluginId: 'events',\n moduleId: 'gerrit-event-router',\n register(env) {\n env.registerInit({\n deps: {\n events: eventsServiceRef,\n },\n async init({ events }) {\n const eventRouter = new GerritEventRouter({ events });\n await eventRouter.subscribe();\n },\n });\n },\n});\n"],"names":["createBackendModule","eventsServiceRef","GerritEventRouter"],"mappings":";;;;;;AA2BO,MAAM,gCAAgCA,oCAAoB,CAAA;AAAA,EAC/D,QAAU,EAAA,QAAA;AAAA,EACV,QAAU,EAAA,qBAAA;AAAA,EACV,SAAS,GAAK,EAAA;AACZ,IAAA,GAAA,CAAI,YAAa,CAAA;AAAA,MACf,IAAM,EAAA;AAAA,QACJ,MAAQ,EAAAC,iCAAA;AAAA,OACV;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,MAAA,EAAU,EAAA;AACrB,QAAA,MAAM,WAAc,GAAA,IAAIC,mCAAkB,CAAA,EAAE,QAAQ,CAAA,CAAA;AACpD,QAAA,MAAM,YAAY,SAAU,EAAA,CAAA;AAAA,OAC9B;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACF,CAAC;;;;"}
1
+ {"version":3,"file":"eventsModuleGerritEventRouter.cjs.js","sources":["../../src/service/eventsModuleGerritEventRouter.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 { createBackendModule } from '@backstage/backend-plugin-api';\nimport { eventsServiceRef } from '@backstage/plugin-events-node';\nimport { GerritEventRouter } from '../router/GerritEventRouter';\n\n/**\n * Module for the events-backend plugin, adding an event router for Gerrit.\n *\n * Registers the `GerritEventRouter`.\n *\n * @public\n */\nexport const eventsModuleGerritEventRouter = createBackendModule({\n pluginId: 'events',\n moduleId: 'gerrit-event-router',\n register(env) {\n env.registerInit({\n deps: {\n events: eventsServiceRef,\n },\n async init({ events }) {\n const eventRouter = new GerritEventRouter({ events });\n await eventRouter.subscribe();\n },\n });\n },\n});\n"],"names":["createBackendModule","eventsServiceRef","GerritEventRouter"],"mappings":";;;;;;AA2BO,MAAM,gCAAgCA,oCAAoB,CAAA;AAAA,EAC/D,QAAU,EAAA,QAAA;AAAA,EACV,QAAU,EAAA,qBAAA;AAAA,EACV,SAAS,GAAK,EAAA;AACZ,IAAA,GAAA,CAAI,YAAa,CAAA;AAAA,MACf,IAAM,EAAA;AAAA,QACJ,MAAQ,EAAAC,iCAAA;AAAA,OACV;AAAA,MACA,MAAM,IAAA,CAAK,EAAE,MAAA,EAAU,EAAA;AACrB,QAAA,MAAM,WAAc,GAAA,IAAIC,mCAAkB,CAAA,EAAE,QAAQ,CAAA,CAAA;AACpD,QAAA,MAAM,YAAY,SAAU,EAAA,CAAA;AAAA,OAC9B;AAAA,KACD,CAAA,CAAA;AAAA,GACH;AACF,CAAC;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-gerrit",
3
- "version": "0.2.12-next.1",
3
+ "version": "0.2.12",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "events",
@@ -18,6 +18,7 @@
18
18
  "license": "Apache-2.0",
19
19
  "exports": {
20
20
  ".": {
21
+ "backstage": "@backstage/BackendFeature",
21
22
  "require": "./dist/index.cjs.js",
22
23
  "types": "./dist/index.d.ts",
23
24
  "default": "./dist/index.cjs.js"
@@ -46,12 +47,12 @@
46
47
  "test": "backstage-cli package test"
47
48
  },
48
49
  "dependencies": {
49
- "@backstage/backend-plugin-api": "1.0.1-next.1",
50
- "@backstage/plugin-events-node": "0.4.1-next.1"
50
+ "@backstage/backend-plugin-api": "^1.0.1",
51
+ "@backstage/plugin-events-node": "^0.4.1"
51
52
  },
52
53
  "devDependencies": {
53
- "@backstage/backend-test-utils": "1.0.1-next.2",
54
- "@backstage/cli": "0.28.0-next.2",
55
- "@backstage/plugin-events-backend-test-utils": "0.1.36-next.1"
54
+ "@backstage/backend-test-utils": "^1.0.1",
55
+ "@backstage/cli": "^0.28.0",
56
+ "@backstage/plugin-events-backend-test-utils": "^0.1.36"
56
57
  }
57
58
  }