chore(deps): update mend: high confidence minor and patch dependency updates#189
Open
mend-for-gitlite.zycloud.tk[bot] wants to merge 1 commit intodevelopfrom
Conversation
dbfbccd to
75d42a4
Compare
75d42a4 to
e481b9a
Compare
e481b9a to
9cedfc8
Compare
2d4d1f1 to
d660c62
Compare
7e2d656 to
78a9f1c
Compare
ba0a6c4 to
0e614ca
Compare
34d47e5 to
a096d34
Compare
a096d34 to
aed4b2c
Compare
4b349f3 to
cde9d29
Compare
89f32fc to
cb85312
Compare
aa55636 to
0315b4b
Compare
60a6293 to
b690d77
Compare
06db1cf to
e23b265
Compare
8341f2d to
af2bfb9
Compare
8370e95 to
21b26b0
Compare
21b26b0 to
74f5f1c
Compare
74f5f1c to
9581c90
Compare
9581c90 to
f61b946
Compare
307af96 to
bef9de9
Compare
13ca25f to
4aa06de
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==2.0.1→==2.1.5==0.1.2→==0.1.4==21.2.0→==21.4.0==3.2.0→==3.2.2==4.9.3→==4.14.3==1.14.5→==1.17.1==3.3.0→==3.5.0==0.3.2→==0.4.0==0.17.1→==0.22.4==3.0.12→==3.29.0==0.13.9→==0.13.13==2.0.1→==2.2.0==0.18.0→==0.19.2==0.1.2→==0.2.1==0.6.1→==0.7.0==0.4.3→==0.4.4==1.6.0→==1.10.0==2.7.2→==2.12.0==0.9.0→==0.12.1==4.8.0→==4.9.0==3.0.18→==3.0.52==1.10.0→==1.11.0==2.20→==2.23==3.11.4→==3.13.0==2.8.2→==2.9.0.post0==2021.4.4→==2021.11.10==4.7.2→==4.9.1==1.16.0→==1.17.0==2.2.1→==2.8.3==5.0.5→==5.14.3==1.4.3→==1.5.5==3.10.0.0→==3.10.0.2==3.0.1→==3.5.5==0.18.2→==0.35.0==0.2.5→==0.6.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
pallets/markupsafe (MarkupSafe)
v2.1.5Compare Source
Released 2024-02-02
striptagsnot collapsing spaces. :issue:417v2.1.4Compare Source
Released 2024-01-19
striptags, avoiding a performanceissue. :pr:
413v2.1.3Compare Source
Released 2023-06-02
format_map,casefold,removeprefix, andremovesuffixmethods. :issue:
370strmethods onMarkup. :issue:358Selffor annotating return types. :pr:379v2.1.2Compare Source
Released 2023-01-17
striptagsnot stripping tags containing newlines.:issue:
310v2.1.1Compare Source
Released 2022-03-14
striptags. :pr:293v2.1.0Compare Source
Released 2022-02-17
262soft_unicode, which was previously deprecated. Usesoft_strinstead. :pr:261interpolation. :issue:
225277minrk/appnope (appnope)
v0.1.4Compare Source
v0.1.3Compare Source
python-attrs/attrs (attrs)
v21.4.0Compare Source
Changes
cloudpickledoes not work.#892
coverage reportfor projects that useattrsand don't set a--source.#895,
#896
v21.3.0Compare Source
Backward-incompatible Changes
When using
@define, converters are now run by default when setting an attribute on an instance -- additionally to validators.Meaning: the new default is
on_setattr=[attrs.setters.convert, attrs.setters.validate].This is unfortunately a breaking change, but it was an oversight, impossible to raise a
DeprecationWarningabout, and it's better to fix it now while the APIs are very fresh with few users.#835,
#886
import attrshas finally landed!As of this release, you can finally import
attrsusing its proper name.Not all names from the
attrnamespace have been transferred; most notablyattr.sandattr.ibare missing.See
attrs.defineandattrs.fieldif you haven't seen our next-generation APIs yet.A more elaborate explanation can be found On The Core API Names
This feature is at least for one release provisional.
We don't plan on changing anything, but such a big change is unlikely to go perfectly on the first strike.
The API docs have been mostly updated, but it will be an ongoing effort to change everything to the new APIs.
Please note that we have not moved -- or even removed -- anything from
attr!Please do report any bugs or documentation inconsistencies!
#887
Changes
attr.asdict(retain_collection_types=False)(default) dumps collection-esque keys as tuples.#646,
#888
__match_args__are now generated to support Python 3.10'sStructural Pattern Matching.
This can be controlled by the
match_argsargument to the class decorators on Python 3.10 and later.On older versions, it is never added and the argument is ignored.
#815
attrs.setters.validate(default in@defineand@mutable) but no field defines a validator, pretend that it's not set.#817
__repr__is significantly faster on Pythons with f-strings.#819
field_transformerare wrapped withAttrsClassagain.#824
#828
attrs.converters.to_bool().#830
attrs.resolve_types()now resolves types of subclasses after the parents are resolved.#842
#843
lt(val)(< val),le(va)(≤ val),ge(val)(≥ val),gt(val)(> val), andmaxlen(n).#845
attrsclasses are now fully compatible with cloudpickle (no need to disablerepranymore).#857
attrs.validators.disabled()and functionsattrs.validators.(set|get)_disabled().They deprecate
attrs.(set|get)_run_validators().All functions are interoperable and modify the same internal state.
They are not – and never were – thread-safe, though.
#859
attrs.validators.matches_re()now accepts pre-compiled regular expressions in addition to pattern strings.#877
python-cffi/cffi (cffi)
v1.17.1Compare Source
distutils.msvc9compilerimports under Windows (#118).ffibuilder.emit_python_code()andffibuiler.emit_c_code()accept file-like objects (#115).ffiplatformcalls are bypassed byffibuilder.emit_python_code()andffibuilder.emit_c_code()(#81).Full Changelog: python-cffi/cffi@v1.17.0...v1.17.1
v1.17.0Compare Source
python3.13tand the3.13tABI) are not currently supported.fn = lib.myfunc, you get an object of a special type for performancereasons, instead of a
<cdata 'C-function-type'>. Before version 1.17you could only call such objects. You could write
ffi.addressof(lib, "myfunc")in order to get a real<cdata>object,based on the idea that in these cases in C you'd usually write
&myfuncinstead of
myfunc. In version 1.17, the special objectlib.myfunccan now be passed in many places where CFFI expectsa regular
<cdata>object. For example, you can now passit as a callback to a C function call, or write it inside a C
structure field of the correct pointer-to-function type, or use
ffi.cast()orffi.typeof()on it.Full Changelog: python-cffi/cffi@v1.16.0...v1.17.0
v1.16.0Compare Source
distutilsfrom Python 3.12, projectsusing CFFI features that depend on
distutilsat runtime must add a dependency onsetuptoolsto function under Python 3.12+. CFFI does not declare a runtimesetuptoolsrequirement to avoid an unnecessary dependency for projects that do not require it.
setuptoolsis now a required build dependency.python_requiresmetadata for Python 3.8+. This allows unsupported Pythonsto continue using previously released sdists and wheels.
src/; a more standard layout that also enables CI to more easilycatch packaging errors.
v1.15.1Compare Source
(retroactive GitHub release for current stable version 1.15.1)
Full Changelog: python-cffi/cffi@v1.15.0...v1.15.1
v1.15.0Compare Source
v1.14.6Compare Source
asottile/cfgv (cfgv)
v3.5.0Compare Source
v3.4.0Compare Source
v3.3.1Compare Source
pypa/distlib (distlib)
v0.4.0Compare Source
v0.3.9Compare Source
v0.3.8Compare Source
v0.3.7Compare Source
v0.3.6: Bug-fix / Minor Enhancements ReleaseCompare Source
Though no changes have been made to
distlibcode since the previous release, this release is to facilitate vendoring intopip.Releases are normally signed using a GnuPG key with the user id vinay_sajip@yahoo.co.uk and the following fingerprint:
CA74 9061 914E AC13 8E66 EADB 9147 B477 339A 9B86
v0.3.5: Bug-fix / Minor Enhancements ReleaseCompare Source
Fixed #161: Updated test case.
Fixed #164: Improved support for reproducible builds by allowing a fixed
date/time to be inserted into created .exe files. Thanks to Somber Night for the
patch.
Fixed #169: Removed usage of deprecated imp module in favour of importlib.
Fixed #170: Corrected implementation of
get_required_dists().Fixed #172: Compute ABI correctly for Python < 3.8.
Changed the default locator configuration.
Made updates in support of PEP 643 / Metadata 2.2.
Updated launcher executables. Thanks to Michael Bikovitsky for his help with
the launcher changes.
Updated to write archive path of RECORD to RECORD instead of staging path.
Thanks to Pieter Pas for the patch.
Releases are normally signed using a GnuPG key with the user id vinay_sajip@yahoo.co.uk and the following fingerprint:
CA74 9061 914E AC13 8E66 EADB 9147 B477 339A 9B86
v0.3.4: Bug-fix / Minor Enhancements ReleaseCompare Source
Fixed #153: Raise warnings in
get_distributions()if bad metadata seen, but keep going.Fixed #154: Determine Python versions correctly for Python >= 3.10.
Updated launcher executables with changes to handle duplication logic.
Code relating to support for Python 2.6 was also removed (support for Python 2.6 was dropped in an earlier release, but supporting code wasn't removed until now).
v0.3.3Compare Source
tox-dev/py-filelock (filelock)
v3.29.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.28.0...3.29.0
v3.28.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.27.0...3.28.0
v3.25.2Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.25.1...3.25.2
v3.25.1Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.25.0...3.25.1
v3.25.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.24.4...3.25.0
v3.24.3Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.24.2...3.24.3
v3.24.2Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.24.1...3.24.2
v3.24.1Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.24.0...3.24.1
v3.24.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.23.0...3.24.0
v3.23.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.22.0...3.23.0
v3.22.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.21.2...3.22.0
v3.21.2Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.21.1...3.21.2
v3.21.1Compare Source
What's Changed
sqlite3when importingReadWriteLockby @bayandin in tox-dev/filelock#473New Contributors
Full Changelog: tox-dev/filelock@3.21.0...3.21.1
v3.21.0Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.20.3...3.21.0
v3.20.4Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.20.3...3.20.4
v3.20.3Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.20.2...3.20.3
v3.20.2Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.20.1...3.20.2
v3.20.1Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.20.0...3.20.1
v3.20.0Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.19.1...3.20.0
v3.19.1Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.19.0...3.19.1
v3.18.0Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.17.0...3.18.0
v3.17.0: Drop 3.8Compare Source
Full Changelog: tox-dev/filelock@3.16.1...3.17.0
v3.16.1Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.16.0...3.16.1
v3.16.0Compare Source
What's Changed
Full Changelog: tox-dev/filelock@3.15.4...3.16.0
v3.15.4Compare Source
What's Changed
file_lockas positional argument by @kwist-sgr in tox-dev/filelock#347Full Changelog: tox-dev/filelock@3.15.3...3.15.4
v3.15.3Compare Source
What's Changed
TypeError: _CountedFileLock.__init__() got an unexpected keyword argument 'timeout'by @kwist-sgr in tox-dev/filelock#345Full Changelog: tox-dev/filelock@3.15.2...3.15.3
v3.15.2Compare Source
What's Changed
New Contributors
Full Changelog: tox-dev/filelock@3.15.1...3.15.2
v3.15.1[Compare Source](https://redirect.github.
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.