Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: golang/net
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.6.0
Choose a base ref
...
head repository: golang/net
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.7.0
Choose a head ref
  • 3 commits
  • 8 files changed
  • 2 contributors

Commits on Feb 10, 2023

  1. html: parse comments per HTML spec

    Updates golang/go#58246
    
    Change-Id: Iaba5ed65f5d244fd47372ef0c08fc4cdb5ed90f9
    Reviewed-on: https://go-review.googlesource.com/c/net/+/466776
    TryBot-Result: Gopher Robot <[email protected]>
    Auto-Submit: Nigel Tao <[email protected]>
    Reviewed-by: Damien Neil <[email protected]>
    Run-TryBot: Nigel Tao <[email protected]>
    Reviewed-by: Nigel Tao (INACTIVE; USE @golang.org INSTEAD) <[email protected]>
    nigeltao authored and gopherbot committed Feb 10, 2023
    Configuration menu
    Copy the full SHA
    39940ad View commit details
    Browse the repository at this point in the history

Commits on Feb 13, 2023

  1. http2: avoid referencing ResponseWrite.Write parameter after returning

    When writing data frames, encode the frame on the serve goroutine
    rather than in writeFrameAsync to avoid referencing stream data
    (originating from a ResponseWriter.Write call) after the Write
    has returned.
    
    Fixes golang/go#58446
    
    Change-Id: I866a7351c90ef122e506b333151f98a455a64953
    Reviewed-on: https://go-review.googlesource.com/c/net/+/467355
    TryBot-Result: Gopher Robot <[email protected]>
    Run-TryBot: Damien Neil <[email protected]>
    Reviewed-by: Bryan Mills <[email protected]>
    neild committed Feb 13, 2023
    Configuration menu
    Copy the full SHA
    547e7ed View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2023

  1. http2/hpack: avoid quadratic complexity in hpack decoding

    When parsing a field literal containing two Huffman-encoded strings,
    don't decode the first string until verifying all data is present.
    Avoids forced quadratic complexity when repeatedly parsing a partial
    field, repeating the Huffman decoding of the string on each iteration.
    
    Thanks to Philippe Antoine (Catena cyber) for reporting this issue.
    
    Fixes golang/go#57855
    Fixes CVE-2022-41723
    
    Change-Id: I58a743df450a4a4923dddd5cf6bb0592b0a7bdf3
    Reviewed-on: https://team-review.git.corp.google.com/c/golang/go-private/+/1688184
    TryBot-Result: Security TryBots <[email protected]>
    Reviewed-by: Julie Qiu <[email protected]>
    Run-TryBot: Damien Neil <[email protected]>
    Reviewed-by: Roland Shoemaker <[email protected]>
    Reviewed-on: https://go-review.googlesource.com/c/net/+/468135
    Run-TryBot: Michael Pratt <[email protected]>
    Reviewed-by: Roland Shoemaker <[email protected]>
    Reviewed-by: Than McIntosh <[email protected]>
    Auto-Submit: Michael Pratt <[email protected]>
    TryBot-Result: Gopher Robot <[email protected]>
    neild authored and prattmic committed Feb 14, 2023
    Configuration menu
    Copy the full SHA
    8e2b117 View commit details
    Browse the repository at this point in the history
Loading