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

Commits on Jul 5, 2023

  1. all: update go version to 1.18

    Go versions 1.16 and 1.17 are long since unsupported per Go release
    policy (https://go.dev/doc/devel/release#policy).
    
    Updating go.mod's go statement to 1.18 makes it so that 'go mod tidy'
    doesn't include checksums needed for the full module graph loaded by
    Go 1.16¹ that were recently added in CL 507840.
    
    It also makes go fix remove the now-obsolete // +build lines².
    
    Done using cmd/go at go1.21rc2:
    
    $ go get go@1.18
    go: upgraded go 1.17 => 1.18
    $ go mod tidy
    $ go fix ./...
    google/appengine_gen1.go: fixed buildtag
    google/appengine_gen2_flex.go: fixed buildtag
    internal/client_appengine.go: fixed buildtag
    
    ¹ https://go.dev/ref/mod#graph-pruning
    ² https://go.dev/doc/go1.18#go-build-lines
    
    Change-Id: I6c6295adef1f5c64a196c2e66005763893efe5e7
    Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/507878
    Auto-Submit: Dmitri Shuralyov <dmitshur@golang.org>
    Reviewed-by: Cody Oss <codyoss@google.com>
    Run-TryBot: Dmitri Shuralyov <dmitshur@golang.org>
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Reviewed-by: Bryan Mills <bcmills@google.com>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    dmitshur authored and gopherbot committed Jul 5, 2023
    Configuration menu
    Copy the full SHA
    ac6658e View commit details
    Browse the repository at this point in the history

Commits on Aug 4, 2023

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

    Update golang.org/x dependencies to their latest tagged versions.
    Once this CL is submitted, and post-submit testing succeeds on all
    first-class ports across all supported Go versions, this repository
    will be tagged with its next minor version.
    
    Change-Id: I953aeb97bb9ed634f69dc93cf1f21392261c930c
    Reviewed-on: https://go-review.googlesource.com/c/oauth2/+/516037
    Reviewed-by: Dmitri Shuralyov <dmitshur@google.com>
    Run-TryBot: Gopher Robot <gobot@golang.org>
    Reviewed-by: Carlos Amedee <carlos@golang.org>
    Auto-Submit: Gopher Robot <gobot@golang.org>
    TryBot-Result: Gopher Robot <gobot@golang.org>
    gopherbot committed Aug 4, 2023
    Configuration menu
    Copy the full SHA
    2e4a4e2 View commit details
    Browse the repository at this point in the history
Loading