@backstage/plugin-scaffolder-backend-module-bitbucket 0.2.0-next.3 → 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.
- package/CHANGELOG.md +35 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
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
|
+
|
|
3
38
|
## 0.2.0-next.3
|
|
4
39
|
|
|
5
40
|
### Patch 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
|
|
4
|
+
"version": "0.2.0",
|
|
5
5
|
"deprecated": true,
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
"postpack": "backstage-cli package postpack"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@backstage/backend-common": "^0.21.0
|
|
39
|
-
"@backstage/backend-plugin-api": "^0.6.10
|
|
38
|
+
"@backstage/backend-common": "^0.21.0",
|
|
39
|
+
"@backstage/backend-plugin-api": "^0.6.10",
|
|
40
40
|
"@backstage/config": "^1.1.1",
|
|
41
41
|
"@backstage/errors": "^1.2.3",
|
|
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": "
|
|
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",
|
|
47
47
|
"node-fetch": "^2.6.7",
|
|
48
48
|
"yaml": "^2.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/backend-test-utils": "^0.3.0
|
|
52
|
-
"@backstage/cli": "^0.25.2
|
|
51
|
+
"@backstage/backend-test-utils": "^0.3.0",
|
|
52
|
+
"@backstage/cli": "^0.25.2",
|
|
53
53
|
"msw": "^1.0.0"
|
|
54
54
|
},
|
|
55
55
|
"files": [
|