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: mattn/go-isatty
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.0.14
Choose a base ref
...
head repository: mattn/go-isatty
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.0.19
Choose a head ref
  • 17 commits
  • 5 files changed
  • 5 contributors

Commits on Sep 29, 2021

  1. Use correct field to specify Go version in GitHub action

    There is a typo in the actions/setup-go step which leads to the Go
    version not being picked up correctly. Fix it.
    
    Also enable testing with Go 1.17.
    tklauser committed Sep 29, 2021
    Configuration menu
    Copy the full SHA
    65c33a1 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #67 from tklauser/fix-go-version-gh-action

    Use correct field to specify Go version in GitHub action
    mattn authored Sep 29, 2021
    Configuration menu
    Copy the full SHA
    d423e9c View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2021

  1. Update go.sum after golang.org/x/sys update

    PR #66 updated the golang.org/x/sys dependency in go.mod but didn't
    update go.sum. This leads to the following error on running go.test.sh:
    
        go: golang.org/x/sys@v0.0.0-20210630005230-0f9fa26af87c: missing go.sum entry; to add it:
        	go mod download golang.org/x/sys
        go: golang.org/x/sys@v0.0.0-20210630005230-0f9fa26af87c: missing go.sum entry; to add it:
        	go mod download golang.org/x/sys
    
    Fix this by running go get -u && go mod tidy to update golang.org/x/sys
    and clean up go.sum.
    tklauser committed Oct 5, 2021
    Configuration menu
    Copy the full SHA
    689cfc2 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2021

  1. Merge pull request #68 from tklauser/fix-go.sum

    Update go.sum after golang.org/x/sys update
    mattn authored Nov 21, 2021
    Configuration menu
    Copy the full SHA
    cdb00f1 View commit details
    Browse the repository at this point in the history

Commits on Aug 15, 2022

  1. Configuration menu
    Copy the full SHA
    89699b9 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #75 from tjni/update-x-sys

    Update golang.org/x/sys for Go 1.18 on M1 Macs.
    mattn authored Aug 15, 2022
    Configuration menu
    Copy the full SHA
    f001b72 View commit details
    Browse the repository at this point in the history
  3. update GitHub Workflow

    mattn committed Aug 15, 2022
    Configuration menu
    Copy the full SHA
    47c6087 View commit details
    Browse the repository at this point in the history
  4. bump

    mattn committed Aug 15, 2022
    Configuration menu
    Copy the full SHA
    13e91bf View commit details
    Browse the repository at this point in the history

Commits on Dec 29, 2022

  1. Support GNU/Hurd

    sthibaul committed Dec 29, 2022
    Configuration menu
    Copy the full SHA
    f646acc View commit details
    Browse the repository at this point in the history
  2. Merge pull request #78 from sthibaul/master

    Support GNU/Hurd
    mattn authored Dec 29, 2022
    Configuration menu
    Copy the full SHA
    ed75e61 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2023

  1. deps: use a tagged version of golang.org/x/sys

    go get golang.org/x/sys@latest && go mod tidy
    dolmen committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    ddec212 View commit details
    Browse the repository at this point in the history
  2. CI: drop Go 1.15, 1.16

    Drop support of Go 1.15, 1.16 because of recent golang.org/x/sys which
    stopped supporting them.
    dolmen committed Mar 14, 2023
    Configuration menu
    Copy the full SHA
    1f92190 View commit details
    Browse the repository at this point in the history

Commits on Mar 15, 2023

  1. CI: add Go 1.20

    dolmen committed Mar 15, 2023
    Configuration menu
    Copy the full SHA
    77d7704 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #83 from dolmen-go/ci-add-go1.20

    CI: add Go 1.20
    mattn authored Mar 15, 2023
    Configuration menu
    Copy the full SHA
    c84e2cc View commit details
    Browse the repository at this point in the history

Commits on Mar 22, 2023

  1. Merge pull request #82 from dolmen-go/upgrade-x-sys-tagged

    deps: use a tagged version of golang.org/x/sys
    mattn authored Mar 22, 2023
    Configuration menu
    Copy the full SHA
    72a590e View commit details
    Browse the repository at this point in the history
  2. tests: log value of IsTerminal

    Just log the output of IsTerminal in TestTerminal.
    
    $ go test -v -run TestTerminal
    === RUN   TestTerminal
        isatty_others_test.go:13: os.Stdout: true
    --- PASS: TestTerminal (0.00s)
    PASS
    ok  	github.com/mattn/go-isatty	0.160s
    $ go test -v -run TestTerminal | cat
    === RUN   TestTerminal
        isatty_others_test.go:13: os.Stdout: false
    --- PASS: TestTerminal (0.00s)
    PASS
    ok  	github.com/mattn/go-isatty	0.203s
    dolmen committed Mar 22, 2023
    Configuration menu
    Copy the full SHA
    42997b3 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #86 from dolmen-go/testing-log-result

    tests: log value of IsTerminal
    mattn authored Mar 22, 2023
    Configuration menu
    Copy the full SHA
    c067b4f View commit details
    Browse the repository at this point in the history
Loading