From 1f85a3c52b1d0bd028974ac66564612bdc25ae44 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Tue, 19 Sep 2023 09:30:28 +0200 Subject: [PATCH] Version 0.15.0 (#621) --- CHANGELOG.md | 21 +++++++++++++++++++++ sqladmin/__init__.py | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5488e732..3291f95a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,27 @@ 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/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## Version 0.15.0 - 2023-09-19 + +### Breaking Changes +* Update AuthenticationBackend signature by @aminalaee in https://github.com/aminalaee/sqladmin/pull/581 +* Change signature of `list_query` and `count_query` by @aminalaee in https://github.com/aminalaee/sqladmin/pull/610 + +### Added +* Search in list when typing by @anton-petrov in https://github.com/aminalaee/sqladmin/pull/592 +* Add `category` config by @aminalaee in https://github.com/aminalaee/sqladmin/pull/616 +* Switch to HTML time input for Time field by @aminalaee in https://github.com/aminalaee/sqladmin/pull/595 +* Add modal confirmation for bulk delete by @aminalaee in https://github.com/aminalaee/sqladmin/pull/612 + +### Fixed +* Fix 'itsdangerous' import error when not using Authentication Backend by @GriceTurrble in https://github.com/aminalaee/sqladmin/pull/597 +* Fix docs: Cookbook, Using a request object by @s1beria21 in https://github.com/aminalaee/sqladmin/pull/575 +* Fix delete error no rows selected by @aminalaee in https://github.com/aminalaee/sqladmin/pull/591 +* Fix typing of Admin session_maker by @sheldygg in https://github.com/aminalaee/sqladmin/pull/604 +* Fix broken link in doc by @YannickLeRoux in https://github.com/aminalaee/sqladmin/pull/620 + +**Full Changelog**: https://github.com/aminalaee/sqladmin/compare/0.14.1...0.15.0 + ## Version 0.14.1 - 2023-08-08 ### Fixed diff --git a/sqladmin/__init__.py b/sqladmin/__init__.py index 002a933e..feb8c73e 100644 --- a/sqladmin/__init__.py +++ b/sqladmin/__init__.py @@ -1,7 +1,7 @@ from sqladmin.application import Admin, action, expose from sqladmin.models import BaseView, ModelView -__version__ = "0.14.1" +__version__ = "0.15.0" __all__ = [ "Admin",