@backstage/plugin-scaffolder-backend-module-bitbucket 0.2.0-next.2 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/package.json +15 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,55 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-bitbucket
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5eb6882: Split `@backstage/plugin-scaffolder-backend-module-bitbucket` into
8
+ `@backstage/plugin-scaffolder-backend-module-bitbucket-cloud` and
9
+ `@backstage/plugin-scaffolder-backend-module-bitbucket-server`.
10
+
11
+ `@backstage/plugin-scaffolder-backend-module-bitbucket` was **deprecated** in favor of these two replacements.
12
+
13
+ Please use any of the two replacements depending on your needs.
14
+
15
+ ```diff
16
+ - backend.add(import('@backstage/plugin-scaffolder-backend-module-bitbucket'));
17
+ + backend.add(import('@backstage/plugin-scaffolder-backend-module-bitbucket-cloud'));
18
+ + backend.add(import('@backstage/plugin-scaffolder-backend-module-bitbucket-server'));
19
+ ```
20
+
21
+ ### Patch Changes
22
+
23
+ - e9a5228: Exporting a default module for the new Backend System
24
+ - 8472188: Added or fixed the `repository` field in `package.json`.
25
+ - 6bb6f3e: Updated dependency `fs-extra` to `^11.2.0`.
26
+ Updated dependency `@types/fs-extra` to `^11.0.0`.
27
+ - fc98bb6: Enhanced the pull request action to allow for adding new content to the PR as described in this issue #21762
28
+ - Updated dependencies
29
+ - @backstage/backend-common@0.21.0
30
+ - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.0
31
+ - @backstage/backend-plugin-api@0.6.10
32
+ - @backstage/integration@1.9.0
33
+ - @backstage/plugin-scaffolder-node@0.3.0
34
+ - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.0
35
+ - @backstage/config@1.1.1
36
+ - @backstage/errors@1.2.3
37
+
38
+ ## 0.2.0-next.3
39
+
40
+ ### Patch Changes
41
+
42
+ - 8472188: Added or fixed the `repository` field in `package.json`.
43
+ - Updated dependencies
44
+ - @backstage/backend-common@0.21.0-next.3
45
+ - @backstage/integration@1.9.0-next.1
46
+ - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.1.0-next.1
47
+ - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.1.0-next.1
48
+ - @backstage/plugin-scaffolder-node@0.3.0-next.3
49
+ - @backstage/backend-plugin-api@0.6.10-next.3
50
+ - @backstage/config@1.1.1
51
+ - @backstage/errors@1.2.3
52
+
3
53
  ## 0.2.0-next.2
4
54
 
5
55
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-bitbucket",
3
3
  "description": "The bitbucket module for @backstage/plugin-scaffolder-backend",
4
- "version": "0.2.0-next.2",
4
+ "version": "0.2.0",
5
5
  "deprecated": true,
6
6
  "main": "./dist/index.cjs.js",
7
7
  "types": "./dist/index.d.ts",
@@ -9,6 +9,11 @@
9
9
  "publishConfig": {
10
10
  "access": "public"
11
11
  },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/backstage/backstage",
15
+ "directory": "plugins/scaffolder-backend-module-bitbucket"
16
+ },
12
17
  "backstage": {
13
18
  "role": "backend-plugin-module"
14
19
  },
@@ -30,21 +35,21 @@
30
35
  "postpack": "backstage-cli package postpack"
31
36
  },
32
37
  "dependencies": {
33
- "@backstage/backend-common": "^0.21.0-next.2",
34
- "@backstage/backend-plugin-api": "^0.6.10-next.2",
38
+ "@backstage/backend-common": "^0.21.0",
39
+ "@backstage/backend-plugin-api": "^0.6.10",
35
40
  "@backstage/config": "^1.1.1",
36
41
  "@backstage/errors": "^1.2.3",
37
- "@backstage/integration": "^1.9.0-next.0",
38
- "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "^0.1.0-next.0",
39
- "@backstage/plugin-scaffolder-backend-module-bitbucket-server": "^0.1.0-next.0",
40
- "@backstage/plugin-scaffolder-node": "^0.3.0-next.2",
41
- "fs-extra": "10.1.0",
42
+ "@backstage/integration": "^1.9.0",
43
+ "@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "^0.1.0",
44
+ "@backstage/plugin-scaffolder-backend-module-bitbucket-server": "^0.1.0",
45
+ "@backstage/plugin-scaffolder-node": "^0.3.0",
46
+ "fs-extra": "^11.2.0",
42
47
  "node-fetch": "^2.6.7",
43
48
  "yaml": "^2.0.0"
44
49
  },
45
50
  "devDependencies": {
46
- "@backstage/backend-test-utils": "^0.3.0-next.2",
47
- "@backstage/cli": "^0.25.2-next.2",
51
+ "@backstage/backend-test-utils": "^0.3.0",
52
+ "@backstage/cli": "^0.25.2",
48
53
  "msw": "^1.0.0"
49
54
  },
50
55
  "files": [