File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 11Sanic Plugins Framework
22=======================
33
4+ 0.9.4.post1
5+ -----------
6+ - Add ``setuptools `` as a specific requirement to this project.
7+
8+ - It is needed for the entrypoints-based plugin auto-discovery feature
9+ - ``setuptools `` is not always included in a python distribution, so we cannot assume it will be there
10+ - Pinned to ``>40.0 `` for now, but will likely change when we migrate to a Poetry/PEP517-based project
11+
12+
4130.9.4
514-----------
615- If the Sanic server emits a "before_server_start" event, use this to initialize SPF, instead of the
716 "after_server_start" event.
817
918 - This solves a potential race-condition introduced in SPF v0.8.2, when this was reversed.
10- - Changed the RuntimeError thrown in that cirumstance to a Sanic ``ServerError ``
19+ - Changed the RuntimeError thrown in that circumstance to a Sanic ``ServerError ``
1120
1221 - This may make the error easier to catch and filter. Also may change what the end-user sees when this occurs.
1322
Original file line number Diff line number Diff line change 33from .framework import SanicPluginsFramework
44from .plugin import SanicPlugin
55
6- __version__ = '0.9.4'
6+ __version__ = '0.9.4.post1 '
77__all__ = ["SanicPlugin" , "SanicPluginsFramework" , "__version__" ]
You can’t perform that action at this time.
0 commit comments