bump: version 0.19.0 → 0.19.1
This commit is contained in:
parent
b3f1f8b6d9
commit
49b13306c4
20
CHANGELOG.md
20
CHANGELOG.md
|
@ -5,6 +5,26 @@ 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.19.1 (2025-01-06)
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- improve built-in grid renderer logic
|
||||||
|
- allow session injection for ObjectRef constructor
|
||||||
|
- improve rendering for batch row status
|
||||||
|
- add basic support for row grid "view" action links
|
||||||
|
- add "xref buttons" tool panel for master view
|
||||||
|
- add WuttaQuantity schema type, widget
|
||||||
|
- remove `session` param from some form schema, widget classes
|
||||||
|
- add grid renderers for bool, currency, quantity
|
||||||
|
- use proper bulma styles for markdown content
|
||||||
|
- use span element for readonly money field widget render
|
||||||
|
- include grid filters for all column properties of model class
|
||||||
|
- use app handler to render error string, when progress fails
|
||||||
|
- add schema node type, widget for "money" (currency) fields
|
||||||
|
- exclude FK fields by default, for model forms
|
||||||
|
- fix style for header title text
|
||||||
|
|
||||||
## v0.19.0 (2024-12-23)
|
## v0.19.0 (2024-12-23)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "WuttaWeb"
|
name = "WuttaWeb"
|
||||||
version = "0.19.0"
|
version = "0.19.1"
|
||||||
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.19.1",
|
"WuttJamaican[db]>=0.19.2",
|
||||||
"zope.sqlalchemy>=1.5",
|
"zope.sqlalchemy>=1.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue