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

On to the next release #145

Merged
merged 1 commit into from
Jan 17, 2023
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
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions limitador/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

Notable changes to Limitador will be tracked in this document.

## 0.3.0 - 2022-12-20

- Added Infinispan limits storage (first version) [#38](https://github.com/Kuadrant/limitador/pull/38) [#43](https://github.com/Kuadrant/limitador/pull/43) [#44](https://github.com/Kuadrant/limitador/pull/44) [#45](https://github.com/Kuadrant/limitador/pull/45)
- Perform semver-compatible dependency updates and move to edition 2021 [#51](https://github.com/Kuadrant/limitador/pull/51)
- Update Limitador to Tokio 1 async reactor [#54](https://github.com/Kuadrant/limitador/pull/54)
- Impl `From<&str>` for `Namespace` instead of `FromStr` as it can't fail [#76](https://github.com/Kuadrant/limitador/pull/76)
- `RaterLimiter` to take a `&Namespace` [#77](https://github.com/Kuadrant/limitador/pull/77)
- Keeps all Limits in memory only [#78](https://github.com/Kuadrant/limitador/pull/78)
- Removed lifecycles from public types [#80](https://github.com/Kuadrant/limitador/pull/80)
- `Limit`'s `max_value` and `name` fields play no role in their identity… [#93](https://github.com/Kuadrant/limitador/pull/93)
- Scanner based parsing of `Limit`'s conditions [#109](https://github.com/Kuadrant/limitador/pull/109)
- Add support for `!=` in conditions [#113](https://github.com/Kuadrant/limitador/pull/113)
- Bubble error up when connecting to Redis fails [#130](https://github.com/Kuadrant/limitador/pull/130)

## 0.2.0 - 2021-03-08

### Added
Expand Down
2 changes: 1 addition & 1 deletion limitador/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "limitador"
version = "0.3.0-rc1"
version = "0.4.0-dev"
authors = ["David Ortiz <[email protected]>", "Eguzki Astiz Lezaun <[email protected]>", "Alex Snaps <[email protected]>"]
license = "Apache-2.0"
keywords = ["rate-limiting", "rate", "limiter"]
Expand Down