@backstage/plugin-catalog-backend-module-bitbucket-server 0.1.5-next.2 → 0.1.5
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 +17 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +1 -1
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-bitbucket-server
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9f2b786fc9: Provide context for logged errors.
|
|
8
|
+
- 8e06f3cf00: Switched imports of `loggerToWinstonLogger` to `@backstage/backend-common`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-plugin-api@0.3.0
|
|
11
|
+
- @backstage/backend-common@0.18.0
|
|
12
|
+
- @backstage/catalog-model@1.1.5
|
|
13
|
+
- @backstage/backend-tasks@0.4.1
|
|
14
|
+
- @backstage/plugin-catalog-node@1.3.1
|
|
15
|
+
- @backstage/plugin-catalog-backend@1.7.0
|
|
16
|
+
- @backstage/config@1.0.6
|
|
17
|
+
- @backstage/errors@1.1.4
|
|
18
|
+
- @backstage/integration@1.4.2
|
|
19
|
+
|
|
3
20
|
## 0.1.5-next.2
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -92,7 +92,7 @@ export declare class BitbucketServerEntityProvider implements EntityProvider {
|
|
|
92
92
|
/**
|
|
93
93
|
* @alpha
|
|
94
94
|
*/
|
|
95
|
-
export declare const bitbucketServerEntityProviderCatalogModule: (
|
|
95
|
+
export declare const bitbucketServerEntityProviderCatalogModule: () => BackendFeature;
|
|
96
96
|
|
|
97
97
|
/**
|
|
98
98
|
* @public
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-bitbucket-server",
|
|
3
|
-
"version": "0.1.5
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"main": "dist/index.cjs.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -32,23 +32,23 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-common": "^0.18.0
|
|
36
|
-
"@backstage/backend-plugin-api": "^0.3.0
|
|
37
|
-
"@backstage/backend-tasks": "^0.4.1
|
|
38
|
-
"@backstage/catalog-model": "^1.1.5
|
|
39
|
-
"@backstage/config": "^1.0.6
|
|
35
|
+
"@backstage/backend-common": "^0.18.0",
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.3.0",
|
|
37
|
+
"@backstage/backend-tasks": "^0.4.1",
|
|
38
|
+
"@backstage/catalog-model": "^1.1.5",
|
|
39
|
+
"@backstage/config": "^1.0.6",
|
|
40
40
|
"@backstage/errors": "^1.1.4",
|
|
41
|
-
"@backstage/integration": "^1.4.2
|
|
42
|
-
"@backstage/plugin-catalog-backend": "^1.7.0
|
|
43
|
-
"@backstage/plugin-catalog-node": "^1.3.1
|
|
41
|
+
"@backstage/integration": "^1.4.2",
|
|
42
|
+
"@backstage/plugin-catalog-backend": "^1.7.0",
|
|
43
|
+
"@backstage/plugin-catalog-node": "^1.3.1",
|
|
44
44
|
"@types/node-fetch": "^2.5.12",
|
|
45
45
|
"node-fetch": "^2.6.7",
|
|
46
46
|
"uuid": "^8.0.0",
|
|
47
47
|
"winston": "^3.2.1"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/backend-test-utils": "^0.1.32
|
|
51
|
-
"@backstage/cli": "^0.22.1
|
|
50
|
+
"@backstage/backend-test-utils": "^0.1.32",
|
|
51
|
+
"@backstage/cli": "^0.22.1",
|
|
52
52
|
"luxon": "^3.0.0",
|
|
53
53
|
"msw": "^0.49.0"
|
|
54
54
|
},
|