diff --git a/CHANGELOG.md b/CHANGELOG.md index 57295c5..5196306 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,23 @@ All notable changes to wuttaweb 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.27.0 (2025-12-31) + +### Feat + +- add wizard for generating new master view code +- add basic MasterView to show all registered master views +- add MasterView registry/discovery mechanism + +### Fix + +- show db backend (dialect name) on App Info page +- prevent whitespace wrap for tool panel header +- render datetimes with tooltip showing time delta from now +- fallback to default continuum plugin logic, when no request +- flush session when creating new object via MasterView +- fix page title for Alembic Dashboard + ## v0.26.0 (2025-12-28) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 5e85363..ec934fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.26.0" +version = "0.27.0" description = "Web App for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] @@ -45,7 +45,7 @@ dependencies = [ "SQLAlchemy-Utils", "waitress", "WebHelpers2", - "WuttJamaican[db]>=0.28.0", + "WuttJamaican[db]>=0.28.1", "zope.sqlalchemy>=1.5", ]