Skip to content

Commit

Permalink
Update kafka-franz and re-enable old ARM builds
Browse files Browse the repository at this point in the history
Some bug fixes [went in](https://github.com/twmb/franz-go/blob/master/CHANGELOG.md#v190)
following the PR I raised here: twmb/franz-go#223.

Since Travis was kind enough to also fix the old ARM builds, I
thought it should be fine to re-enable them by reverting 414cf1f.
  • Loading branch information
mihaitodor committed Oct 21, 2022
1 parent 890aeea commit f5bc75f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ builds:
main: cmd/benthos/main.go
binary: benthos
goos: [ windows, darwin, linux, freebsd, openbsd ]
goarch: [ amd64, arm64 ]
# goarch: [ amd64, arm, arm64 ]
# goarm: [ 6, 7 ]
goarch: [ amd64, arm, arm64 ]
goarm: [ 6, 7 ]
ignore:
- goos: windows
goarch: arm
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ All notable changes to this project will be documented in this file.
### Fixed

- The `gcp_cloud_storage` output no longer ignores errors when closing a written file, this was masking issues when the target bucket was invalid.
- Upgraded kafka-franz to use github.com/twmb/[email protected] since some [bug fixes](https://github.com/twmb/franz-go/blob/master/CHANGELOG.md#v190) were made recently.

## 4.9.1 - 2022-10-06

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ require (
github.com/snowflakedb/gosnowflake v1.6.6
github.com/stretchr/testify v1.8.0
github.com/tilinna/z85 v1.0.0
github.com/twmb/franz-go v1.8.0
github.com/twmb/franz-go v1.9.0
github.com/twmb/franz-go/pkg/kmsg v1.2.0
github.com/urfave/cli/v2 v2.11.0
github.com/vmihailenco/msgpack/v5 v5.3.5
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1049,8 +1049,8 @@ github.com/trivago/tgo v1.0.7 h1:uaWH/XIy9aWYWpjm2CU3RpcqZXmX2ysQ9/Go+d9gyrM=
github.com/trivago/tgo v1.0.7/go.mod h1:w4dpD+3tzNIIiIfkWWa85w5/B77tlvdZckQ+6PkFnhc=
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926/go.mod h1:9ESjWnEqriFuLhtthL60Sar/7RFoluCcXsuvEwTV5KM=
github.com/tv42/httpunix v0.0.0-20191220191345-2ba4b9c3382c/go.mod h1:hzIxponao9Kjc7aWznkXaL4U4TWaDSs8zcsY4Ka08nM=
github.com/twmb/franz-go v1.8.0 h1:58lABTO3YK179YmF+z/3EqL17ZbqhrmEDEdVHcd5tdA=
github.com/twmb/franz-go v1.8.0/go.mod h1:PMze0jNfNghhih2XHbkmTFykbMF5sJqmNJB31DOOzro=
github.com/twmb/franz-go v1.9.0 h1:q2X6DekP91zm3Jh1F7OxChgiBss3bteJv3sOc+VngRk=
github.com/twmb/franz-go v1.9.0/go.mod h1:PMze0jNfNghhih2XHbkmTFykbMF5sJqmNJB31DOOzro=
github.com/twmb/franz-go/pkg/kmsg v1.2.0 h1:jYWh2qFw5lDbNv5Gvu/sMKagzICxuA5L6m1W2Oe7XUo=
github.com/twmb/franz-go/pkg/kmsg v1.2.0/go.mod h1:SxG/xJKhgPu25SamAq0rrucfp7lbzCpEXOC+vH/ELrY=
github.com/ugorji/go v1.1.4/go.mod h1:uQMGLiO92mf5W77hV/PUCpI3pbzQx3CRekS0kk+RGrc=
Expand Down

0 comments on commit f5bc75f

Please sign in to comment.