Skip to content

Tags: bitfield/script

Tags

v0.24.3

Toggle v0.24.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Lowered go.mod to 1.25.0 (#242)

* Lowered go.mod to 1.25.0

This restores support for consumers still using Go 1.25. The previous bump to `go 1.26.4` forced all consumers of this library to use Go 1.26 or newer.
The codebase does not use any Go 1.26-specific features, making the `1.26` language requirement unnecessary.

`go1.25.11` contains the same critical security patches as `go1.26.4` (fixing vulnerabilities in `crypto/x509`, `net/textproto`, and `mime`).
Go's toolchain auto-switching (introduced in Go 1.21) will automatically download and use `go1.25.11` for developers working on this module if their local toolchain is older, ensuring they build with the secure version without forcing a major Go upgrade.

* Changed toolchain to 1.26.4

This makes govulncheck work even for users with go1.26.{0-3}

v0.24.2

Toggle v0.24.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bump to go1.26.4 for GO-2026-5037, GO-2026-5039 (#241)

v0.24.1

Toggle v0.24.1's commit message
update changelog

v0.24.0

Toggle v0.24.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
update readme (#219)

v0.23.0

Toggle v0.23.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
release v0.23

v0.22.1

Toggle v0.22.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update First(n int) to read no more data than necessary (#199)

First(N) now closes its output after it has read N lines, terminating the pipe 
without consuming unnecessary further input (apart from the 4KiB scanner 
buffer).

Co-authored-by: John Arundel <john@bitfieldconsulting.com>

v0.22.0

Toggle v0.22.0's commit message
Refactor

v0.21.4

Toggle v0.21.4's commit message
Filter: preserve previous error if func succeeds

v0.21.3

Toggle v0.21.3's commit message
Report ExecForEach command exit errors to the pipe

v0.21.2

Toggle v0.21.2's commit message
short-circuit on error (fixes #141)