Skip to content

Releases: bogdanfinn/tls-client

v1.14.0

04 Feb 08:57
725955a

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.13.1...v1.14.0

v1.13.1

10 Jan 16:06

Choose a tag to compare

What's Changed

  • Add AllowHTTP, set StreamID value by @gunir in #205 fixed #194
  • fixes #191: fixed correct usage of PSK (41) extension in chrome_133;
  • implemented chromes happy eyeballs approach to determine which protocol to use for http3;
options := []tls_client.HttpClientOption{
        tls_client.WithClientProfile(profiles.Chrome_133),
        tls_client.WithProtocolRacing(),
    }

see https://github.com/bogdanfinn/tls-client/blob/master/tests/http3_chrome_cloudflare_test.go

New Contributors

Full Changelog: v1.12.0...v1.13.1

v1.12.0

25 Dec 20:56

Choose a tag to compare

What's Changed

  • Add 'keep_compressed' test by @ypapouski in #201
  • Updated to latest quic-go by @snekROmonoro
  • Implemented support for socks4 Proxies
  • Updated utls on the latest changes from refraction-networking/utls
  • Breaking Change: Changed Default cookiejar to be used in API to jar, _ := cookiejar.New(nil) and not tls_client.NewCookieJar(jarOptions...) anymore.

The payload to be sent via the API / Shared library is now:

   "withoutCookieJar": false | true, <- Disable Cookiejar completely
   "withCustomCookieJar": false | true, <- Use "old" tls_client Cookiejar.

New Contributors

Full Changelog: v1.11.2...v1.12.0

v1.11.2

11 Sep 22:16

Choose a tag to compare

v1.11.0

18 Jul 20:40

Choose a tag to compare

What's Changed

Full Changelog: v1.10.0...v1.11.0

v1.10.0

17 Jun 07:48

Choose a tag to compare

Full Changelog: v1.9.2...v1.10.0

v1.9.2

14 Jun 19:37

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.9.1...v1.9.2

v1.9.1

02 Apr 08:18

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.8.0...v1.9.1

v1.8.0

07 Feb 08:53

Choose a tag to compare

What's Changed

  • implemented chrome 133 with new alps extension code point 17613; by @bogdanfinn in #155

Full Changelog: v1.7.11...v1.8.0

v1.7.11

29 Jan 21:29

Choose a tag to compare

What's Changed

  • updated pinner to update pins in case they change per pinner instance by @DemBackfisch in #153
  • fixed #148: clone default headers on usage in order to avoid concurrent map read write;
  • updated dependencies to not have logs to stdout when setting SSLKEYLOGFILE env variable;
  • updated fhttp to avoid possible nil pointer dereference

New Contributors

Full Changelog: v1.7.10...v1.7.11