@backstage/plugin-scaffolder-backend-module-bitbucket-cloud 0.3.11-next.2 → 0.3.11
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 +13 -0
- package/dist/index.d.ts +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend-module-bitbucket-cloud
|
|
2
2
|
|
|
3
|
+
## 0.3.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 40c64a0: Fixed a security issue in pull request workspace handling.
|
|
8
|
+
- bbba6b5: Added support for requiring user-provided credentials for Bitbucket Cloud mutation actions when `scaffolder.requireScmUserCredentials` is enabled.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/integration@2.1.2
|
|
11
|
+
- @backstage/config@1.3.9
|
|
12
|
+
- @backstage/plugin-scaffolder-node@0.13.7
|
|
13
|
+
- @backstage/plugin-bitbucket-cloud-common@0.3.13
|
|
14
|
+
- @backstage/backend-plugin-api@1.10.1
|
|
15
|
+
|
|
3
16
|
## 0.3.11-next.2
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -53,8 +53,8 @@ declare const createBitbucketPipelinesRunAction: (options: {
|
|
|
53
53
|
type: string;
|
|
54
54
|
hash: string;
|
|
55
55
|
} | undefined;
|
|
56
|
-
destination?: string | undefined;
|
|
57
56
|
ref_name?: string | undefined;
|
|
57
|
+
destination?: string | undefined;
|
|
58
58
|
ref_type?: string | undefined;
|
|
59
59
|
destination_commit?: {
|
|
60
60
|
hash: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud",
|
|
3
|
-
"version": "0.3.11
|
|
3
|
+
"version": "0.3.11",
|
|
4
4
|
"description": "The Bitbucket Cloud module for @backstage/plugin-scaffolder-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -50,21 +50,21 @@
|
|
|
50
50
|
"test": "backstage-cli package test"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@backstage/backend-plugin-api": "1.10.1
|
|
54
|
-
"@backstage/config": "1.3.9
|
|
55
|
-
"@backstage/errors": "1.3.1",
|
|
56
|
-
"@backstage/integration": "2.1.2
|
|
57
|
-
"@backstage/plugin-bitbucket-cloud-common": "0.3.13
|
|
58
|
-
"@backstage/plugin-scaffolder-node": "0.13.7
|
|
53
|
+
"@backstage/backend-plugin-api": "^1.10.1",
|
|
54
|
+
"@backstage/config": "^1.3.9",
|
|
55
|
+
"@backstage/errors": "^1.3.1",
|
|
56
|
+
"@backstage/integration": "^2.1.2",
|
|
57
|
+
"@backstage/plugin-bitbucket-cloud-common": "^0.3.13",
|
|
58
|
+
"@backstage/plugin-scaffolder-node": "^0.13.7",
|
|
59
59
|
"bitbucket": "^2.12.0",
|
|
60
60
|
"fs-extra": "^11.2.0",
|
|
61
61
|
"yaml": "^2.0.0",
|
|
62
62
|
"zod": "^3.25.76 || ^4.0.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@backstage/backend-test-utils": "1.11.7
|
|
66
|
-
"@backstage/cli": "0.36.6
|
|
67
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.3.15
|
|
65
|
+
"@backstage/backend-test-utils": "^1.11.7",
|
|
66
|
+
"@backstage/cli": "^0.36.6",
|
|
67
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.3.15",
|
|
68
68
|
"msw": "^2.0.0"
|
|
69
69
|
}
|
|
70
70
|
}
|