@backstage/integration 1.3.1-next.2 → 1.3.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - eadf56bbbf: Bump `git-url-parse` version to `^13.0.0`
8
+ - 7d47def9c4: Removed dependency on `@types/jest`.
9
+ - 667d917488: Updated dependency `msw` to `^0.47.0`.
10
+ - 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
11
+ - bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
12
+ - 42918e085c: Fixed bug in the `bitbucketServer` integration where token did not take precedence over supplied username and password which is described in the documentation.
13
+ - f76f22c649: Improved caching around github app tokens.
14
+ Tokens are now cached for 50 minutes, not 10.
15
+ Calls to get app installations are also included in this cache.
16
+ If you have more than one github app configured, consider adding `allowedInstallationOwners` to your apps configuration to gain the most benefit from these performance changes.
17
+ - Updated dependencies
18
+ - @backstage/config@1.0.2
19
+ - @backstage/errors@1.1.1
20
+
3
21
  ## 1.3.1-next.2
4
22
 
5
23
  ### 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.3.1-next.2",
4
+ "version": "1.3.1",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -32,8 +32,8 @@
32
32
  "clean": "backstage-cli package clean"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/config": "^1.0.2-next.0",
36
- "@backstage/errors": "^1.1.1-next.0",
35
+ "@backstage/config": "^1.0.2",
36
+ "@backstage/errors": "^1.1.1",
37
37
  "@octokit/auth-app": "^4.0.0",
38
38
  "@octokit/rest": "^19.0.3",
39
39
  "cross-fetch": "^3.1.5",
@@ -42,9 +42,9 @@
42
42
  "luxon": "^3.0.0"
43
43
  },
44
44
  "devDependencies": {
45
- "@backstage/cli": "^0.19.0-next.3",
46
- "@backstage/config-loader": "^1.1.4-next.2",
47
- "@backstage/test-utils": "^1.2.0-next.3",
45
+ "@backstage/cli": "^0.19.0",
46
+ "@backstage/config-loader": "^1.1.4",
47
+ "@backstage/test-utils": "^1.2.0",
48
48
  "@types/luxon": "^3.0.0",
49
49
  "msw": "^0.47.0"
50
50
  },
@@ -53,6 +53,6 @@
53
53
  "config.d.ts"
54
54
  ],
55
55
  "configSchema": "config.d.ts",
56
- "gitHead": "2f458448f850dc68a711e2f31d14a91f96cf175d",
56
+ "gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406",
57
57
  "module": "dist/index.esm.js"
58
58
  }