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

Version 2.4.0 #248

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
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
florimondmanca marked this conversation as resolved.
Show resolved Hide resolved

### 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)
florimondmanca marked this conversation as resolved.
Show resolved Hide resolved
- 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"
florimondmanca marked this conversation as resolved.
Show resolved Hide resolved

__all__ = ["__version__", "default_app_config"]