Skip to content

Commit 83fafb0

Browse files
committed
Merge branch 'main' into bcpeinhardt/ai-agent-session-in-vscode
2 parents 5c66430 + ee4a5f1 commit 83fafb0

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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
},

src/api.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)