Skip to content

Releases: klzgrad/naiveproxy

cronet-test8

21 May 18:12
Compare
Choose a tag to compare
cronet-test8 Pre-release
Pre-release
  • Support setting base::FeatureList with the experimental option "feature_list": { "enable-features": "...", "disable-features": "..." }. See comments of InitializeFromCommandLine in https://source.chromium.org/chromium/chromium/src/+/main:base/feature_list.h for details.
  • Support setting the network isolation key of a stream with stream header -network-isolation-key. The header value should be a valid URL with different host and port for each different network isolation key. Network isolation takes effect only if it is enabled by experimental
    option of "feature_list": { "enable-features": "PartitionConnectionsByNetworkIsolationKey" }.

v101.0.4951.41-1

02 May 17:55
Compare
Choose a tag to compare

v100.0.4896.60-1

30 Mar 15:34
Compare
Choose a tag to compare

v99.0.4844.51-1

02 Mar 18:50
Compare
Choose a tag to compare

v98.0.4758.80-2

20 Feb 05:22
Compare
Choose a tag to compare

v98.0.4758.80-1

09 Feb 08:55
Compare
Choose a tag to compare

v97.0.4692.71-2: Fix Android build

06 Jan 15:09
Compare
Choose a tag to compare
Pre-release
Some static libraries are still required in 32-bit builds.

v97.0.4692.71-1

05 Jan 23:31
Compare
Choose a tag to compare

v96.0.4664.45-1

15 Nov 13:43
Compare
Choose a tag to compare

v95.0.4638.54-3

28 Oct 15:23
Compare
Choose a tag to compare
  • Fixed a crash on IPv6 URLs, e.g. https://[2001:db8::1] #236.
  • Rename the option --concurrency to --insecure-concurrency and make it public, with the following documentation:
    --insecure-concurrency=<N>
    
      Use N concurrent tunnel connections to be more robust under bad network
      conditions. More connections make the tunneling easier to detect and less
      secure. This project strives for the strongest security against traffic
      analysis. Using it in an insecure way defeats its purpose.
    
      If you must use this, try N=2 first to see if it solves your issues.
      Strongly recommend against using more than 4 connections here.