Merge remote-tracking branch 'origin/master' into nightly

This commit is contained in:
Overhang.IO 2022-11-21 10:18:43 +00:00
commit 17028c5c63
5 changed files with 12 additions and 10 deletions

View File

@ -18,6 +18,8 @@ Every user-facing change should have an entry in this changelog. Please respect
## Unreleased
## v14.2.0 (2022-11-21)
- [Improvement] Auto-complete implicit `local/dev --mount /path/to/...` options. (by @regisb)
- 💥[Feature] Strong typing of action and filter hooks: this allows us to detect incorrect calls to `actions.add` or `filters.add` early. Strong typing forces us to break the `do` and `apply` API by removing the `context` named argument. Developers should replace `do(context=...)` by `do_from_context(..., )` (and similar for `apply`).

View File

@ -26,7 +26,7 @@ kubernetes==25.3.0
# via -r requirements/base.in
markupsafe==2.1.1
# via jinja2
mypy==0.990
mypy==0.991
# via -r requirements/base.in
mypy-extensions==0.4.3
# via mypy

View File

@ -8,7 +8,7 @@ altgraph==0.17.3
# via pyinstaller
appdirs==1.4.4
# via -r requirements/base.txt
astroid==2.12.12
astroid==2.12.13
# via pylint
black==22.10.0
# via -r requirements/dev.in
@ -84,7 +84,7 @@ mccabe==0.7.0
# via pylint
more-itertools==9.0.0
# via jaraco-classes
mypy==0.990
mypy==0.991
# via -r requirements/base.txt
mypy-extensions==0.4.3
# via
@ -97,15 +97,15 @@ oauthlib==3.2.2
# requests-oauthlib
packaging==21.3
# via build
pathspec==0.10.1
pathspec==0.10.2
# via black
pep517==0.13.0
# via build
pip-tools==6.9.0
pip-tools==6.10.0
# via -r requirements/dev.in
pkginfo==1.8.3
# via twine
platformdirs==2.5.3
platformdirs==2.5.4
# via
# black
# pylint
@ -130,7 +130,7 @@ pyinstaller==5.6.2
# via -r requirements/dev.in
pyinstaller-hooks-contrib==2022.13
# via pyinstaller
pylint==2.15.5
pylint==2.15.6
# via -r requirements/dev.in
pyparsing==3.0.9
# via packaging
@ -190,7 +190,7 @@ types-docutils==0.19.1.1
# via -r requirements/dev.in
types-pyyaml==6.0.12.2
# via -r requirements/dev.in
types-setuptools==65.5.0.2
types-setuptools==65.6.0.0
# via -r requirements/dev.in
typing-extensions==4.4.0
# via

View File

@ -54,7 +54,7 @@ markupsafe==2.1.1
# via
# -r requirements/base.txt
# jinja2
mypy==0.990
mypy==0.991
# via -r requirements/base.txt
mypy-extensions==0.4.3
# via

View File

@ -2,7 +2,7 @@ import os
# Increment this version number to trigger a new release. See
# docs/tutor.html#versioning for information on the versioning scheme.
__version__ = "14.1.2"
__version__ = "14.2.0"
# The version suffix will be appended to the actual version, separated by a
# dash. Use this suffix to differentiate between the actual released version and