From 8a3c147858d054336ffa62e3e360c9fe900f903e Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 19 Oct 2025 13:46:24 -0500 Subject: [PATCH 1/2] feat: require latest rattail; drop passlib dependency should be using bcrypt directly now, even though technically rattail still requires passlib --- pyproject.toml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index df4af257..9afaf52d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -43,7 +43,6 @@ dependencies = [ "openpyxl", "paginate", "paginate_sqlalchemy", - "passlib", "Pillow", "pyramid>=2", "pyramid_beaker", @@ -53,7 +52,7 @@ dependencies = [ "pyramid_mako", "pyramid_retry", "pyramid_tm", - "rattail[db,bouncer]>=0.20.6", + "rattail[db,bouncer]>=0.21.0", "sa-filters", "simplejson", "transaction", From 2500805c544ca5c1f17ea8b4cf47adbfa5ab5476 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Sun, 19 Oct 2025 13:47:29 -0500 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.22.11=20=E2=86=92=200.2?= =?UTF-8?q?3.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 10 ++++++++++ pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e4739ab..d70b9761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,16 @@ All notable changes to Tailbone will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## v0.23.0 (2025-10-19) + +### Feat + +- require latest rattail; drop passlib dependency + +### Fix + +- depend on latest rattail + ## v0.22.11 (2025-09-20) ### Fix diff --git a/pyproject.toml b/pyproject.toml index 9afaf52d..2b367c99 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "Tailbone" -version = "0.22.11" +version = "0.23.0" description = "Backoffice Web Application for Rattail" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]