diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e13a5c..57295c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ 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.26.0 (2025-12-28) + +### Feat + +- add "wizard" for creating new table/model/revision +- add support for Create Alembic Migration +- add CopyableTextWidget and `` component +- overhaul how form vue template is rendered +- add basic views for Alembic Migrations, Dashboard +- add basic Table views + +### Fix + +- let checkbox widget show static text instead of Yes/No +- rename form-saving methods etc. for consistency in MasterView +- temporarily avoid make_uuid() +- remove password filter option for Users grid +- use smarter default for `grid.sort_multiple` based on model class + ## v0.25.1 (2025-12-20) ### Fix diff --git a/pyproject.toml b/pyproject.toml index b617577..263fe66 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.25.1" +version = "0.26.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.27.0", + "WuttJamaican[db]>=0.28.0", "zope.sqlalchemy>=1.5", ]