@backstage/integration 1.7.0-next.2 → 1.7.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 +42 -0
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.7.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5f1a92b9f19f: Added `AzureDevOpsCredentialsProvider` to support multiple Azure DevOps organizations and **deprecated** `AzureIntegrationConfig.credential` and `AzureIntegrationConfig.token` in favour of `AzureIntegrationConfig.credentials`. You can now use specific credentials for different Azure DevOps (Server) organizations by specifying the `organizations` field on a credential:
8
+
9
+ ```yaml
10
+ integrations:
11
+ azure:
12
+ - host: dev.azure.com
13
+ credentials:
14
+ - organizations:
15
+ - my-org
16
+ - my-other-org
17
+ clientId: ${AZURE_CLIENT_ID}
18
+ clientSecret: ${AZURE_CLIENT_SECRET}
19
+ tenantId: ${AZURE_TENANT_ID}
20
+ - organizations:
21
+ - yet-another-org
22
+ personalAccessToken: ${PERSONAL_ACCESS_TOKEN}
23
+ ```
24
+
25
+ See the [Azure integration documentation](https://backstage.io/docs/integrations/azure/locations) for more information.
26
+
27
+ ### Patch Changes
28
+
29
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
30
+ - 2d2fc9d20ebb: Additional fix for Gitiles auth links
31
+ - cb2e19d82d95: Gitiles: Fixed auth prefix issue
32
+ - Updated dependencies
33
+ - @backstage/config@1.1.0
34
+ - @backstage/errors@1.2.2
35
+
36
+ ## 1.7.0-next.3
37
+
38
+ ### Patch Changes
39
+
40
+ - 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
41
+ - Updated dependencies
42
+ - @backstage/config@1.1.0-next.2
43
+ - @backstage/errors@1.2.2-next.0
44
+
3
45
  ## 1.7.0-next.2
4
46
 
5
47
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/integration",
3
3
  "description": "Helpers for managing integrations towards external systems",
4
- "version": "1.7.0-next.2",
4
+ "version": "1.7.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,6 +23,7 @@
23
23
  "keywords": [
24
24
  "backstage"
25
25
  ],
26
+ "sideEffects": false,
26
27
  "scripts": {
27
28
  "build": "backstage-cli package build",
28
29
  "lint": "backstage-cli package lint",
@@ -33,8 +34,8 @@
33
34
  },
34
35
  "dependencies": {
35
36
  "@azure/identity": "^3.2.1",
36
- "@backstage/config": "^1.1.0-next.1",
37
- "@backstage/errors": "^1.2.1",
37
+ "@backstage/config": "^1.1.0",
38
+ "@backstage/errors": "^1.2.2",
38
39
  "@octokit/auth-app": "^4.0.0",
39
40
  "@octokit/rest": "^19.0.3",
40
41
  "cross-fetch": "^3.1.5",
@@ -43,8 +44,8 @@
43
44
  "luxon": "^3.0.0"
44
45
  },
45
46
  "devDependencies": {
46
- "@backstage/cli": "^0.22.13-next.2",
47
- "@backstage/config-loader": "^1.5.0-next.2",
47
+ "@backstage/cli": "^0.22.13",
48
+ "@backstage/config-loader": "^1.5.0",
48
49
  "@types/luxon": "^3.0.0",
49
50
  "msw": "^1.0.0"
50
51
  },