@backstage/plugin-events-backend-module-gitlab 0.2.11 → 0.2.12-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,15 @@
1
1
  # @backstage/plugin-events-backend-module-gitlab
2
2
 
3
+ ## 0.2.12-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 2f88f88: Updated backend installation instructions.
8
+ - Updated dependencies
9
+ - @backstage/plugin-events-node@0.4.1-next.0
10
+ - @backstage/backend-plugin-api@1.0.1-next.0
11
+ - @backstage/config@1.2.0
12
+
3
13
  ## 0.2.11
4
14
 
5
15
  ### Patch Changes
package/README.md CHANGED
@@ -32,7 +32,7 @@ yarn --cwd packages/backend add @backstage/plugin-events-backend-module-gitlab
32
32
  // packages/backend/src/index.ts
33
33
  import { eventsModuleGitlabEventRouter } from '@backstage/plugin-events-backend-module-gitlab/alpha';
34
34
  // ...
35
- backend.add(eventsModuleGitlabEventRouter());
35
+ backend.add(eventsModuleGitlabEventRouter);
36
36
  ```
37
37
 
38
38
  #### Legacy Backend System
@@ -49,7 +49,7 @@ await eventRouter.subscribe();
49
49
  // packages/backend/src/index.ts
50
50
  import { eventsModuleGitlabWebhook } from '@backstage/plugin-events-backend-module-gitlab/alpha';
51
51
  // ...
52
- backend.add(eventsModuleGitlabWebhook());
52
+ backend.add(eventsModuleGitlabWebhook);
53
53
  ```
54
54
 
55
55
  #### Legacy Backend System
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-gitlab__alpha",
3
- "version": "0.2.11",
3
+ "version": "0.2.12-next.0",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-gitlab",
3
- "version": "0.2.11",
3
+ "version": "0.2.12-next.0",
4
4
  "backstage": {
5
5
  "role": "backend-plugin-module",
6
6
  "pluginId": "events",
@@ -46,14 +46,14 @@
46
46
  "test": "backstage-cli package test"
47
47
  },
48
48
  "dependencies": {
49
- "@backstage/backend-plugin-api": "^1.0.0",
49
+ "@backstage/backend-plugin-api": "^1.0.1-next.0",
50
50
  "@backstage/config": "^1.2.0",
51
- "@backstage/plugin-events-node": "^0.4.0"
51
+ "@backstage/plugin-events-node": "^0.4.1-next.0"
52
52
  },
53
53
  "devDependencies": {
54
- "@backstage/backend-test-utils": "^1.0.0",
55
- "@backstage/cli": "^0.27.1",
56
- "@backstage/plugin-events-backend-test-utils": "^0.1.35"
54
+ "@backstage/backend-test-utils": "^1.0.1-next.0",
55
+ "@backstage/cli": "^0.28.0-next.0",
56
+ "@backstage/plugin-events-backend-test-utils": "^0.1.36-next.0"
57
57
  },
58
58
  "configSchema": "config.d.ts"
59
59
  }