Skip to content

Commit 1494b64

Browse files
authored
Merge branch 'aws:main' into conorstw/types-NEW
2 parents 4e18efc + 1f14063 commit 1494b64

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"chat-client-ui-types": "0.1.62",
3-
"runtimes": "0.2.125",
3+
"runtimes": "0.2.126",
44
"types": "0.1.56"
55
}

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtimes/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.2.126](https://github.com/aws/language-server-runtimes/compare/language-server-runtimes/v0.2.125...language-server-runtimes/v0.2.126) (2025-08-18)
4+
5+
6+
### Bug Fixes
7+
8+
* skip PAC URLs in macOS proxy detection ([#664](https://github.com/aws/language-server-runtimes/issues/664)) ([92fb02d](https://github.com/aws/language-server-runtimes/commit/92fb02d1d4c6aedb7b59b042b8d10e54bb750d92))
9+
310
## [0.2.125](https://github.com/aws/language-server-runtimes/compare/language-server-runtimes/v0.2.124...language-server-runtimes/v0.2.125) (2025-08-12)
411

512

runtimes/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws/language-server-runtimes",
3-
"version": "0.2.125",
3+
"version": "0.2.126",
44
"description": "Runtimes to host Language Servers for AWS",
55
"repository": {
66
"type": "git",

runtimes/runtimes/util/standalone/getProxySettings/getMacProxySettings.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,10 @@ export function getMacSystemProxy(): ProxyConfig | undefined {
3535

3636
// Honor PAC URL first if configured
3737
if (settings.ProxyAutoConfigEnable === '1' && settings.ProxyAutoConfigURLString) {
38-
console.debug(`Using PAC URL: ${settings.ProxyAutoConfigURLString}`)
39-
return { proxyUrl: settings.ProxyAutoConfigURLString, noProxy }
38+
console.debug(`PAC URL detected: ${settings.ProxyAutoConfigURLString}`)
39+
// TODO: Parse PAC file to get actual proxy
40+
// For now, skip PAC and fall through to manual proxy settings
41+
console.warn('PAC file support not yet implemented, falling back to manual proxy settings')
4042
}
4143

4244
// Otherwise pick the first enabled protocol

0 commit comments

Comments
 (0)