cpubench1A icon indicating copy to clipboard operation
cpubench1A copied to clipboard

fix(deps): bump github.com/benhoyt/goawk from 1.27.0 to 1.29.0

Open dependabot[bot] opened this issue 5 months ago • 0 comments

Bumps github.com/benhoyt/goawk from 1.27.0 to 1.29.0.

Release notes

Sourced from github.com/benhoyt/goawk's releases.

v1.29.0: opt-in Unicode chars mode

This release adds Unicode chars mode with goawk -c (or by setting Config.Chars to true when using the Go API). The default is bytes mode as it was before (except that printf %c used chars mode by default as of v1.28.0 -- now it only does if chars mode is enabled). Note that this is the same default as mawk, but the opposite of Gawk (which uses gawk -b to switch to bytes mode).

Chars mode applies to index(), length(), match() (including RSTART and RLENGTH), substr(), and printf's %c verb.

For example, as of version v1.29.0, you can do this:

$ goawk 'BEGIN { print length("a"), length("絵") }'
1 3
$ goawk -c 'BEGIN { print length("a"), length("絵") }'
1 1

Full Changelog: https://github.com/benhoyt/goawk/compare/v1.28.1...v1.29.0

v1.28.1

I forgot to bump up the version number for the v1.28.0 release, so this is a patch release with a single commit to do just that.

See also the release notes for the v1.28.0 release.

v1.28.0

NOTE: The original binaries were for the v1.28.0 tag, but had the old v1.27.0 version number in the file names (and in the goawk -version output). I've uploaded corrected v1.28.0 binaries here, but there's also a new v1.28.1 patch release with this fixed.

What's Changed

New Contributors

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

Commits
  • b0f1c00 Bump up version for v1.29.0 release
  • 0df77ff Add Unicode chars mode: "goawk -c" or Config.Chars=true (#243)
  • e957268 Bump up version number; forgot to do this for release, so go to v1.28.1
  • 7f49055 Bump up minimum supported Go version to 1.18, and test on 1.23
  • 012adf2 Make srand() use unix time in seconds, and set seed for next srand() (#241)
  • 6e1b1b4 Add printf %i, %a, %A; Fix %o, %x, %X (they should be unsigned) (#240)
  • 6655acf Improve error message when missing -H or in BEGIN (#239)
  • f39db9b Make printf %c work on Unicode codepoints (#236)
  • 63ba648 Fix number formatting on non-64bit architectures (#235)
  • 1de11b9 Bump up minimum supported Go version to 1.17, and test on 1.22 (#233)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

dependabot[bot] avatar Sep 19 '24 10:09 dependabot[bot]