Skip to content

Commit

Permalink
Merge pull request #39 from obervinov/fix/v2.0.4
Browse files Browse the repository at this point in the history
# 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
obervinov authored Mar 24, 2024
2 parents 107dab1 + 1cf4eb5 commit 9f4202d
Show file tree
Hide file tree
Showing 10 changed files with 786 additions and 658 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).


## v2.0.4 - 2024-03-24
### What's Changed
**Full Changelog**: https://github.com/obervinov/users-package/compare/v2.0.3...v2.0.4 by @obervinov in https://github.com/obervinov/users-package/pull/39
#### 🚀 Features
* add custom exceptions
#### 🐛 Bug Fixes
* [Incorrect record of authentication events and user authorization in Vault data](https://github.com/obervinov/users-package/issues/37)
* [Error when call `rl_controller.determine_rate_limit()`](https://github.com/obervinov/users-package/issues/38)
* Fixes various RateLimit class bugs related to request accounting and operation of request counters
* A little tests refactoring



## v2.0.3 - 2024-02-05
### What's Changed
**Full Changelog**: https://github.com/obervinov/users-package/compare/v2.0.2...v2.0.3 by @obervinov in https://github.com/obervinov/users-package/pull/36
Expand Down
99 changes: 54 additions & 45 deletions README.md

Large diffs are not rendered by default.

235 changes: 165 additions & 70 deletions poetry.lock

Large diffs are not rendered by default.

10 changes: 7 additions & 3 deletions pyproject.toml
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]>"]
Expand All @@ -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"]
Expand Down
Loading

0 comments on commit 9f4202d

Please sign in to comment.