Thanks to visit codestin.com
Credit goes to github.com

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.40.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.41.0
Choose a head ref
  • 5 commits
  • 6 files changed
  • 5 contributors

Commits on May 12, 2025

  1. trace: add missing td tag

    Change-Id: I4f99953e028a6e397c62605f39b73872abf960bd
    Reviewed-on: https://go-review.googlesource.com/c/net/+/670995
    Reviewed-by: Sean Liao <[email protected]>
    Auto-Submit: Sean Liao <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Knyszek <[email protected]>
    egonelbre authored and gopherbot committed May 12, 2025
    Configuration menu
    Copy the full SHA
    bae01a7 View commit details
    Browse the repository at this point in the history
  2. http2: use an array instead of a map in typeFrameParser

    FrameType is a dense integer range, so we can store the frameParsers
    in an array instead of a map. This should be a very small performance
    win on all Go http2 servers. For high QPS gRPC services, this function
    is visible in the Go profiler. For example, it shows up as 0.16% of
    all CPU time on one production service at Datadog.
    
    Change FrameType.String() to use the same pattern.
    
    Add a test for testFrameType with unknown FrameTypes.
    
    Fixes golang/go#73613
    
    Change-Id: I5f5b523e011a99d6b428cbdbfd97415e488169d1
    Reviewed-on: https://go-review.googlesource.com/c/net/+/670415
    Reviewed-by: Sean Liao <[email protected]>
    Reviewed-by: Cherry Mui <[email protected]>
    Reviewed-by: Michael Knyszek <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    evanj authored and seankhliao committed May 12, 2025
    Configuration menu
    Copy the full SHA
    919c6bc View commit details
    Browse the repository at this point in the history

Commits on May 22, 2025

  1. internal/http3: use bubbled context in synctest tests

    Avoid using T.Context within a synctest bubble. If the Context's
    Done channel is created outside the bubble, waiting on it within
    the bubble is durably blocking. If it's created within the bubble,
    the testing package encounters a panic when closing it after
    CL 671960.
    
    Instead, create our own Context within the bubble and cancel it
    before the bubble is destroyed.
    
    This will be entirely obviated by synctest.Test, which creates
    a testing.T that returns a properly bubbled context.
    
    Change-Id: Iff93c296ccbc1ece8172cb0a60e626ea1bd895ad
    Reviewed-on: https://go-review.googlesource.com/c/net/+/675615
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Auto-Submit: Damien Neil <[email protected]>
    Reviewed-by: Jonathan Amsterdam <[email protected]>
    neild authored and gopherbot committed May 22, 2025
    Configuration menu
    Copy the full SHA
    ef33bc0 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2025

  1. http2: correctly wrap ErrFrameTooLarge in Framer.ReadFrame

    In Framer.ReadFrame's frame-too-large check, the code that checks for
    HTTP/1.1 looking frames accidentally wrapped the unrelated err from the
    previous readFrameHeader call instead of ErrFrameTooLarge. Fix that.
    
    Change-Id: I2237759eaad8c6e06e7195c50410abb5792e57ea
    Reviewed-on: https://go-review.googlesource.com/c/net/+/676218
    Reviewed-by: Chressie Himpel <[email protected]>
    Reviewed-by: Damien Neil <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    chressie committed May 28, 2025
    Configuration menu
    Copy the full SHA
    15f7d40 View commit details
    Browse the repository at this point in the history

Commits on Jun 5, 2025

  1. go.mod: update golang.org/x dependencies

    Update golang.org/x dependencies to their latest tagged versions.
    
    Change-Id: Ief62c666e731ea5aa7bbf9b6be66c47cb463f867
    Reviewed-on: https://go-review.googlesource.com/c/net/+/679315
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    Reviewed-by: David Chase <[email protected]>
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Auto-Submit: Gopher Robot <[email protected]>
    gopherbot committed Jun 5, 2025
    Configuration menu
    Copy the full SHA
    6e41cae View commit details
    Browse the repository at this point in the history
Loading