Skip to content

Tags: orlangure/gocovsh

Tags

v0.6.1

Toggle v0.6.1's commit message

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
fix: update catppuccin

Signed-off-by: Carlos A Becker <[email protected]>

v0.6.0

Toggle v0.6.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
orlangure Yury Fedorov
Use latest cosign-installer action in goreleaser

v0.5.1

Toggle v0.5.1's commit message
Fix requested files parsing

Adding `git diff` parser broke `git diff --name-only` flow... This
commit allows to use both, depending on the input.

v0.5.0

Toggle v0.5.0's commit message
Accept `git diff` as input

This commit allows to pipe `git diff` command output into gocovsh to
display only changed portions of changed files. It might be helpful when
actively working on a feature to determine its coverage quickly, while
disregarding the rest of the code.

v0.4.1

Toggle v0.4.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use go mod proxying

This enables read build info both on binaries built by goreleaser, as
well as installed with `go install` directly.

More info: https://carlosbecker.com/posts/supply-chain-goreleaser-go-mod-proxy/

Signed-off-by: Carlos A Becker <[email protected]>

v0.4.1-alpha1

Toggle v0.4.1-alpha1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use go mod proxying

This enables read build info both on binaries built by goreleaser, as
well as installed with `go install` directly.

More info: https://carlosbecker.com/posts/supply-chain-goreleaser-go-mod-proxy/

Signed-off-by: Carlos A Becker <[email protected]>

v0.4.0

Toggle v0.4.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support sorting files by coverage

* feat: sort by percentage (lowest to highest)

* feat: percentages before file name

* feat: sort as a flag

* removed modfied test

* ci: updated golangci-lint version

#30

v0.3.0

Toggle v0.3.0's commit message

Verified

This commit was signed with the committer’s verified signature. The key has expired.
orlangure Yury Fedorov
Revert "Use Go 1.18"

This reverts commit 3de1237.

v0.2.1

Toggle v0.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix line endings bug on Windows

This commit allows to properly parse package names, 
regardless of line endings (`\r\n` or `\n`) used in the 
`go.mod` file.

v0.2.0

Toggle v0.2.0's commit message
Add coverage percentage to files in the list

To calculate the percentage, I took the code from golang's built-in
coverage tool (html generator).