File tree Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Expand file tree Collapse file tree 3 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## Unreleased
4
4
5
+ ## [ v1.7.1] ( https://github.com/coder/vscode-coder/releases/tag/v1.7.1 ) (2025-04-14)
6
+
7
+ ### Fixed
8
+
9
+ - Fix bug where we were leaking SSE connections
10
+
5
11
## [ v1.7.0] ( https://github.com/coder/vscode-coder/releases/tag/v1.7.0 ) (2025-04-03)
6
12
7
13
### Added
Original file line number Diff line number Diff line change 4
4
"displayName" : " Coder" ,
5
5
"description" : " Open any workspace with a single click." ,
6
6
"repository" : " https://github.com/coder/vscode-coder" ,
7
- "version" : " 1.7.0 " ,
7
+ "version" : " 1.7.1 " ,
8
8
"engines" : {
9
9
"vscode" : " ^1.73.0"
10
10
},
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ export function createStreamingFetchAdapter(axiosInstance: AxiosInstance) {
104
104
105
105
const response = await axiosInstance . request ( {
106
106
url : urlStr ,
107
+ signal : init ?. signal ,
107
108
headers : init ?. headers as Record < string , string > ,
108
109
responseType : "stream" ,
109
110
validateStatus : ( ) => true , // Don't throw on any status code
You can’t perform that action at this time.
0 commit comments