From a8514da107bf1daf6eb93b010ea0643499d3e1c9 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Thu, 15 Aug 2024 16:20:21 -0500 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.6.0=20=E2=86=92=200.7.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 4 ++-- 2 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d8c5635..6de4999 100644 --- a/CHANGELOG.md +++ b/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/) 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) ### Feat diff --git a/pyproject.toml b/pyproject.toml index c3ce9d4..35d94ff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.6.0" +version = "0.7.0" description = "Web App for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@edbob.org"}] @@ -39,7 +39,7 @@ dependencies = [ "pyramid_tm", "waitress", "WebHelpers2", - "WuttJamaican[db]>=0.11.0", + "WuttJamaican[db]>=0.11.1", "zope.sqlalchemy>=1.5", ]