Release Notes
wmflib Changelog
v3.0.0 (2026-02-25)
Dependencies breaking changes
Drop support for Python 3.7 and 3.8.
Update dependencies minimum version to match those in Debian Bullseye.
Drop support for Debian Buster.
New features
Minor improvements
Use importlib.metadata instead of pkg_resources, now deprecated/removed.
Fix some newly reported linting issues.
tests: remove fixture require_caplog
type hints: use standard types as type hints.
v2.0.0 (2025-06-17)
API breaking changes
config: make the raises argument keyword only for both
load_yaml_config()andload_ini_config(). All current clients are already either not passing the argument or passing it as keyword, not positional.phabricator: make the
sectionanddry_runarguments ofcreate_phabricator()keyword only and also thedry_runargument of thePhabricatorclass constructor to keyword only. All current clients are already either not passing the optional arguments or passing them as keyword, not positional.
New features
phabricator: expand support for Phabricator tasks:
Add a
validate_task_id()function to validate the format of a task ID. Optionally allow empty strings as valid based on theallow_empty_identifiersargument so that clients can decide if a CLI argument that is optional with a default value of empty string is considered valid.Add the
allow_empty_identifiersalso to thePhabricatorclass’s__init__()and thecreate_phabricator()helper function and support for it throughout the class.Add a
task_accessible()method to verify if a task ID is accessible with the given token. It returnFalseif the task doesn’t exists or is not visible.Add to the new methods and the existing
task_comment()araisesboolean parameter that defaults toTrue(to keep backward compatibility) that when set toFalseallows to call those methods in a best-effort way, just logging errors in case of failures and not raising exceptions.
Minor improvements
dns: alias DnsNotFound to DnsNotFoundError:
The existing exception
DnsNotFoundwas not having a proper exception name. Add a newDnsNotFoundErrorand alias the old one to the new one to allow for a smooth transition of clients.The
DnsNotFoundexception will be removed in a future release.
Miscellanea
setup.py: pin prospector to a specific version.
doc: small improvements in the config file, add automatically the current year in the copyright end date.
Refactored tox/CI and code formatting to adopt
ruffandruff format:Applied various automatic formatting to the code base, including the move to double quote strings.
Applied various code simplifications/best practices as reported by ruff linters.
Completely refactored static checkers/linters using ruff.
Drastically reduce the current run of prospector to just run the
pyromaandvulturetools, to be re-evaluated if they could be dropped entirely.Setup ruff with an extensive set of rules to be potentially reduce/expanded based on feedback and usability.
On a clean checkout without a prior
.tox/directory the time for a full tox run is now ~16% faster.Add a new style checker and formatter tox environments. The checker will be run automatically both locally and in CI, while the formatter can be called manually or integrated into IDE, git commit or git review workflows. For now it formats and checks the whole repository, if at any point this will become annoying we can use the same logic currently used in spicerack to format and check only the modified files or the last commit, based on the presence of local modifications or not.
Add a
.git-blame-ignore-revsfile with the list of commits (SHA1) of autoformatted changes so that they can be avoided in git blame with the--ignore-revs-fileCLI argument.
v1.3.2 (2025-05-13)
Minor improvements
Add support for Python 3.13 and Debian Trixie
Miscellanea
docstrings: update some examples to be more clear and up to date.
v1.3.1 (2025-03-26)
Bug fixes
interactive: add
NullHandlerto the notify logger to prevent the notify logger messages to be logged with the root logger handlers. Clients are free to callnotify_logger.handlers.clear()if they want to start from an empty set of handlers.
v1.3.0 (2025-03-25)
New features
interactive: notify when waiting for user input
When asking for user input, if the user has not replied within 3 minutes, send a notification via a custom logger.
The notification is done via a
threading.Timerthat is canceled if the user replies in time.Clients of this cose (e.g. spicerack) can setup a custom handler for this dedicated notification logger to make the notification alert the user running the code.
Bug fixes
tests: fix outstanding CI issues.
setup.py: pin types-setuptools for pkg_resources
Miscellanea
tox: add Jenkins settings to reduce its execution time reducing the number of environments executed.
tests: remove unnecessary vulture setting
v1.2.7 (2024-09-19)
Minor improvements
constants: add
US_DATACENTERSconstant.
v1.2.6 (2024-09-05)
Bug fixes
interactive: fix regression and log the user input only if is valid to prevent leaks in the logs of wrongly pasted inputs.
Miscellanea
setup.py: fix test dependency removed upstream.
v1.2.5 (2024-04-18)
Minor improvements
constants: add the new magru datacenter.
v1.2.4 (2023-11-28)
Bug fixes
constants: update
ns2.wikimedia.orgIP address as it was recently changed.requests: fix import of urllib’s
Retryto be imported directly instead of importing it from requests to avoid mypy confusion.
Miscellanea
documentation: extend the
@retrydecorator documentation adding the formula to calculate the total delay given the number of tries and the delay argument for the different backoff strategies.tox.ini: use directly
sphinx-buildinstead ofsetup.pyto generate the documentation, this prevents a deprecation warning or failure with the newest Sphinx.tox.ini: remove optimization for tox <4. Tox 4 will not re-use the environments because of the different names, so removing this tox <4 optimization as it’s making subsequent runs slower with tox 4+.
v1.2.3 (2023-07-31)
Bug fixes
irc: handle custom logging formatters, when set allow the message to be formatted according to them.
Miscellanea
irc: refactored code and tests to simplify the code and improve readability.
v1.2.2 (2023-04-27)
Bug fixes
dns: clarify the type of the
nameserver_addressesargument of the Dns class to adhere to the dnspython one.dns: convert the sequence of
nameserver_addressesto list to adhere to what dnspython is expecting.requests: rename the type alias
TypeTimeouttoTimeoutTypeto adhere to pylint naming formats.
Miscellanea
tox: disable bandit’s
request_without_timeoutcheck in tests due to false positives.
v1.2.1 (2023-02-02)
Minor improvements
interactive: log the response to
ask_inputfor easier troubleshooting. Indirectly logs also the response toask_confirmationandconfirm_on_failure.interactive: allow free responses in
ask_input(T327408):Allow the answer to
ask_inputto be free-form using a custom validator callable.The choices argument must be set to an empty sequence when the custom validator is set.
Add additional validation to fail in case choices is empty and no validator is provided or if the choices argument is non empty and the validator one is also set.
requests: allow to skip the session retry logic. In some cases, for example when using the
@retrydecorator from the decorators module, a client code might want to just set the UA and the timeout without any retry logic.
Miscellanea
prometheus: fix typo in docstring.
doc: set default language.
doc: update URL to requests library timeouts documetation page.
Add configuration file for the WMF-specific release script.
flake8: move all flake8 config to
setup.cfg.tox: add
--no-external-configto prospector.tests: remove unnecessary pylint disable
setup.py: specify
python_requires.setup.py: add support for Python 3.10 and 3.11.
setup.py: force a newer
sphinx_rtd_themeto avoid a rendering bug of the older version.
v1.2.0 (2022-04-04)
New features
prometheus: add support for Thanos
Extract the common functionalities into a
PrometheusBaseclass.Have the existing
Prometheusclass inherit fromPrometheusBase.Add a new
Thanosclass that inherits fromPrometheusBaseto query the Thanos endpoint.For Thanos queries set the deduplicate parameter always to
trueand the partial response one always to false to ensure to have unique data and all the data, respectively.See also the Thanos#Global_view Wikitech page.
Minor improvements
prometheus: allow to specify a different Prometheus instance from the default
opsone, while keeping backward compatibility.
Bug fixes
interactive: catch
Ctrl+c/Ctrl+donask_input()to handle them properly.
Miscellanea
requests: fix docstring regarding the timeout type.
v1.1.2 (2022-03-09)
Bug fixes
requests: fix backward compatibility with urllib3 also in the tests.
v1.1.1 (2022-03-09)
Bug fixes
requests: fix backward compatibility with urllib3
Versions before 1.26.0 accept only the old parameter name ‘method_whitelist’, that will be removed in version 2.0.
Keep backward compatibility with previous versions of urllib3.
v1.1.0 (2022-03-09)
Minor improvements
requests: allow to customize the list of HTTP methods and HTTP status codes that should trigger a retry as the existing generic values might need to be tweaked at times.
Miscellanea
prospector: ignore deprecation message
The latest
prospectorissues a deprecated message for thepep8andpep257tools that have been renamed topycodestyleandpydocstylerespectively. The new names are incompatible withprospector < 1.7.0, so for now keep the old names and disable the deprecation warning.
v1.0.2 (2022-02-14)
Bug fixes
requests: fix timeout parameter of
http_session()so that is gets always propagated to the underlying calls to the requests library as that was not always the case. Clarify in the documentation how to unset the timeout for a single call when using this session.
v1.0.1 (2022-02-09)
Minor improvements
requests: add support to specify connection and read timeouts separately.
Set the default connection timeout to 3s and keep the existing read timeout to 5s.
Miscellanea
setup.py: temporarily add upper limit to dnspython, the latest 2.2.0 version generates mypy issues.
v1.0.0 (2021-11-11)
Minor improvements
constants: add the new
drmrsdatacenter to existing constants.constants: add
CORE_DATACENTERSconstant currently defined in Spicerack.Adopt
pathlib.Patheverywhere in the project:Accept both
strandos.PathLikeobjects in theconfigandfileiomodules for file name parameters.Use
pathlib.Pathinstead of theos.pathfunctions across the project.
style: adopt f-strings, converting all
format()calls to f-strings when feasible.interactive: change input prefix to
==>:Change the input prefix from
>>>to==>to allow for code examples in an interactive Python console to be used in docstrings as documentation without having issues with the syntax highlighter.
docs: add usage examples to all modules.
Miscellanea
versioning: fully adopt semantic versioning starting with this release.
pylint: fix newly reported issues.
v0.0.9 (2021-08-04)
Minor improvements
decorators: improve the
@retrydecorator.Add a new optional
dynamic_params_callbacksparameter to the@retrydecorator.This parameter accepts a tuple of callbacks that will be called by the decorator and allow them to modify the parameters of the decorator itself at runtime.
Fix the signature of retry now that the upstream bug in pylint has been fixed and the newer version is included in prospector. This allows to remove some type ingore that were required before.
idm: make the
cnanduidarguments oflogoutd_args()both required so that the logoutd scripts that adhere to this API can safely rely on both being present. The logout cookbook is already passing both parameters anyway.
Miscellanea
idm: fix typo in docstring.
v0.0.8 (2021-06-23)
New features
idm: add a new
idmmodule with support for global logout (T283242):To ensure that all Python logout scripts will have the same set of arguments and to reduce everyone repeating the same argparse block, a
LogoutdBaseabstract class was added.It features also a
logoutd_args()function that provides the common argparse setup for all the logoutd scripts.See the module’s documentation for example usages.
Minor improvements
constants: add
DATACENTER_NUMBERING_PREFIXconstant to map datacenter names to their numbering prefix used in hostnames.
Bug fixes
interactive: also check term for tmux in
ensure_shell_is_durable().tests: fix pip backtracking moving prospector tests to their own virtual environments.
Miscellanea
Add official support for Python 3.9
fileio: uniform quotes used in the file.
setup.py: add types dependencies for mypy for the dependencies that don’t have yet type hints.
CHANGELOG: fix typo in the v0.0.7 release notes.
v0.0.7 (2021-02-18)
New features
dns: update DNS to support multiple namservers.
This allows cookbooks to configure the Dns with multiple nameservers, for example:
dns = Dns(nameserver_addresses=['91.198.174.239', '208.80.153.231'])
and thus allow users to get authoritative answers whiles also making use of DNS failover to account for any on going work on a specific nameserver while the cookbook is running.
The
PUBLIC_AUTHDNSconstant holds the auth server ips, given that they change very infrequently.
fileio: add new module to manage file I/O operations.
Add a
locked_open()context manager to open a file with an exclusive lock to be used like the buil-inopen().
Miscellanea
tests: cover untested property in the irc module.
CHANGELOG: fix typo.
tests: pylint, remove unnecessary disable comments.
v0.0.6 (2021-01-04)
Miscellanea
doc: improve installation and introduction documentation pages and some modules documentation.
type hints: mark the package as type hinted so that mypy can recognize its type hints when imported in other projects.
v0.0.5 (2020-12-21)
New features
Port the decorators module from Spicerack (T257905).
Port the interactive module from Spicerack (T257905).
Port the prometheus module from Spicerack (T257905).
Port the IRC logger handler from Spickerack into an irc module (T257905).
interactive: improve confirmation capabilities
Add a
ask_input()generic function to ask the user for input and check that the answer is among a list of allowed choices, returning the user’s choice.Convert
ask_confirmation()to use theask_input()function.Add an
InputErrorandAbortErrorexception classes.Add a
confirm_on_failure()function to run any callable, and on failure ask the user to either retry, skip the step or abort the whole execution.
Miscellanea
docs: fix link to pywmflib Gerrit project.
tests: fix deprecated pytest argument.
v0.0.4 (2020-11-02)
New features
requests: add new requests module that exposes an
http_session()function that instantiate a requests’sSessionwith configurable default timeout, retry logic on some failures as well as setting a well formatted User-Agent.
v0.0.3 (2020-10-23)
New features
Import the action module from Spicerack
Import the config module from Spicerack
Import the phabricator module from Spicerack
v0.0.2 (2020-09-22)
Miscellanea
Remove Spicerack references from docstrings.
v0.0.1 (2020-07-27)
New features
Initial version of the package.
Import the dns module and tests from Spicerack.