cpubench1A
cpubench1A copied to clipboard
fix(deps): bump github.com/benhoyt/goawk from 1.27.0 to 1.29.0
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 settingConfig.Chars
to true when using the Go API). The default is bytes mode as it was before (except thatprintf %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 usesgawk -b
to switch to bytes mode).Chars mode applies to
index()
,length()
,match()
(includingRSTART
andRLENGTH
),substr()
, andprintf
'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
- Fix evaluation of empty {} and END{} by
@benhoyt
in benhoyt/goawk#230- fix: close file in Cover.WriteProfile by
@testwill
in benhoyt/goawk#232- Fix number formatting on non-64bit architectures by
@guilherme-puida
in benhoyt/goawk#235- Make printf %c work on Unicode codepoints by
@oliverkwebb
in benhoyt/goawk#236- Improve error message when missing -H or in BEGIN by
@benhoyt
in benhoyt/goawk#239- Add printf %i, %a, %A; Fix %o, %x, %X (they should be unsigned) by
@benhoyt
in benhoyt/goawk#240- Make srand() use unix time in seconds, and set seed for next srand() by
@benhoyt
in benhoyt/goawk#241- Bump up minimum supported Go version to 1.18, and test on 1.23 by
@benhoyt
in 7f4905588acb85c33b31dcd09e49b6224a91293bNew Contributors
@testwill
made their first contribution in benhoyt/goawk#232@oliverkwebb
made their first contribution in benhoyt/goawk#236Full Changelog: https://github.com/benhoyt/goawk/compare/v1.27.0...v1.28.0
Commits
b0f1c00
Bump up version for v1.29.0 release0df77ff
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.17f49055
Bump up minimum supported Go version to 1.18, and test on 1.23012adf2
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 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)