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: rogpeppe/go-internal
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.8.0
Choose a base ref
...
head repository: rogpeppe/go-internal
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.8.1
Choose a head ref
  • 5 commits
  • 30 files changed
  • 5 contributors

Commits on Mar 29, 2021

  1. testscript: workaround quardratic behaviour of github.com/pkg/diff (#137

    )
    
    The current version of github.com/pkg/diff.Diff has quadratic behaviour.
    This means that when we attempt a diff between relatively modest sized
    files, it's easy to find yourself out of memory.
    
    Therefore, when we see a diff between two large files (large defined in
    terms of number of lines), tersely report that as if the two were binary
    files, i.e. do not try to render the diff.
    
    When github.com/pkg/diff or similar supports a linear algorithm:
    
    golang/go#45200 (comment)
    
    we can revert this change.
    myitcv authored Mar 29, 2021
    Configuration menu
    Copy the full SHA
    cca5496 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2021

  1. Configuration menu
    Copy the full SHA
    9df06c3 View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2021

  1. testscript: add support for Go master aka 1.18

    Fuzzing support brought a new parameter to MainStart,
    as well as more methods on testDeps.
    Use build tags to support those without breaking 1.16 nor 1.17.
    
    While at it, bump CI to test the two latest Go versions,
    and run 1.17's gofmt, as CI demands it.
    
    Finally, make CI also test with Go's master version,
    to ensure that we are compatible with it.
    We pin a specific commit, since that keeps CI stable.
    
    Fixes #144.
    
    Co-authored-by: Roger Peppe <rogpeppe@gmail.com>
    mvdan and rogpeppe committed Sep 23, 2021
    Configuration menu
    Copy the full SHA
    86f73c5 View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2021

  1. testscript: adapt to another Go 1.18 tip change

    In https://go-review.googlesource.com/c/go/+/354632,
    one of the struct field names in corpusEntry got renamed.
    
    A minor change with a very easy fix.
    Still, this probably signals that we shouldn't release a tagged version
    with Go 1.18 support just yet, as it's still in flux.
    
    Bump the Go tip version we test against, too.
    mvdan committed Oct 14, 2021
    Configuration menu
    Copy the full SHA
    426834f View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2021

  1. imports: Update goosList and goarchList

    twpayne authored and mvdan committed Oct 23, 2021
    Configuration menu
    Copy the full SHA
    115ce09 View commit details
    Browse the repository at this point in the history
Loading