From e6c87aa2d901cefc0b6afe4044758d6ae1c44634 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 13 Feb 2026 19:25:57 -0600 Subject: [PATCH 1/2] fix: grant perms for Email Settings to first admin user --- src/wuttaweb/views/common.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/wuttaweb/views/common.py b/src/wuttaweb/views/common.py index d0d95e6..affaf0b 100644 --- a/src/wuttaweb/views/common.py +++ b/src/wuttaweb/views/common.py @@ -215,6 +215,9 @@ class CommonView(View): "app_tables.view", "appinfo.list", "appinfo.configure", + "email_settings.list", + "email_settings.edit", + "email_settings.view", "master_views.list", "master_views.create", "master_views.configure", From e63b1752437e84dd21cdeac1096928b8733fb4f8 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 13 Feb 2026 19:26:15 -0600 Subject: [PATCH 2/2] =?UTF-8?q?bump:=20version=200.27.5=20=E2=86=92=200.27?= =?UTF-8?q?.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8d7cc1e..9b75345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ 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.27.6 (2026-02-13) + +### Fix + +- grant perms for Email Settings to first admin user + ## v0.27.5 (2026-02-13) ### Fix diff --git a/pyproject.toml b/pyproject.toml index b45321d..bccf7ea 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "hatchling.build" [project] name = "WuttaWeb" -version = "0.27.5" +version = "0.27.6" description = "Web App for Wutta Framework" readme = "README.md" authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]