Skip to content

Commit 63806d5

Browse files
committed
v1.3.6
feat: enable proxy env support for ureq requests
1 parent 35f945d commit 63806d5

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "claude-code-usage-monitor"
3-
version = "1.3.5"
3+
version = "1.3.6"
44
edition = "2021"
55
license = "MIT"
66
description = "Claude Code Usage Monitor"
@@ -17,7 +17,7 @@ Comments = "https://codezeno.com.au"
1717
LegalCopyright = "Copyright (C) 2026 Code Zeno Pty Ltd"
1818

1919
[dependencies]
20-
ureq = { version = "2", default-features = false, features = ["native-tls", "json"] }
20+
ureq = { version = "2", default-features = false, features = ["native-tls", "json", "proxy-from-env"] }
2121
native-tls = "0.2"
2222
serde = { version = "1", features = ["derive"] }
2323
serde_json = "1"

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,7 @@ What the app sends over the network:
107107

108108
- Requests to Anthropic's Claude endpoints to read your usage and rate-limit information
109109
- Requests to GitHub only if you use the app's update check / self-update feature
110+
- If proxy environment variables such as `HTTPS_PROXY`, `HTTP_PROXY`, or `ALL_PROXY` are set, those outbound requests may use that proxy
110111

111112
What the app stores locally:
112113

@@ -126,6 +127,7 @@ Notes:
126127

127128
- If your Claude Code token is expired, the app may ask the local Claude CLI to refresh it in the background
128129
- Portable installs can update themselves by downloading the latest release from this repository
130+
- Proxies should be trusted because proxied Claude requests include your OAuth bearer token inside the TLS connection
129131

130132
## How It Works
131133

0 commit comments

Comments
 (0)