Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to kafka 3.8 #75

Merged
merged 3 commits into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Unreleased

- Update protocol to kafka 3.8.0

## v0.12.0

- Add `client` feature to enable encoding of requests and decoding of responses (enabled by default)
Expand Down Expand Up @@ -40,12 +44,15 @@ and other misc improvements.
- Update `derive-builder`.

## v0.8.2

- Expose protocol::buf::gap module.

## v0.8.1

- Re-export `indexmap` as part of the public api.

## v0.8.0

- Implement Zstd and Lz4 compression.

## v0.7.0
Expand Down Expand Up @@ -85,20 +92,19 @@ with protocol upgrades.

- Add utilities for dealing with response error codes.

## v0.3.0
## v0.3.0

#### Enhancements:
#### Enhancements

- Build messages from crate root.
- Upgrade to latest version of Kafka protocol.

## v0.2.0

## v0.2.0

#### Enhancements:
#### Enhancements

- Add derive builder for all messages.

## v0.1.0

Initial release.
Initial release.
4 changes: 2 additions & 2 deletions protocol_codegen/src/generate_messages.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ pub fn run() -> Result<(), Error> {
};

// Checkout the release commit
// https://github.com/apache/kafka/releases/tag/3.7.0
// https://github.com/apache/kafka/releases/tag/3.8.0
// checking out a tag with git2 is annoying -- we pin to the tag's commit sha instead
let release_commit = "2ae524ed625438c5fee89e78648bd73e64a3ada0";
let release_commit = "771b9576b00ecf5b64ab6e8bedf04156fbdb5cd6";
println!("Checking out release {}", release_commit);
let oid = Oid::from_str(release_commit).unwrap();
let commit = repo
Expand Down
Loading