Skip to content

Commit

Permalink
Version 2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
florimondmanca committed Sep 12, 2023
1 parent 3a1609f commit 3db85fe
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,19 @@ 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/). This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## 2.4.0 - 2023-09-14

### Removed

- Dropped support for Python 3.7, which has reached EOL. (Pull #247)

### Added

- Add official support for Python 3.11. (Pull #247)

### Fixed

- Use faster SHA512-based key hasher instead of password hashers. Reduces server load by making API key validation orders of magnitude faster (10x to 30x according to estimations, network latency aside). (Pull #244)
- Drop redundant `.has_object_permission()` implementation on `BaseHasAPIKey` when using DRF 3.14.0 or above. (Pull #240)

## 2.3.0 - 2023-01-19
Expand Down
2 changes: 1 addition & 1 deletion src/rest_framework_api_key/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
if django.VERSION < (3, 2): # pragma: no cover
default_app_config = "rest_framework_api_key.apps.RestFrameworkApiKeyConfig"

__version__ = "2.3.0"
__version__ = "2.4.0"

__all__ = ["__version__", "default_app_config"]

0 comments on commit 3db85fe

Please sign in to comment.