Skip to content
New issue

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

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

Already on GitHub? # to your account

release: governor v0.8.0 #253

Merged
merged 2 commits into from
Dec 10, 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
21 changes: 21 additions & 0 deletions governor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@

## [Unreleased] - ReleaseDate

## [[0.8.0](https://docs.rs/governor/0.8.0/governor/)] - 2024-12-10

### Changed

* Fixed the long-standing confusion of rate-limiting "tolerance"
vs. "burst capacity": Tolerance is indicated with one cell less than
burst capacity would be. The code treated the two as the same thing,
leading to spurious single cells being allowed through when the
clock advanced.
([#107](https://github.com/boinkor-net/governor/issues/107),
[#249](https://github.com/boinkor-net/governor/issues/249)). This
confusion has finally been identified and fixed by @jonasmalacofilho
in [#251](https://github.com/boinkor-net/governor/pull/251).

This should not affect the public API, but any clients subject to
rate-limiting may see a slightly fairer treatment.

### Contributors

* [@jonasmalacofilho](https://github.com/jonasmalacofilho)

## [[0.7.0](https://docs.rs/governor/0.7.0/governor/)] - 2024-10-21

This is a quick bug-fix release to address the semver incompatibility
Expand Down
2 changes: 1 addition & 1 deletion governor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "governor"
version = "0.7.0"
version = "0.8.0"
authors = ["Andreas Fuchs <asf@boinkor.net>"]
edition = "2018"
license = "MIT"
Expand Down
Loading