-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #39 from obervinov/fix/v2.0.4
# PR-37: Bug fixes and dependency version bump ## v2.0.4 - 2024-03-24 ### What's Changed **Full Changelog**: v2.0.3...v2.0.4 by @obervinov in #39 #### 🚀 Features * add custom exceptions #### 🐛 Bug Fixes * [Incorrect record of authentication events and user authorization in Vault data](#37) * [Error when call `rl_controller.determine_rate_limit()`](#38) * Fixes various RateLimit class bugs related to request accounting and operation of request counters * A little tests refactoring
- Loading branch information
Showing
10 changed files
with
786 additions
and
658 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[tool.poetry] | ||
name = "users" | ||
version = "2.0.3" | ||
version = "2.0.4" | ||
description = "This python module is a simple implementation of user management functionality for telegram bots, such as: authentication, authorization and request limiting." | ||
authors = ["Bervinov Oleg <[email protected]>"] | ||
maintainers = ["Bervinov Oleg <[email protected]>"] | ||
|
@@ -18,8 +18,12 @@ include = ["CHANGELOG.md"] | |
|
||
[tool.poetry.dependencies] | ||
python = "^3.9 || ^3.10 || ^3.11" | ||
logger = { git = "https://github.com/obervinov/logger-package.git", tag = "v1.0.5" } | ||
vault = { git = "https://github.com/obervinov/vault-package.git", tag = "v2.0.3" } | ||
pytest = "^8" | ||
logger = { git = "https://github.com/obervinov/logger-package.git", tag = "v1.0.6" } | ||
vault = { git = "https://github.com/obervinov/vault-package.git", tag = "v2.0.4" } | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^8.0.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
|
Oops, something went wrong.