@backstage/plugin-events-backend-module-azure 0.1.6-next.2 → 0.1.6

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,13 @@
1
1
  # @backstage/plugin-events-backend-module-azure
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@0.5.1
9
+ - @backstage/plugin-events-node@0.2.5
10
+
3
11
  ## 0.1.6-next.2
4
12
 
5
13
  ### Patch Changes
package/README.md CHANGED
@@ -34,10 +34,10 @@ yarn add --cwd packages/backend @backstage/plugin-events-backend-module-azure
34
34
  Add the event router to the `EventsBackend`:
35
35
 
36
36
  ```diff
37
- +const githubEventRouter = new AzureDevOpsEventRouter();
37
+ +const azureEventRouter = new AzureDevOpsEventRouter();
38
38
 
39
39
  EventsBackend
40
- + .addPublishers(githubEventRouter)
41
- + .addSubscribers(githubEventRouter);
40
+ + .addPublishers(azureEventRouter)
41
+ + .addSubscribers(azureEventRouter);
42
42
  // [...]
43
43
  ```
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-events-backend-module-azure",
3
- "version": "0.1.6-next.2",
3
+ "version": "0.1.6",
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-azure",
3
- "version": "0.1.6-next.2",
3
+ "version": "0.1.6",
4
4
  "main": "./dist/index.cjs.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -33,14 +33,14 @@
33
33
  "postpack": "backstage-cli package postpack"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-plugin-api": "^0.5.1-next.2",
37
- "@backstage/plugin-events-node": "^0.2.5-next.2",
36
+ "@backstage/backend-plugin-api": "^0.5.1",
37
+ "@backstage/plugin-events-node": "^0.2.5",
38
38
  "winston": "^3.2.1"
39
39
  },
40
40
  "devDependencies": {
41
- "@backstage/backend-test-utils": "^0.1.36-next.2",
42
- "@backstage/cli": "^0.22.6-next.2",
43
- "@backstage/plugin-events-backend-test-utils": "^0.1.6-next.2",
41
+ "@backstage/backend-test-utils": "^0.1.36",
42
+ "@backstage/cli": "^0.22.6",
43
+ "@backstage/plugin-events-backend-test-utils": "^0.1.6",
44
44
  "supertest": "^6.1.3"
45
45
  },
46
46
  "files": [