@backstage/plugin-catalog-backend-module-bitbucket-cloud 0.2.6-next.2 → 0.2.6

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,44 @@
1
1
  # @backstage/plugin-catalog-backend-module-bitbucket-cloud
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - 78a0b08: Internal refactor to handle `BackendFeature` contract change.
8
+ - 6a576dc: Replace the usage of `getVoidLogger` with `mockServices.logger.mock` in order to remove the dependency with the soon-to-be-deprecated `backend-common` package.
9
+ - b51e823: Remove debug console logging statement
10
+ - d44a20a: Added additional plugin metadata to `package.json`.
11
+ - Updated dependencies
12
+ - @backstage/backend-common@0.23.0
13
+ - @backstage/backend-plugin-api@0.6.19
14
+ - @backstage/backend-tasks@0.5.24
15
+ - @backstage/integration@1.12.0
16
+ - @backstage/plugin-catalog-node@1.12.1
17
+ - @backstage/plugin-events-node@0.3.5
18
+ - @backstage/plugin-bitbucket-cloud-common@0.2.20
19
+ - @backstage/plugin-catalog-common@1.0.24
20
+ - @backstage/catalog-client@1.6.5
21
+ - @backstage/catalog-model@1.5.0
22
+ - @backstage/config@1.2.0
23
+
24
+ ## 0.2.6-next.3
25
+
26
+ ### Patch Changes
27
+
28
+ - d44a20a: Added additional plugin metadata to `package.json`.
29
+ - Updated dependencies
30
+ - @backstage/backend-plugin-api@0.6.19-next.3
31
+ - @backstage/integration@1.12.0-next.1
32
+ - @backstage/plugin-bitbucket-cloud-common@0.2.20-next.1
33
+ - @backstage/plugin-catalog-common@1.0.24-next.0
34
+ - @backstage/plugin-catalog-node@1.12.1-next.2
35
+ - @backstage/plugin-events-node@0.3.5-next.2
36
+ - @backstage/backend-tasks@0.5.24-next.3
37
+ - @backstage/backend-common@0.23.0-next.3
38
+ - @backstage/catalog-client@1.6.5
39
+ - @backstage/catalog-model@1.5.0
40
+ - @backstage/config@1.2.0
41
+
3
42
  ## 0.2.6-next.2
4
43
 
5
44
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-bitbucket-cloud",
3
- "version": "0.2.6-next.2",
3
+ "version": "0.2.6",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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 catalogModuleBitbucketCloudEntityProvider: () => _backstage_backend_plugin_api.BackendFeature;
6
+ declare const catalogModuleBitbucketCloudEntityProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
7
7
 
8
8
  export { catalogModuleBitbucketCloudEntityProvider as default };
package/package.json CHANGED
@@ -1,13 +1,25 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-bitbucket-cloud",
3
+ "version": "0.2.6",
3
4
  "description": "A Backstage catalog backend module that helps integrate towards Bitbucket Cloud",
4
- "version": "0.2.6-next.2",
5
- "main": "./dist/index.cjs.js",
6
- "types": "./dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "backend-plugin-module",
7
+ "pluginId": "catalog",
8
+ "pluginPackage": "@backstage/plugin-catalog-backend"
9
+ },
8
10
  "publishConfig": {
9
11
  "access": "public"
10
12
  },
13
+ "keywords": [
14
+ "backstage"
15
+ ],
16
+ "homepage": "https://backstage.io",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "https://github.com/backstage/backstage",
20
+ "directory": "plugins/catalog-backend-module-bitbucket-cloud"
21
+ },
22
+ "license": "Apache-2.0",
11
23
  "exports": {
12
24
  ".": {
13
25
  "require": "./dist/index.cjs.js",
@@ -21,53 +33,43 @@
21
33
  },
22
34
  "./package.json": "./package.json"
23
35
  },
24
- "backstage": {
25
- "role": "backend-plugin-module"
26
- },
27
- "homepage": "https://backstage.io",
28
- "repository": {
29
- "type": "git",
30
- "url": "https://github.com/backstage/backstage",
31
- "directory": "plugins/catalog-backend-module-bitbucket-cloud"
32
- },
33
- "keywords": [
34
- "backstage"
36
+ "main": "./dist/index.cjs.js",
37
+ "types": "./dist/index.d.ts",
38
+ "files": [
39
+ "config.d.ts",
40
+ "dist",
41
+ "alpha"
35
42
  ],
36
43
  "scripts": {
37
- "start": "backstage-cli package start",
38
44
  "build": "backstage-cli package build",
45
+ "clean": "backstage-cli package clean",
39
46
  "lint": "backstage-cli package lint",
40
- "test": "backstage-cli package test",
41
47
  "prepack": "backstage-cli package prepack",
42
48
  "postpack": "backstage-cli package postpack",
43
- "clean": "backstage-cli package clean"
49
+ "start": "backstage-cli package start",
50
+ "test": "backstage-cli package test"
44
51
  },
45
52
  "dependencies": {
46
- "@backstage/backend-common": "^0.23.0-next.2",
47
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
48
- "@backstage/backend-tasks": "^0.5.24-next.2",
53
+ "@backstage/backend-common": "^0.23.0",
54
+ "@backstage/backend-plugin-api": "^0.6.19",
55
+ "@backstage/backend-tasks": "^0.5.24",
49
56
  "@backstage/catalog-client": "^1.6.5",
50
57
  "@backstage/catalog-model": "^1.5.0",
51
58
  "@backstage/config": "^1.2.0",
52
- "@backstage/integration": "^1.12.0-next.0",
53
- "@backstage/plugin-bitbucket-cloud-common": "^0.2.20-next.0",
54
- "@backstage/plugin-catalog-common": "^1.0.23",
55
- "@backstage/plugin-catalog-node": "^1.12.1-next.1",
56
- "@backstage/plugin-events-node": "^0.3.5-next.1",
59
+ "@backstage/integration": "^1.12.0",
60
+ "@backstage/plugin-bitbucket-cloud-common": "^0.2.20",
61
+ "@backstage/plugin-catalog-common": "^1.0.24",
62
+ "@backstage/plugin-catalog-node": "^1.12.1",
63
+ "@backstage/plugin-events-node": "^0.3.5",
57
64
  "uuid": "^9.0.0"
58
65
  },
59
66
  "devDependencies": {
60
- "@backstage/backend-common": "^0.23.0-next.2",
61
- "@backstage/backend-test-utils": "^0.4.0-next.2",
62
- "@backstage/cli": "^0.26.7-next.2",
63
- "@backstage/plugin-events-backend-test-utils": "^0.1.29-next.1",
67
+ "@backstage/backend-common": "^0.23.0",
68
+ "@backstage/backend-test-utils": "^0.4.0",
69
+ "@backstage/cli": "^0.26.7",
70
+ "@backstage/plugin-events-backend-test-utils": "^0.1.29",
64
71
  "luxon": "^3.0.0",
65
72
  "msw": "^1.0.0"
66
73
  },
67
- "files": [
68
- "config.d.ts",
69
- "dist",
70
- "alpha"
71
- ],
72
74
  "configSchema": "config.d.ts"
73
75
  }