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 22
33## Unreleased
44
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+
511## [ v1.7.0] ( https://github.com/coder/vscode-coder/releases/tag/v1.7.0 ) (2025-04-03)
612
713### Added
Original file line number Diff line number Diff line change 44 "displayName" : " Coder" ,
55 "description" : " Open any workspace with a single click." ,
66 "repository" : " https://github.com/coder/vscode-coder" ,
7- "version" : " 1.7.0 " ,
7+ "version" : " 1.7.1 " ,
88 "engines" : {
99 "vscode" : " ^1.73.0"
1010 },
Original file line number Diff line number Diff line change @@ -104,6 +104,7 @@ export function createStreamingFetchAdapter(axiosInstance: AxiosInstance) {
104104
105105 const response = await axiosInstance . request ( {
106106 url : urlStr ,
107+ signal : init ?. signal ,
107108 headers : init ?. headers as Record < string , string > ,
108109 responseType : "stream" ,
109110 validateStatus : ( ) => true , // Don't throw on any status code
You can’t perform that action at this time.
0 commit comments