Skip to content

Commit

Permalink
Support SOCKS5 proxy (#2004)
Browse files Browse the repository at this point in the history
* Changed  dependency to use fork supporting socks5 proxy

* Changelog entry
  • Loading branch information
Razz4780 authored Oct 12, 2023
1 parent 0f25561 commit 29a4906
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 27 deletions.
77 changes: 53 additions & 24 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
futures = "0.3"
thiserror = "1"
k8s-openapi = { version = "0.18", features = ["v1_24"] }
k8s-openapi = { version = "0.20", features = ["v1_24"] }
reqwest = { version = "0.11", default-features = false, features = ["blocking", "rustls-tls", "json"] }
kube = { version = "0.84", default-features = false, features = ["runtime", "derive", "client", "ws", "rustls-tls", "oidc"] }
kube = { git = "https://github.com/Razz4780/kube", branch = "support_socks5_proxy", default-features = false, features = ["runtime", "derive", "client", "ws", "rustls-tls", "oidc", "socks5"] }
trust-dns-resolver = { version = "0.22", features = ["serde-config", "tokio-runtime"] }
tokio-util = { version = "0.7", features = ["net", "codec"] }
rand = "0.8"
Expand Down
1 change: 1 addition & 0 deletions changelog.d/1734.added.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
SOCKS5 proxy is now supported.
2 changes: 1 addition & 1 deletion mirrord/operator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,5 +69,5 @@ serde_yaml = { version = "0.9", optional = true }
thiserror.workspace = true
semver.workspace = true
tokio = { workspace = true, optional = true }
tokio-tungstenite = { version = "0.19", optional = true }
tokio-tungstenite = { version = "0.20.1", optional = true }
tracing = { workspace = true, optional = true }

0 comments on commit 29a4906

Please sign in to comment.