Skip to content

[pull] master from jazzband:master #46

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

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
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
9 changes: 7 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
# CHANGELOG

## Unreleased

## v3.0.1 (2025-07-01)
* Drop dependency on `typing_extensions`.

## v3.0.0 (2025-05-18)
> Bumping to version 3; changes to code do break some API compatability.
* Implement a new decorator registry pattern to impement checks on database connection string.
* You can now support and implement your own database strings by extending the @register functionality.
* Update supported python versions and django versions.

## v2.3.0 (2024-10-23)
* Remove Python 3.8 support.
* Remove Django 3 support.
Expand Down
4 changes: 1 addition & 3 deletions dj_database_url/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
import logging
import os
import urllib.parse as urlparse
from typing import Any, Callable, Dict, List, Optional, Union

from typing_extensions import TypedDict
from typing import Any, Callable, Dict, List, Optional, TypedDict, Union

DEFAULT_ENV = "DATABASE_URL"
ENGINE_SCHEMES: Dict[str, "Engine"] = {}
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

setup(
name="dj-database-url",
version="2.3.0",
version="3.0.1",
url="https://github.com/jazzband/dj-database-url",
license="BSD",
author="Original Author: Kenneth Reitz, Maintained by: JazzBand Community",
Expand Down Expand Up @@ -45,5 +45,6 @@
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
)