@backstage/integration 1.3.0-next.1 → 1.3.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 +16 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # @backstage/integration
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 593dea6710: Add support for Basic Auth for Bitbucket Server.
8
+ - ad35364e97: feat(techdocs): add edit button support for bitbucketServer
9
+
10
+ ### Patch Changes
11
+
12
+ - 163243a4d1: Handle incorrect return type from Octokit paginate plugin to resolve reading URLs from GitHub
13
+ - c4b460a47d: Avoid double encoding of the file path in `getBitbucketDownloadUrl`
14
+ - 29f782eb37: Updated dependency `@types/luxon` to `^3.0.0`.
15
+ - 1f27d83933: Fixed bug in getGitLabFileFetchUrl where a target whose path did not contain the
16
+ `/-/` scope would result in a fetch URL that did not support
17
+ private-token-based authentication.
18
+
3
19
  ## 1.3.0-next.1
4
20
 
5
21
  ### Minor 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.0-next.1",
4
+ "version": "1.3.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -43,9 +43,9 @@
43
43
  "luxon": "^3.0.0"
44
44
  },
45
45
  "devDependencies": {
46
- "@backstage/cli": "^0.18.1-next.0",
46
+ "@backstage/cli": "^0.18.1",
47
47
  "@backstage/config-loader": "^1.1.3",
48
- "@backstage/test-utils": "^1.1.3-next.0",
48
+ "@backstage/test-utils": "^1.1.3",
49
49
  "@types/jest": "^26.0.7",
50
50
  "@types/luxon": "^3.0.0",
51
51
  "msw": "^0.44.0"
@@ -55,6 +55,6 @@
55
55
  "config.d.ts"
56
56
  ],
57
57
  "configSchema": "config.d.ts",
58
- "gitHead": "62bee85ae500414d27d7828288786de8f4816ef8",
58
+ "gitHead": "a12f6269e3bf224aa7f52475be9152bc52addeed",
59
59
  "module": "dist/index.esm.js"
60
60
  }