@backstage/integration 2.0.3-next.0 → 2.0.3-next.1

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,12 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 2.0.3-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - b75158b: Adapted Azure-related tests for the Azure SDK upgrade to ESM-style exports. The `AzureBlobStorageUrlReader` now accepts an optional `createContainerClient` dependency for testability without needing to mock the `@azure/storage-blob` module.
8
+ - 241d359: Changed visibility of Bitbucket username as it is not a secret.
9
+
3
10
  ## 2.0.3-next.0
4
11
 
5
12
  ### Patch Changes
package/config.d.ts CHANGED
@@ -115,7 +115,6 @@ export interface Config {
115
115
  bitbucketCloud?: Array<{
116
116
  /**
117
117
  * The username to use for authenticated requests.
118
- * @visibility secret
119
118
  */
120
119
  username?: string;
121
120
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/integration",
3
- "version": "2.0.3-next.0",
3
+ "version": "2.0.3-next.1",
4
4
  "description": "Helpers for managing integrations towards external systems",
5
5
  "backstage": {
6
6
  "role": "common-library"
@@ -50,8 +50,8 @@
50
50
  "p-throttle": "^4.1.1"
51
51
  },
52
52
  "devDependencies": {
53
- "@backstage/backend-test-utils": "1.11.4-next.0",
54
- "@backstage/cli": "0.36.3-next.0",
53
+ "@backstage/backend-test-utils": "1.11.4-next.1",
54
+ "@backstage/cli": "0.36.3-next.1",
55
55
  "@backstage/config-loader": "1.10.11",
56
56
  "msw": "^1.0.0"
57
57
  },