All Versions
41
Latest Version
Avg Release Cycle
24 days
Latest Release
1042 days ago

Changelog History
Page 4

  • v0.12.0 Changes

    August 05, 2019
    • Implement HTTP/3.
    • ๐Ÿ“‡ Rename quic.Cookie to quic.Token and quic.Config.AcceptCookie to quic.Config.AcceptToken.
    • Distinguish between Retry tokens and tokens sent in NEW_TOKEN frames.
    • Enforce application protocol negotiation (via tls.Config.NextProtos).
    • ๐Ÿ‘‰ Use a varint for error codes.
    • โž• Add support for quic-trace.
    • โž• Add a context to Listener.Accept, Session.Accept{Uni}Stream and Session.Open{Uni}StreamSync.
    • โšก๏ธ Implement TLS key updates.
  • v0.11.2

    May 31, 2019
  • v0.11.1

    April 12, 2019
  • v0.11.0 Changes

    April 05, 2019
    • Drop support for gQUIC. For qQUIC support, please switch to the gquic branch.
    • Implement QUIC WG draft-19.
    • ๐Ÿ‘€ Use qtls for TLS 1.3.
    • Return a tls.ConnectionState from quic.Session.ConnectionState().
    • โœ‚ Remove the error return values from quic.Stream.CancelRead() and quic.Stream.CancelWrite()
  • v0.10.2

    May 31, 2019
  • v0.10.1

    January 17, 2019
  • v0.10.0 Changes

    August 28, 2018
    • โž• Add support for QUIC 44, drop support for QUIC 42.
  • v0.9.0 Changes

    August 15, 2018
    • โž• Add a quic.Config option for the length of the connection ID (for IETF QUIC).
    • Split Session.Close into one method for regular closing and one for closing with an error.
  • v0.8.0 Changes

    June 26, 2018
    • โž• Add support for unidirectional streams (for IETF QUIC).
    • โž• Add a quic.Config option for the maximum number of incoming streams.
    • โž• Add support for QUIC 42 and 43.
    • โž• Add dial functions that use a context.
    • Multiplex clients on a net.PacketConn, when using Dial(conn).
  • v0.7.0 Changes

    February 03, 2018
    • The lower boundary for packets included in ACKs is now derived, and the value sent in STOP_WAITING frames is ignored.
    • โœ‚ Remove DialNonFWSecure and DialAddrNonFWSecure.
    • ๐Ÿ”ฆ Expose the ConnectionState in the Session (experimental API).
    • Implement packet pacing.