@backstage/plugin-catalog-backend-module-bitbucket-cloud 0.5.10-next.2 → 0.5.10
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 +16 -0
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-bitbucket-cloud
|
|
2
2
|
|
|
3
|
+
## 0.5.10
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f215863: Added Bitbucket Cloud SCM event translation layer for the catalog backend module. The module now subscribes to Bitbucket Cloud webhook events and translates them into generic catalog SCM events, enabling instant catalog reprocessing when repositories are pushed to, renamed, transferred, or deleted. The `analyzeBitbucketCloudWebhookEvent` function is exported from the alpha entry point for custom integrations.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-plugin-api@1.9.0
|
|
10
|
+
- @backstage/errors@1.3.0
|
|
11
|
+
- @backstage/catalog-model@1.8.0
|
|
12
|
+
- @backstage/plugin-catalog-node@2.2.0
|
|
13
|
+
- @backstage/integration@2.0.1
|
|
14
|
+
- @backstage/config@1.3.7
|
|
15
|
+
- @backstage/plugin-bitbucket-cloud-common@0.3.9
|
|
16
|
+
- @backstage/plugin-catalog-common@1.1.9
|
|
17
|
+
- @backstage/plugin-events-node@0.4.21
|
|
18
|
+
|
|
3
19
|
## 0.5.10-next.2
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-bitbucket-cloud",
|
|
3
|
-
"version": "0.5.10
|
|
3
|
+
"version": "0.5.10",
|
|
4
4
|
"description": "A Backstage catalog backend module that helps integrate towards Bitbucket Cloud",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -65,21 +65,21 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage/backend-plugin-api": "1.9.0
|
|
69
|
-
"@backstage/catalog-model": "1.
|
|
70
|
-
"@backstage/config": "1.3.7
|
|
71
|
-
"@backstage/errors": "1.3.0
|
|
72
|
-
"@backstage/integration": "2.0.1
|
|
73
|
-
"@backstage/plugin-bitbucket-cloud-common": "0.3.9
|
|
74
|
-
"@backstage/plugin-catalog-common": "1.1.9
|
|
75
|
-
"@backstage/plugin-catalog-node": "2.2.0
|
|
76
|
-
"@backstage/plugin-events-node": "0.4.21
|
|
68
|
+
"@backstage/backend-plugin-api": "^1.9.0",
|
|
69
|
+
"@backstage/catalog-model": "^1.8.0",
|
|
70
|
+
"@backstage/config": "^1.3.7",
|
|
71
|
+
"@backstage/errors": "^1.3.0",
|
|
72
|
+
"@backstage/integration": "^2.0.1",
|
|
73
|
+
"@backstage/plugin-bitbucket-cloud-common": "^0.3.9",
|
|
74
|
+
"@backstage/plugin-catalog-common": "^1.1.9",
|
|
75
|
+
"@backstage/plugin-catalog-node": "^2.2.0",
|
|
76
|
+
"@backstage/plugin-events-node": "^0.4.21",
|
|
77
77
|
"uuid": "^11.0.0"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@backstage/backend-test-utils": "1.11.2
|
|
81
|
-
"@backstage/cli": "0.36.1
|
|
82
|
-
"@backstage/plugin-events-backend-test-utils": "0.1.54
|
|
80
|
+
"@backstage/backend-test-utils": "^1.11.2",
|
|
81
|
+
"@backstage/cli": "^0.36.1",
|
|
82
|
+
"@backstage/plugin-events-backend-test-utils": "^0.1.54",
|
|
83
83
|
"msw": "^1.0.0"
|
|
84
84
|
},
|
|
85
85
|
"configSchema": "config.d.ts"
|