Skip to content

Tags: IBM/sarama

Tags

v1.43.2

Toggle v1.43.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(ci): go mod tidy examples tree (#2883)

Signed-off-by: Dominic Evans <[email protected]>

v1.43.1

Toggle v1.43.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(ci): bump docker/setup-buildx-action from 3.0.0 to 3.2.0 (#2838)

Bumps [docker/setup-buildx-action](https://github.com/docker/setup-buildx-action) from 3.0.0 to 3.2.0.
- [Release notes](https://github.com/docker/setup-buildx-action/releases)
- [Commits](docker/setup-buildx-action@f95db51...2b51285)

---
updated-dependencies:
- dependency-name: docker/setup-buildx-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v1.43.0

Toggle v1.43.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(deps): bump github.com/klauspost/compress from 1.17.6 to 1.17.7 (

…#2811)

Bumps [github.com/klauspost/compress](https://github.com/klauspost/compress) from 1.17.6 to 1.17.7.
- [Release notes](https://github.com/klauspost/compress/releases)
- [Changelog](https://github.com/klauspost/compress/blob/master/.goreleaser.yml)
- [Commits](klauspost/compress@v1.17.6...v1.17.7)

---
updated-dependencies:
- dependency-name: github.com/klauspost/compress
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v1.42.2

Toggle v1.42.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(deps): bump go.opentelemetry.io/otel/exporters/stdout/stdoutmet…

…ric (#2792)

Bumps [go.opentelemetry.io/otel/exporters/stdout/stdoutmetric](https://github.com/open-telemetry/opentelemetry-go) from 0.42.0 to 1.23.1.
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@example/view/v0.42.0...v1.23.1)

---
updated-dependencies:
- dependency-name: go.opentelemetry.io/otel/exporters/stdout/stdoutmetric
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

v1.42.1

Toggle v1.42.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore: update CHANGELOG.md to v1.42.1 (#2711)

Signed-off-by: Dominic Evans <[email protected]>

v1.42.0

Toggle v1.42.0's commit message
chore(ci): add kafka 3.6.0 to FVT and versions

- add V3_6_0_0 to Sarama
- bump default dockerfile KAFKA_VERSION to 3.6.0
- pin ubi-minimal version and digest and include in dependabot
- pin apidiff cmd in that workflow
- fix some linter warnings in Dockerfile
- add USER 65534:65534 to Dockerfile for nobody user

Signed-off-by: Dominic Evans <[email protected]>

v1.41.3

Toggle v1.41.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(client): ignore empty Metadata responses when refreshing (#2672)

We should skip the metadata refresh if the startup phase broker returns empty brokers in metadata response. The Java client skips the empty response to update the metadata cache (https://github.com/apache/kafka/blob/trunk/clients/src/main/java/org/apache/kafka/clients/NetworkClient.java#L1149) and we should make a feature parity in Sarama too

Fixes #2664

Signed-off-by: Hao Sun <[email protected]>

v1.41.2

Toggle v1.41.2's commit message
fix: use least loaded broker to refresh metadata

Seed brokers never change after client initialization. If the first seed
broker became stale (still online, but moved to other Kafka cluster),
Sarama client may use this stale broker to get the wrong metadata. To
avoid using the stale broker to do metadata refresh, we will choose the
least loaded broker in the cached broker list which is the similar to
how the Java client implementation works:

https://github.com/apache/kafka/blob/7483991a/clients/src/main/java/org/apache/kafka/clients/NetworkClient.java#L671-L736

Contributes-to: #2637

Signed-off-by: Hao Sun <[email protected]>

v1.41.1

Toggle v1.41.1's commit message
fix: typo

Signed-off-by: Mark Hindess <[email protected]>

v1.41.0

Toggle v1.41.0's commit message
fix(docs): use go install for fetching tools

Install using go get is deprecated:
https://go.dev/doc/go-get-install-deprecation

Signed-off-by: Vigith Maurice <[email protected]>