Skip to content

Commit

Permalink
extract rdkafka changelog
Browse files Browse the repository at this point in the history
Signed-off-by: Runji Wang <[email protected]>
  • Loading branch information
wangrunji0408 committed May 8, 2024
1 parent 8722ca7 commit d089b6b
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 60 deletions.
60 changes: 0 additions & 60 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix unaligned pointer access in getrandom.

## rdkafka [0.4.1] - 2024-05-08

### Fixed

- Add missing methods in `ClientContext`.

## rdkafka [0.4.0] - 2024-05-07

### Changed

- The associated constant `ClientContext::ENABLE_REFRESH_OAUTH_TOKEN` is changed to a function in order to make the trait object-safe.

## tokio [0.2.25] - 2024-04-08

### Removed
Expand All @@ -34,30 +22,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix the problem that `getrandom` returns different values in multiple runs with the same seed.

## rdkafka [0.3.4] - 2024-03-22

### Fixed

- Fix unintended drop of client in `fetch_watermarks`.

## madsim [0.2.26] - 2024-03-18

### Fixed

- `sleep` and `sleep_until` now sleep for at least 1ms to be consistent with tokio's behavior.

## rdkafka [0.3.3] - 2024-02-28

### Changed

- Wrap `fetch_watermarks` in `tokio::task::spawn_blocking`.

## rdkafka [0.3.2] - 2024-02-28

### Changed

- Update librdkafka to v2.3.0.

## tonic [0.4.2] tonic-build [0.4.3] - 2024-02-27

### Changed
Expand All @@ -76,13 +46,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Fix intercepting time on x86_64 macOS, Rust 1.75.0.

## rdkafka [0.3.1] - 2024-01-05

### Fixed

- Add `rdkafka::message::{Header, HeaderIter}` and `BorrowedHeaders::detach`.
- Fix `rdkafka::message::Headers` trait.

## aws-sdk-s3 [0.4.0] - 2023-11-24

### Changed
Expand All @@ -107,21 +70,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- tokio: Add `Runtime::enter` API.

## rdkafka [0.3.0] - 2023-10-11

### Added

- Add statistics API.
- Add future producer API.

### Changed

- Update `rdkafka` to v0.34.0 and `librdkafka` to v2.2.0.

### Fixed

- Fix the error type of `DeliveryFuture`.

## tonic-build [0.4.2] - 2023-10-08

### Added
Expand Down Expand Up @@ -200,7 +148,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- madsim: Add `restart_on_panic_matching` to support auto restarting on panic with certain messages.
- rdkafka: Add `producer::DeliveryResult` and fix `ProducerContext`.


## [0.2.21] - 2023-04-14
Expand Down Expand Up @@ -303,12 +250,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- etcd: Add `KeyValue::{lease, create_revision, mod_revision}` API.
- etcd: Add maintenance `status` API.
- rdkafka: Add `Timestamp::to_millis`.

### Changed

- rdkafka: update to rdkafka v0.29.0.
- The return type of `Producer::flush` changed to `KafkaResult<()>`.

### Fixed

Expand Down Expand Up @@ -358,7 +299,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Add simulation crate of `rdkafka`.
- etcd: Add lease and election API.
- madsim: Expose `JoinHandle::cancel_on_drop`.

Expand Down
88 changes: 88 additions & 0 deletions madsim-rdkafka/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.4.1] - 2024-05-08

### Fixed

- Add missing methods in `ClientContext`.

## [0.4.0] - 2024-05-07

### Changed

- The associated constant `ClientContext::ENABLE_REFRESH_OAUTH_TOKEN` is changed to a function in order to make the trait object-safe.

## [0.3.4] - 2024-03-22

### Fixed

- Fix unintended drop of client in `fetch_watermarks`.

## [0.3.3] - 2024-02-28

### Changed

- Wrap `fetch_watermarks` in `tokio::task::spawn_blocking`.

## [0.3.2] - 2024-02-28

### Changed

- Update librdkafka to v2.3.0.

## [0.3.1] - 2024-01-05

### Fixed

- Add `rdkafka::message::{Header, HeaderIter}` and `BorrowedHeaders::detach`.
- Fix `rdkafka::message::Headers` trait.

## [0.3.0] - 2023-10-11

### Added

- Add statistics API.
- Add future producer API.

### Changed

- Update `rdkafka` to v0.34.0 and `librdkafka` to v2.2.0.

### Fixed

- Fix the error type of `DeliveryFuture`.

## [0.2.22] - 2023-04-19

### Added

- Add `producer::DeliveryResult` and fix `ProducerContext`.

## [0.2.14] - 2023-01-30

### Fixed

- Resolve DNS on connection.

## [0.2.13] - 2023-01-11

### Added

- Add `Timestamp::to_millis`.

### Changed

- update to rdkafka v0.29.0.
- The return type of `Producer::flush` changed to `KafkaResult<()>`.

## [0.2.8] - 2022-09-26

### Added

- Add simulation crate of `rdkafka`.

0 comments on commit d089b6b

Please sign in to comment.