bump: version 0.20.1 → 0.21.0
This commit is contained in:
parent
b8131c8393
commit
8d5427e92f
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -5,6 +5,25 @@ All notable changes to Tailbone 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.21.0 (2024-08-22)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- move "most" filtering logic for grid class to wuttaweb
|
||||||
|
- inherit from wuttaweb templates for home, login pages
|
||||||
|
- inherit from wuttaweb for AppInfoView, appinfo/configure template
|
||||||
|
- add "has output file templates" config option for master view
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- change grid reset-view param name to match wuttaweb
|
||||||
|
- move "searchable columns" grid feature to wuttaweb
|
||||||
|
- use wuttaweb to get/render csrf token
|
||||||
|
- inherit from wuttaweb for appinfo/index template
|
||||||
|
- prefer wuttaweb config for "home redirect to login" feature
|
||||||
|
- fix master/index template rendering for waterpark theme
|
||||||
|
- fix spacing for navbar logo/title in waterpark theme
|
||||||
|
|
||||||
## v0.20.1 (2024-08-20)
|
## v0.20.1 (2024-08-20)
|
||||||
|
|
||||||
### Fix
|
### Fix
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "Tailbone"
|
name = "Tailbone"
|
||||||
version = "0.20.1"
|
version = "0.21.0"
|
||||||
description = "Backoffice Web Application for Rattail"
|
description = "Backoffice Web Application for Rattail"
|
||||||
readme = "README.rst"
|
readme = "README.rst"
|
||||||
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||||
|
@ -53,13 +53,13 @@ dependencies = [
|
||||||
"pyramid_mako",
|
"pyramid_mako",
|
||||||
"pyramid_retry",
|
"pyramid_retry",
|
||||||
"pyramid_tm",
|
"pyramid_tm",
|
||||||
"rattail[db,bouncer]>=0.18.1",
|
"rattail[db,bouncer]>=0.18.4",
|
||||||
"sa-filters",
|
"sa-filters",
|
||||||
"simplejson",
|
"simplejson",
|
||||||
"transaction",
|
"transaction",
|
||||||
"waitress",
|
"waitress",
|
||||||
"WebHelpers2",
|
"WebHelpers2",
|
||||||
"WuttaWeb>=0.11.0",
|
"WuttaWeb>=0.12.0",
|
||||||
"zope.sqlalchemy>=1.5",
|
"zope.sqlalchemy>=1.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue