Goawk Versions Save

A POSIX-compliant AWK interpreter written in Go, with CSV support

v1.27.0

4 weeks ago

What's changed

Full Changelog: https://github.com/benhoyt/goawk/compare/v1.26.0...v1.27.0

v1.26.0

2 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/benhoyt/goawk/compare/v1.25.0...v1.26.0

v1.25.0

7 months ago

This release includes several minor changes:

  • Build binaries with PGO on Go 1.21. GoAWK on Go 1.21 is about 10% faster than on Go 1.20, and PGO makes it another 5-6% faster.
  • Bumps up the minimum supported Go version from 1.15 to 1.16.
  • Makes the return value of system() and close() for pipes more closely match Gawk's. Internal refactoring of the input and output stream implementation to make this happen. See issues #203 #204 #205 and thanks @juster!
  • Support the \u Unicode string escape that's been added to onetrueawk and Gawk recently. #212

v1.24.0

10 months ago

This release contains several minor fixes and the addition of --csv (it's an alias for -i csv). This is for compatibility with onetrueawk and Gawk, which are both adding that option soon.

It also contains a minor backwards-incompatible change: in CSV input mode (-i csv), the behaviour of the two-argument form of split() now parses using CSV splitting, rather than FS. This is also in line with the upcoming --csv feature of onetrueawk and Gawk. This is very unlikely to affect anyone, as CSV mode is relatively recent, and it seems unlikely that anyone is using the two-argument form of split() in CSV mode in any case.

Full list of changes:

v1.23.3

11 months ago

This is a patch version that fixes panics when compiling AWK code that uses complex, mutually-recursive functions (fixed in PR #187). Thanks @xonixx for the test case.

v1.23.2

11 months ago

This is patch release to fix a bug where mutually-recursive functions would cause an "undefined function" error in the resolver (PR #184). Thanks @xonixx for the bug report (#183).

v1.23.1

1 year ago

This is a patch release that fixes a bug in 1.23.0 -- there was a bug that caused a panic in the resolver step with code like function f1(A) {} function f2(x, A) { x[0]; f1(a); f2(a) }. Fixed in #178.

While we're at it, also fix a panic with certain obscure regexes (#179) and limit ARGC to a reasonable maximum (#180).

All three of these issues were found by fuzzing: go test ./interp -fuzz=FuzzSource

v1.23.0

1 year ago

This release adds a single new feature: support for length(array) in addition to length(string) (#176). Calling length() on an array is quite useful and is supported by all other awk versions (onetrueawk, Gawk, mawk, busybox awk, frawk). In addition, it's been accepted for inclusion into POSIX, though not yet added to the main spec (which seems to take forever).

This release also includes a complete rewrite of the type resolver (#175). Before the code was quite messy and hard to read, now with the two passes I think it's easier to understand and work with. It was certainly easier to add the length(array) feature with the rewritten resolver than before.

v1.22.0

1 year ago

A fairly minor release, fixing some edge cases and adding support for nextfile:

  • Make constructs like $++lvalue not an error (#168)
  • Optimize constant integer array indexes to avoid toString() at runtime (#169)
  • Allow parsing of cond && var=value and similar expressions (#170)
  • Add GroupingExpr to fix (a)++b parsing issue; pretty-print precedence (#172)
  • Add support for nextfile (#173)

See full list of commits.

v1.21.0

1 year ago

Significant changes in this release: