bump: version 0.6.0 → 0.7.0
This commit is contained in:
parent
9805f808da
commit
a8514da107
19
CHANGELOG.md
19
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/)
|
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.7.0 (2024-08-15)
|
||||||
|
|
||||||
|
### Feat
|
||||||
|
|
||||||
|
- add sane views for 403 Forbidden and 404 Not Found
|
||||||
|
- add permission checks for menus, view routes
|
||||||
|
- add first-time setup page to create admin user
|
||||||
|
- expose User password for editing in master views
|
||||||
|
- expose Role permissions for editing
|
||||||
|
- expose User "roles" for editing
|
||||||
|
- improve widget, rendering for Role notes
|
||||||
|
|
||||||
|
### Fix
|
||||||
|
|
||||||
|
- add stub for `PersonView.make_user()`
|
||||||
|
- allow arbitrary kwargs for `Form.render_vue_field()`
|
||||||
|
- make some tweaks for better tailbone compatibility
|
||||||
|
- prevent delete for built-in roles
|
||||||
|
|
||||||
## v0.6.0 (2024-08-13)
|
## v0.6.0 (2024-08-13)
|
||||||
|
|
||||||
### Feat
|
### Feat
|
||||||
|
|
|
@ -6,7 +6,7 @@ build-backend = "hatchling.build"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "WuttaWeb"
|
name = "WuttaWeb"
|
||||||
version = "0.6.0"
|
version = "0.7.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@edbob.org"}]
|
authors = [{name = "Lance Edgar", email = "lance@edbob.org"}]
|
||||||
|
@ -39,7 +39,7 @@ dependencies = [
|
||||||
"pyramid_tm",
|
"pyramid_tm",
|
||||||
"waitress",
|
"waitress",
|
||||||
"WebHelpers2",
|
"WebHelpers2",
|
||||||
"WuttJamaican[db]>=0.11.0",
|
"WuttJamaican[db]>=0.11.1",
|
||||||
"zope.sqlalchemy>=1.5",
|
"zope.sqlalchemy>=1.5",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue