diff --git a/CHANGELOG.md b/CHANGELOG.md index 36d59393..fcddb061 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,11 +4,6 @@ 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/). -### Added - -- Support for SQLAlchemy 2.0+ -- Added internal support for the new psycopg dialect. - ## 0.7.0 (Dec 18th, 2022) ### Fixed @@ -128,4 +123,4 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). * Fix type hinting for sqlite backend (#227) * Fix SQLAlchemy DDL statements (#226) * Make fetch_val call fetch_one for type conversion (#246) -* Unquote username and password in DatabaseURL (#248) +* Unquote username and password in DatabaseURL (#248) \ No newline at end of file diff --git a/tests/test_connection_options.py b/tests/test_connection_options.py index 584f6a90..e6fe6849 100644 --- a/tests/test_connection_options.py +++ b/tests/test_connection_options.py @@ -6,7 +6,6 @@ import pytest from databases.backends.aiopg import AiopgBackend -from databases.backends.mysql import MySQLBackend from databases.backends.postgres import PostgresBackend from databases.core import DatabaseURL from tests.test_databases import DATABASE_URLS, async_adapter