3
0
Fork 0

Compare commits

..

No commits in common. "f4d8d69cb27d63f98346cdd3322e4da50a8b555a" and "1daa6ee92e4d7e260ecfe81fa21e7880b2661337" have entirely different histories.

8 changed files with 5 additions and 20 deletions

View file

@ -5,13 +5,6 @@ All notable changes to WuttJamaican 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.23.2 (2025-09-20)
### Fix
- log warning when sending email is requested but disabled
- do not use appname for config extension entry points
## v0.23.1 (2025-08-31)
### Fix

View file

@ -137,8 +137,6 @@ Glossary
The intention is that all config extensions will have been
applied before the :term:`app handler` is created.
See also :ref:`config-extensions`.
config file
A file which contains :term:`config settings<config setting>`.
See also :doc:`narr/config/files`.

View file

@ -118,8 +118,6 @@ confirmed by inspecting either
setups) the log file.
.. _config-includes:
Including More Files
--------------------

View file

@ -56,8 +56,6 @@ to solve the "chicken-vs-egg" problem::
app = config.get_app()
.. _config-extensions:
Extending the Config Object
---------------------------

View file

@ -6,7 +6,7 @@ build-backend = "hatchling.build"
[project]
name = "WuttJamaican"
version = "0.23.2"
version = "0.23.1"
description = "Base package for Wutta Framework"
readme = "README.md"
authors = [{name = "Lance Edgar", email = "lance@wuttaproject.org"}]

View file

@ -1040,9 +1040,7 @@ def make_config( # pylint: disable=too-many-arguments,too-many-positional-argum
# maybe extend config object
if extend:
if not extension_entry_points:
# nb. must not use appname here, entry points must be
# consistent regardless of appname
extension_entry_points = "wutta.config.extensions"
extension_entry_points = f"{appname}.config.extensions"
# apply all registered extensions
# TODO: maybe let config disable some extensions?

View file

@ -725,7 +725,7 @@ class EmailHandler(GenericHandler): # pylint: disable=too-many-public-methods
# make sure sending is enabled
log.debug("sending email from %s; to %s", sender, recips)
if not self.sending_is_enabled():
log.warning("email sending is disabled")
log.debug("nevermind, config says no emails")
return
# smtp connect

View file

@ -931,7 +931,7 @@ class TestMakeConfig(FileTestCase):
WuttaConfig.assert_called_once_with(
[], appname="wuttatest", usedb=None, preferdb=None
)
load_entry_points.assert_called_once_with("wutta.config.extensions")
load_entry_points.assert_called_once_with("wuttatest.config.extensions")
# confirm extensions are invoked
load_entry_points.reset_mock()
@ -945,7 +945,7 @@ class TestMakeConfig(FileTestCase):
WuttaConfig.assert_called_once_with(
[], appname="wuttatest", usedb=None, preferdb=None
)
load_entry_points.assert_called_once_with("wutta.config.extensions")
load_entry_points.assert_called_once_with("wuttatest.config.extensions")
foo_cls.assert_called_once_with()
foo_obj.configure.assert_called_once_with(testconfig)
foo_obj.startup.assert_called_once_with(testconfig)