3
0
Fork 0

bump: version 0.26.0 → 0.27.0

This commit is contained in:
Lance Edgar 2025-12-31 19:18:21 -06:00
parent a62827d2c3
commit c6417b7b8b
2 changed files with 19 additions and 2 deletions

View file

@ -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/) 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). 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) ## v0.26.0 (2025-12-28)
### Feat ### Feat

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "WuttaWeb" name = "WuttaWeb"
version = "0.26.0" version = "0.27.0"
description = "Web App for Wutta Framework" description = "Web App for Wutta Framework"
readme = "README.md" readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}] authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]
@ -45,7 +45,7 @@ dependencies = [
"SQLAlchemy-Utils", "SQLAlchemy-Utils",
"waitress", "waitress",
"WebHelpers2", "WebHelpers2",
"WuttJamaican[db]>=0.28.0", "WuttJamaican[db]>=0.28.1",
"zope.sqlalchemy>=1.5", "zope.sqlalchemy>=1.5",
] ]