@backstage/plugin-scaffolder-backend-module-bitbucket-cloud 0.3.11-next.1 → 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 CHANGED
@@ -1,5 +1,29 @@
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
+
16
+ ## 0.3.11-next.2
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies
21
+ - @backstage/config@1.3.9-next.0
22
+ - @backstage/plugin-scaffolder-node@0.13.7-next.2
23
+ - @backstage/plugin-bitbucket-cloud-common@0.3.13-next.1
24
+ - @backstage/backend-plugin-api@1.10.1-next.1
25
+ - @backstage/integration@2.1.2-next.1
26
+
3
27
  ## 0.3.11-next.1
4
28
 
5
29
  ### 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-next.1",
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-next.0",
54
- "@backstage/config": "1.3.8",
55
- "@backstage/errors": "1.3.1",
56
- "@backstage/integration": "2.1.2-next.0",
57
- "@backstage/plugin-bitbucket-cloud-common": "0.3.13-next.0",
58
- "@backstage/plugin-scaffolder-node": "0.13.7-next.1",
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-next.0",
66
- "@backstage/cli": "0.36.6-next.0",
67
- "@backstage/plugin-scaffolder-node-test-utils": "0.3.15-next.1",
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
  }