@backstage/plugin-catalog-backend-module-bitbucket-server 0.1.33-next.2 → 0.1.33
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 +31 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.d.ts +1 -1
- package/package.json +32 -30
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-bitbucket-server
|
|
2
2
|
|
|
3
|
+
## 0.1.33
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
8
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-common@0.23.0
|
|
11
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
12
|
+
- @backstage/backend-tasks@0.5.24
|
|
13
|
+
- @backstage/integration@1.12.0
|
|
14
|
+
- @backstage/plugin-catalog-node@1.12.1
|
|
15
|
+
- @backstage/catalog-model@1.5.0
|
|
16
|
+
- @backstage/config@1.2.0
|
|
17
|
+
- @backstage/errors@1.2.4
|
|
18
|
+
|
|
19
|
+
## 0.1.33-next.3
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/backend-plugin-api@0.6.19-next.3
|
|
26
|
+
- @backstage/integration@1.12.0-next.1
|
|
27
|
+
- @backstage/plugin-catalog-node@1.12.1-next.2
|
|
28
|
+
- @backstage/backend-tasks@0.5.24-next.3
|
|
29
|
+
- @backstage/backend-common@0.23.0-next.3
|
|
30
|
+
- @backstage/catalog-model@1.5.0
|
|
31
|
+
- @backstage/config@1.2.0
|
|
32
|
+
- @backstage/errors@1.2.4
|
|
33
|
+
|
|
3
34
|
## 0.1.33-next.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/alpha.d.ts
CHANGED
|
@@ -3,6 +3,6 @@ import * as _backstage_backend_plugin_api from '@backstage/backend-plugin-api';
|
|
|
3
3
|
/**
|
|
4
4
|
* @alpha
|
|
5
5
|
*/
|
|
6
|
-
declare const catalogModuleBitbucketServerEntityProvider:
|
|
6
|
+
declare const catalogModuleBitbucketServerEntityProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
7
7
|
|
|
8
8
|
export { catalogModuleBitbucketServerEntityProvider as default };
|
package/package.json
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-bitbucket-server",
|
|
3
|
-
"version": "0.1.33
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
"version": "0.1.33",
|
|
4
|
+
"backstage": {
|
|
5
|
+
"role": "backend-plugin-module",
|
|
6
|
+
"pluginId": "catalog",
|
|
7
|
+
"pluginPackage": "@backstage/plugin-catalog-backend"
|
|
8
|
+
},
|
|
7
9
|
"publishConfig": {
|
|
8
10
|
"access": "public"
|
|
9
11
|
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"backstage"
|
|
14
|
+
],
|
|
15
|
+
"homepage": "https://backstage.io",
|
|
16
|
+
"repository": {
|
|
17
|
+
"type": "git",
|
|
18
|
+
"url": "https://github.com/backstage/backstage",
|
|
19
|
+
"directory": "plugins/catalog-backend-module-bitbucket-server"
|
|
20
|
+
},
|
|
21
|
+
"license": "Apache-2.0",
|
|
10
22
|
"exports": {
|
|
11
23
|
".": {
|
|
12
24
|
"require": "./dist/index.cjs.js",
|
|
@@ -20,50 +32,40 @@
|
|
|
20
32
|
},
|
|
21
33
|
"./package.json": "./package.json"
|
|
22
34
|
},
|
|
23
|
-
"
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
"
|
|
29
|
-
"url": "https://github.com/backstage/backstage",
|
|
30
|
-
"directory": "plugins/catalog-backend-module-bitbucket-server"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"backstage"
|
|
35
|
+
"main": "./dist/index.cjs.js",
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"files": [
|
|
38
|
+
"config.d.ts",
|
|
39
|
+
"dist",
|
|
40
|
+
"alpha"
|
|
34
41
|
],
|
|
35
42
|
"scripts": {
|
|
36
|
-
"start": "backstage-cli package start",
|
|
37
43
|
"build": "backstage-cli package build",
|
|
44
|
+
"clean": "backstage-cli package clean",
|
|
38
45
|
"lint": "backstage-cli package lint",
|
|
39
|
-
"test": "backstage-cli package test",
|
|
40
46
|
"prepack": "backstage-cli package prepack",
|
|
41
47
|
"postpack": "backstage-cli package postpack",
|
|
42
|
-
"
|
|
48
|
+
"start": "backstage-cli package start",
|
|
49
|
+
"test": "backstage-cli package test"
|
|
43
50
|
},
|
|
44
51
|
"dependencies": {
|
|
45
|
-
"@backstage/backend-common": "^0.23.0
|
|
46
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
47
|
-
"@backstage/backend-tasks": "^0.5.24
|
|
52
|
+
"@backstage/backend-common": "^0.23.0",
|
|
53
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
54
|
+
"@backstage/backend-tasks": "^0.5.24",
|
|
48
55
|
"@backstage/catalog-model": "^1.5.0",
|
|
49
56
|
"@backstage/config": "^1.2.0",
|
|
50
57
|
"@backstage/errors": "^1.2.4",
|
|
51
|
-
"@backstage/integration": "^1.12.0
|
|
52
|
-
"@backstage/plugin-catalog-node": "^1.12.1
|
|
58
|
+
"@backstage/integration": "^1.12.0",
|
|
59
|
+
"@backstage/plugin-catalog-node": "^1.12.1",
|
|
53
60
|
"@types/node-fetch": "^2.5.12",
|
|
54
61
|
"node-fetch": "^2.6.7",
|
|
55
62
|
"uuid": "^9.0.0"
|
|
56
63
|
},
|
|
57
64
|
"devDependencies": {
|
|
58
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
59
|
-
"@backstage/cli": "^0.26.7
|
|
65
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
66
|
+
"@backstage/cli": "^0.26.7",
|
|
60
67
|
"luxon": "^3.0.0",
|
|
61
68
|
"msw": "^1.0.0"
|
|
62
69
|
},
|
|
63
|
-
"files": [
|
|
64
|
-
"config.d.ts",
|
|
65
|
-
"dist",
|
|
66
|
-
"alpha"
|
|
67
|
-
],
|
|
68
70
|
"configSchema": "config.d.ts"
|
|
69
71
|
}
|