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/mod
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.21.0
Choose a base ref
...
head repository: golang/mod
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.22.0
Choose a head ref
  • 3 commits
  • 14 files changed
  • 2 contributors

Commits on Oct 9, 2024

  1. x/mod: remove vendor/modules.txt from module download

    This fixes a bug where vendor/modules.txt was accidently included during
    a module download.
    This CL trims this file for 1.24 modules and beyond. We cannot remove this
    for earlier Go versions because this would alter checksums and cause a
    checksum failure.
    This CL also adds the ability to case on the Go version in the root's
    go.mod file, enabling future behavior changes if necessary.
    
    Fixes: golang/go#63395
    Updates: golang/go#37397
    Change-Id: I4a4f2174b0f5e79c7e5c516e0db3c91e7d2ae4d9
    Reviewed-on: https://go-review.googlesource.com/c/mod/+/584635
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Matloob <[email protected]>
    samthanawalla committed Oct 9, 2024
    Configuration menu
    Copy the full SHA
    9cd0e4c View commit details
    Browse the repository at this point in the history

Commits on Oct 10, 2024

  1. x/mod: fix handling of vendored packages with '/vendor' in non-top-le…

    …vel paths
    
    This CL address a bug in the handling of vendored packages where the
    '/vendor' element appears in non-top level import paths within a module
    zip file.
    This issue arose from an incorrect offset calculation that caused
    non-vendored packages to be incorrectly identified as vendored.
    This CL corrects the offset calculation for Go 1.24 and beyond.
    
    Fixes golang/go#37397
    
    Change-Id: Ibf1751057e8383c7b82f1622674204597e735b7c
    Reviewed-on: https://go-review.googlesource.com/c/mod/+/619175
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Matloob <[email protected]>
    samthanawalla committed Oct 10, 2024
    Configuration menu
    Copy the full SHA
    c8a7319 View commit details
    Browse the repository at this point in the history

Commits on Nov 1, 2024

  1. sumdb: make data tiles by Server compatible with sum.golang.org

    Make the format of sumdb.Server data tile responses compatible with those
    served by sum.golang.org: Like formatted records for the lookup endpoint, but
    without each record IDs.
    
    Updates documentation for sumdb/tlog.FormatRecord about data tiles.
    Server still calls FormatRecord to keep the validation, then removes the first
    line.
    
    For golang/go#69348
    
    Change-Id: I1bea45b3343c58acc90982aaff5d41e32b06ae8c
    Reviewed-on: https://go-review.googlesource.com/c/mod/+/618135
    LUCI-TryBot-Result: Go LUCI <[email protected]>
    Reviewed-by: Michael Matloob <[email protected]>
    Reviewed-by: Dmitri Shuralyov <[email protected]>
    mjl- authored and matloob committed Nov 1, 2024
    Configuration menu
    Copy the full SHA
    dec0365 View commit details
    Browse the repository at this point in the history
Loading