@backstage/plugin-events-backend-module-google-pubsub 0.1.0-next.2 → 0.1.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 +15 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @backstage/plugin-events-backend-module-google-pubsub
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- af853ef: Added a module that is able to transfer messages from Google Pub/Sub subscriptions into the Backstage events system.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/backend-plugin-api@1.3.1
|
|
13
|
+
- @backstage/config@1.3.2
|
|
14
|
+
- @backstage/errors@1.2.7
|
|
15
|
+
- @backstage/types@1.2.1
|
|
16
|
+
- @backstage/plugin-events-node@0.4.11
|
|
17
|
+
|
|
3
18
|
## 0.1.0-next.2
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-events-backend-module-google-pubsub",
|
|
3
|
-
"version": "0.1.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"description": "The google-pubsub backend module for the events plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,19 +37,19 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-plugin-api": "1.3.1
|
|
41
|
-
"@backstage/config": "1.3.2",
|
|
42
|
-
"@backstage/errors": "1.2.7",
|
|
43
|
-
"@backstage/plugin-events-node": "0.4.11
|
|
44
|
-
"@backstage/types": "1.2.1",
|
|
40
|
+
"@backstage/backend-plugin-api": "^1.3.1",
|
|
41
|
+
"@backstage/config": "^1.3.2",
|
|
42
|
+
"@backstage/errors": "^1.2.7",
|
|
43
|
+
"@backstage/plugin-events-node": "^0.4.11",
|
|
44
|
+
"@backstage/types": "^1.2.1",
|
|
45
45
|
"@google-cloud/pubsub": "^4.10.0",
|
|
46
46
|
"@opentelemetry/api": "^1.9.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/backend-defaults": "0.10.0
|
|
50
|
-
"@backstage/backend-test-utils": "1.5.0
|
|
51
|
-
"@backstage/cli": "0.32.1
|
|
52
|
-
"@backstage/plugin-events-backend": "0.5.2
|
|
49
|
+
"@backstage/backend-defaults": "^0.10.0",
|
|
50
|
+
"@backstage/backend-test-utils": "^1.5.0",
|
|
51
|
+
"@backstage/cli": "^0.32.1",
|
|
52
|
+
"@backstage/plugin-events-backend": "^0.5.2",
|
|
53
53
|
"wait-for-expect": "^3.0.2"
|
|
54
54
|
},
|
|
55
55
|
"configSchema": "config.d.ts",
|