You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,12 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
8
8
9
9
### Fixed
10
10
11
+
- Fixes [#3592](https://github.com/gitkraken/vscode-gitlens/issues/3592) - Connecting to an integration via Remotes view (but likely others) doesn't work
12
+
13
+
## [15.5.1] - 2024-09-16
14
+
15
+
### Fixed
16
+
11
17
- Fixes [#3582](https://github.com/gitkraken/vscode-gitlens/issues/3582) - "Delete Branch" option is sometimes unexpectedly missing
12
18
13
19
## [15.5.0] - 2024-09-12
@@ -5614,7 +5620,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
5614
5620
5615
5621
- Initial release but still heavily a work in progress.
'GitKraken failed to respond and might be experiencing issues. Please visit the [GitKraken status page](https://cloud.gitkrakenstatus.com) for more information.',
248
-
);
249
-
return;
250
-
}
240
+
return;
241
+
// Internal Server Error
242
+
case500:
243
+
this.trackRequestException();
244
+
voidshowGkRequestFailed500WarningMessage(
245
+
'GitKraken failed to respond and might be experiencing issues. Please visit the [GitKraken status page](https://cloud.gitkrakenstatus.com) for more information.',
246
+
);
247
+
return;
248
+
// Bad Gateway
249
+
case502: {
250
+
// Be sure to clone the response so we don't impact any upstream consumers
'GitKraken failed to respond and might be experiencing issues. Please visit the [GitKraken status page](https://cloud.gitkrakenstatus.com) for more information.',
'GitKraken failed to respond and might be experiencing issues. Please visit the [GitKraken status page](https://cloud.gitkrakenstatus.com) for more information.',
0 commit comments