@backstage/plugin-bitbucket-cloud-common 0.1.0-next.0 → 0.1.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 +17 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @backstage/plugin-bitbucket-cloud-common
2
2
 
3
+ ## 0.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 1dffa7dd4d: Add new common library `bitbucket-cloud-common` with a client for Bitbucket Cloud.
8
+
9
+ This client can be reused across all packages and might be the future place for additional
10
+ features like managing the rate limits, etc.
11
+
12
+ The client itself was generated in parts using the `@openapitools/openapi-generator-cli`.
13
+
14
+ ### Patch Changes
15
+
16
+ - 9122060776: Updated dependency `msw` to `^0.42.0`.
17
+ - Updated dependencies
18
+ - @backstage/integration@1.2.1
19
+
3
20
  ## 0.1.0-next.0
4
21
 
5
22
  ### Minor Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-bitbucket-cloud-common",
3
3
  "description": "Common functionalities for bitbucket-cloud plugins",
4
- "version": "0.1.0-next.0",
4
+ "version": "0.1.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -28,18 +28,18 @@
28
28
  "update-models": "yarn refresh-schema && yarn generate-models && yarn reduce-models"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/integration": "^1.2.1-next.1",
31
+ "@backstage/integration": "^1.2.1",
32
32
  "cross-fetch": "^3.1.5"
33
33
  },
34
34
  "devDependencies": {
35
- "@backstage/cli": "^0.17.2-next.1",
35
+ "@backstage/cli": "^0.17.2",
36
36
  "@openapitools/openapi-generator-cli": "^2.4.26",
37
- "msw": "^0.35.0",
37
+ "msw": "^0.42.0",
38
38
  "ts-morph": "^15.0.0"
39
39
  },
40
40
  "files": [
41
41
  "dist"
42
42
  ],
43
- "gitHead": "e15c24ddb5d14034629ced8a5a5d8f12b8f1a7dd",
43
+ "gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee",
44
44
  "module": "dist/index.esm.js"
45
45
  }