bump: version 0.16.2 → 0.17.0
This commit is contained in:
parent
30671fcd78
commit
180acc509f
23
CHANGELOG.md
23
CHANGELOG.md
|
@ -5,6 +5,29 @@ 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.17.0 (2024-12-15)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- add basic support for batch execution
|
||||||
|
- add basic support for rows grid for master, batch views
|
||||||
|
- add basic master view class for batches
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- add handling for decimal values and lists, in `make_json_safe()`
|
||||||
|
- fix behavior when editing Roles for a User
|
||||||
|
- add basic views for raw Permissions
|
||||||
|
- improve support for date, datetime fields in grids, forms
|
||||||
|
- add way to set field widgets using pseudo-type
|
||||||
|
- add support for date, datetime form fields
|
||||||
|
- make dropdown widgets as wide as other text fields in main form
|
||||||
|
- add fallback instance title
|
||||||
|
- display "global" errors at top of form, if present
|
||||||
|
- add `make_form()` and `make_grid()` methods on web handler
|
||||||
|
- correct "empty option" behavior for `ObjectRef` schema type
|
||||||
|
- use fanstatic to serve built-in images by default
|
||||||
|
|
||||||
## v0.16.2 (2024-12-10)
|
## v0.16.2 (2024-12-10)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "WuttaWeb"
|
name = "WuttaWeb"
|
||||||
version = "0.16.2"
|
version = "0.17.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"}]
|
||||||
|
@ -43,7 +43,7 @@ dependencies = [
|
||||||
"pyramid_tm",
|
"pyramid_tm",
|
||||||
"waitress",
|
"waitress",
|
||||||
"WebHelpers2",
|
"WebHelpers2",
|
||||||
"WuttJamaican[db]>=0.17.1",
|
"WuttJamaican[db]>=0.18.0",
|
||||||
"zope.sqlalchemy>=1.5",
|
"zope.sqlalchemy>=1.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue