Skip to content
Closed
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions packages/amazonq/.changes/1.90.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"date": "2025-08-15",
"version": "1.90.0",
"entries": []
}
4 changes: 4 additions & 0 deletions packages/amazonq/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.90.0 2025-08-15

- Miscellaneous non-user-facing changes

## 1.89.0 2025-08-13

- Miscellaneous non-user-facing changes
Expand Down
2 changes: 1 addition & 1 deletion packages/amazonq/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "amazon-q-vscode",
"displayName": "Amazon Q",
"description": "The most capable generative AI–powered assistant for software development.",
"version": "1.90.0-SNAPSHOT",
"version": "1.91.0-SNAPSHOT",
"extensionKind": [
"workspace"
],
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/shared/utilities/proxyUtil.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export class ProxyUtil {
*/
private static async setProxyEnvironmentVariables(config: ProxyConfig): Promise<void> {
// Always enable experimental proxy support for better handling of both explicit and transparent proxies
process.env.EXPERIMENTAL_HTTP_PROXY_SUPPORT = 'true'
process.env.EXPERIMENTAL_HTTP_PROXY_SUPPORT = 'false'

const proxyUrl = config.proxyUrl
// Set proxy environment variables
Expand Down
Loading