Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
.. currentmodule:: flask-pluginkit

v3.10.0
v3.10.1
-------

Released in 2025-06-24
Released in 2025-06-25

- feat: add pip command(install/list/show)
- feat: :class:`~flask_pluginkit.PluginManager` add `install_package` param, automatically install the plugin package from PyPi or VCS.
Expand Down
6 changes: 2 additions & 4 deletions flask_pluginkit/pluginkit.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,17 +93,15 @@ class PluginManager(object):

:param Logger logger: logging instance, for debug.

:param str stpl: turn on template sorting when the value is True, ASC, DESC.
:param str stpl: turn on template sorting when the value is ASC, DESC.
Sorting rules can be used, DESC or ASC(default).

:param List[str] plugin_packages: load the third-party plugin packages.

:param Dict[str, Union[str, bool, List[str]]] install_packages: auto install the list of third-party plugin packages.
Format: {pkgs: ["pkg-from-pypi", "pkg-from-git", ...]}
Format: {pkgs: ["PyPi-pkg", "VSC@branch#egg=pkg", ...]}
Other params refer to :func:`flask_pluginkit.utils.pip_install`.

:param bool try_compatible: if True, it will try to load old version plugins.

:param static_url_path: can be used to specify a different path for the
static files on the plugins. Defaults to the name
of the `static_endpoint` folder.
Expand Down
2 changes: 1 addition & 1 deletion flask_pluginkit/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "3.10.0"
__version__ = "3.10.1"