@backstage/integration 2.0.2-next.1 → 2.0.2
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 +14 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/integration
|
|
2
2
|
|
|
3
|
+
## 2.0.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6b112d3: Fixed two issues in the GitLab integration's fetch behavior:
|
|
8
|
+
|
|
9
|
+
- The internal fetch wrapper was passing `mode: 'same-origin'` on every request. This had no practical effect server-side, but would have caused cross-origin requests to be rejected when the integration is used from a browser. Requests now use the default fetch mode and work correctly in both browser and Node environments.
|
|
10
|
+
- When retries are configured, transient network errors (such as dropped connections or DNS hiccups) are now retried using the same `maxRetries` and exponential delay as retryable HTTP status codes. Previously, a thrown fetch error would propagate immediately on the first failure regardless of the retry configuration. Caller-initiated aborts continue to surface immediately without being retried.
|
|
11
|
+
|
|
12
|
+
- b62781f: Moved `registerMswTestHooks` to test files.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/errors@1.3.1
|
|
15
|
+
- @backstage/config@1.3.8
|
|
16
|
+
|
|
3
17
|
## 2.0.2-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/integration",
|
|
3
|
-
"version": "2.0.2
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"description": "Helpers for managing integrations towards external systems",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "common-library"
|
|
@@ -39,8 +39,8 @@
|
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@azure/identity": "^4.0.0",
|
|
41
41
|
"@azure/storage-blob": "^12.5.0",
|
|
42
|
-
"@backstage/config": "1.3.8
|
|
43
|
-
"@backstage/errors": "1.3.1
|
|
42
|
+
"@backstage/config": "^1.3.8",
|
|
43
|
+
"@backstage/errors": "^1.3.1",
|
|
44
44
|
"@octokit/auth-app": "^4.0.0",
|
|
45
45
|
"@octokit/rest": "^19.0.3",
|
|
46
46
|
"cross-fetch": "^4.0.0",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"p-throttle": "^4.1.1"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/backend-test-utils": "1.11.3
|
|
54
|
-
"@backstage/cli": "0.36.2
|
|
55
|
-
"@backstage/config-loader": "1.10.11
|
|
53
|
+
"@backstage/backend-test-utils": "^1.11.3",
|
|
54
|
+
"@backstage/cli": "^0.36.2",
|
|
55
|
+
"@backstage/config-loader": "^1.10.11",
|
|
56
56
|
"msw": "^1.0.0"
|
|
57
57
|
},
|
|
58
58
|
"configSchema": "config.d.ts",
|