Skip to content
This repository was archived by the owner on Dec 1, 2021. It is now read-only.
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: pkg/errors
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.8.0
Choose a base ref
...
head repository: pkg/errors
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.8.1
Choose a head ref
  • 18 commits
  • 8 files changed
  • 17 contributors

Commits on Oct 2, 2016

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

Commits on Oct 29, 2016

  1. Bump Go versions (#91)

    AlekSi authored and davecheney committed Oct 29, 2016
    Configuration menu
    Copy the full SHA
    248dadf View commit details
    Browse the repository at this point in the history

Commits on Feb 27, 2017

  1. Move benchmark assigned err to global exported variable (#106)

    toperr is not used, but the go compiler itself doesn't detect this
    because it's within an anonymous function. However, go/types does
    detect this as being unused, which causes any static analysis tools
    which uses go/types' type checker to fail with the message "toperr
    assigned and not used".
    
    The final result of the benchmarked function is instead assigned to
    an exported global variable to ensure the compiler cannot now, nor
    in the future optimise away the function calls due to no observable
    side effects.
    
    It was chosen to assign the final result, after the benchmark loop,
    to the global variable, as this best follows the example set in the
    CL https://go-review.googlesource.com/#/c/37195/. As opposed to
    having each call to f assign to the global. This also appears to
    better align with the original author's intention of toperr.
    
    This change had no observable impact on the benchmark.
    
    Related golang/go#3059.
    Related golang/go#8560.
    
    Thanks dominikh for additional clarifications.
    bradleyfalzon authored and davecheney committed Feb 27, 2017
    Configuration menu
    Copy the full SHA
    bfd5150 View commit details
    Browse the repository at this point in the history

Commits on Mar 16, 2017

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

Commits on May 5, 2017

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

Commits on Sep 10, 2017

  1. travis: add 1.9.x to go versions (#133)

    dvrkps authored and davecheney committed Sep 10, 2017
    Configuration menu
    Copy the full SHA
    2b3a18b View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2017

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

Commits on Dec 9, 2017

  1. Fix doc comment for exported Format func (#137)

    Fixes #136
    
    Signed-off-by: Tibor Benke <[email protected]>
    ihrwein authored and davecheney committed Dec 9, 2017
    Configuration menu
    Copy the full SHA
    e4f5060 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2017

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

Commits on Dec 16, 2017

  1. Fix minor typo in README.md (#142)

    Signed-off-by: TomSweeneyRedHat <[email protected]>
    TomSweeneyRedHat authored and davecheney committed Dec 16, 2017
    Configuration menu
    Copy the full SHA
    e881fd5 View commit details
    Browse the repository at this point in the history

Commits on Jan 27, 2018

  1. Remove deadcode (#146)

    philoserf authored and davecheney committed Jan 27, 2018
    Configuration menu
    Copy the full SHA
    30136e2 View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2018

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

Commits on Sep 11, 2018

  1. fixed spelling (#156)

    beono authored and davecheney committed Sep 11, 2018
    Configuration menu
    Copy the full SHA
    c059e47 View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2018

  1. Add WithMessagef function (#118)

    WithMessagef utility function to accompany WithMessage, similar to
    exiting Wrapf function accompanying Wrap.
    chemicL authored and davecheney committed Oct 8, 2018
    Configuration menu
    Copy the full SHA
    e981d1a View commit details
    Browse the repository at this point in the history
  2. Copyedit the package documentation (#135)

    Remove spurious words, add missing words, and smooth out a few
    sentences.
    seh authored and davecheney committed Oct 8, 2018
    Configuration menu
    Copy the full SHA
    2233dee View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2018

  1. Bump Travis versions (#172)

    HaraldNordgren authored and davecheney committed Oct 20, 2018
    Configuration menu
    Copy the full SHA
    d58f942 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2018

  1. Update .travis.yml (#168)

    komuw authored and davecheney committed Oct 23, 2018
    Configuration menu
    Copy the full SHA
    059132a View commit details
    Browse the repository at this point in the history

Commits on Jan 3, 2019

  1. gofmt -w errors.go (#179)

    tariq1890 authored and davecheney committed Jan 3, 2019
    Configuration menu
    Copy the full SHA
    ba968bf View commit details
    Browse the repository at this point in the history
Loading