-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: Update all #72
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/all
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
9d4cd0d
to
89000ac
Compare
8b82fdc
to
eb122d4
Compare
eb122d4
to
7566005
Compare
7566005
to
f5989d3
Compare
c7214f8
to
a356a64
Compare
a356a64
to
57e6d81
Compare
57e6d81
to
63d6e3a
Compare
326f173
to
09c4196
Compare
bf2ded2
to
fe1813f
Compare
e72b417
to
f294ff3
Compare
06249f5
to
3cfb8c4
Compare
3cfb8c4
to
98bb7f3
Compare
98bb7f3
to
b635854
Compare
1e549c4
to
6d29029
Compare
6d29029
to
b18a3f9
Compare
75ec565
to
cf44e12
Compare
814f219
to
594c02c
Compare
98e9621
to
69d050c
Compare
69d050c
to
5802f5c
Compare
d8cc64d
to
6e818ba
Compare
6e818ba
to
e8f2396
Compare
8f295f1
to
e0df037
Compare
77aaf0d
to
0789391
Compare
0789391
to
e8b8b57
Compare
e8b8b57
to
12a18f1
Compare
bd6a014
to
9ab1d9f
Compare
e0da89c
to
d8f5eab
Compare
d8f5eab
to
0627e42
Compare
0627e42
to
bcfaa07
Compare
5316615
to
74161f5
Compare
2ed241a
to
b371bfa
Compare
b371bfa
to
7cc67ac
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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:
==8.1.3
->==8.1.8
==2.1.2
->==2.2.0
==3.4.1
->==3.7
==2.1.1
->==2.1.5
3.10
->3.13
==6.0.1
->==6.0.2
==1.16.0
->==1.17.0
==3.4.2.1
->==3.7.0.20241204
==6.0.12
->==6.0.12.20241230
Release Notes
pallets/click (click)
v8.1.8
Compare Source
Unreleased
click.open_file()
. :issue:2717
click.Path
displays onmultiple lines. :issue:
2697
""
from being displayed inthe help for an option. :issue:
2500
:issue:
2705
default_map
.:issue:
2632
click.echo(color=...)
passingcolor
to coloroma so it can beforced on Windows. :issue:
2606
.v8.1.7
Compare Source
Released 2023-08-17
2581
2574
2567
v8.1.6
Compare Source
Released 2023-07-18
@click.group()
. :issue:2558
v8.1.5
Compare Source
Released 2023-07-13
@click.command()
,@click.option()
, andother decorators. Introduce typing tests. :issue:
2558
v8.1.4
Compare Source
Released 2023-07-06
typing.Dict
occurrences totyping.MutableMapping
forparameter hints. :issue:
2255
:issue:
2398
shell_completion.add_completion_class
function. :pr:
2421
2461
.
) in the program name. :issue:2166
2268
click.clear()
. :issue:2284
2332
2368
fpath
. :issue:2344
.EOFError
andKeyboardInterrupt
tracebacks are not suppressed whenstandalone_mode
is disabled. :issue:2380
@group.command
does not fail if the group was created with a customcommand_class
. :issue:2416
multiple=True
is allowed for flag options again and does not requiresetting
default=()
. :issue:2246, 2292, 2295
@argument()
and@option()
reusable when thecls
parameter is used. :issue:2294
bytes with the replacement character (
�
). :issue:2395
2355
2554
echo()
does not fail when no streams are attached, such as withpythonw
onWindows. :issue:
2415
expose_value=False
do not cause completion to fail. :issue:2336
pallets/itsdangerous (itsdangerous)
v2.2.0
Compare Source
Released 2024-04-16
372
pyproject.toml
instead ofsetup.cfg
.:pr:
326
flit_core
instead ofsetuptools
as build backend.__version__
attribute. Use feature detection, orimportlib.metadata.version("itsdangerous")
, instead. :issue:371
Serializer
and the return type ofdumps
is generic for type checking.By default it is
Serializer[str]
anddumps
returns astr
. If adifferent
serializer
argument is given, it will try to infer the returntype of its
dumps
method. :issue:347
hashlib.sha1
may not be available in FIPS builds. Don'taccess it at import time so the developer has time to change the default.
:issue:
375
Python-Markdown/markdown (markdown)
v3.7
Compare Source
Changed
Refactor
abbr
ExtensionA new
AbbrTreeprocessor
has been introduced, which replaces the now deprecatedAbbrInlineProcessor
. Abbreviation processing now happens after Attribute Lists,avoiding a conflict between the two extensions (#1460).
The
AbbrPreprocessor
class has been renamed toAbbrBlockprocessor
, whichbetter reflects what it is.
AbbrPreprocessor
has been deprecated.A call to
Markdown.reset()
now clears all previously defined abbreviations.Abbreviations are now sorted by length before executing
AbbrTreeprocessor
to ensure that multi-word abbreviations are implemented even if an abbreviation
exists for one of those component words. (#1465)
Abbreviations without a definition are now ignored. This avoids applying
abbr tags to text without a title value.
Added an optional
glossary
configuration option to the abbreviations extension.This provides a simple and efficient way to apply a dictionary of abbreviations
to every page.
Abbreviations can now be disabled by setting their definition to
""
or''
.This can be useful when using the
glossary
option.Fixed
v3.6
Compare Source
Changed
Refactor TOC Sanitation
striptags
is provided to convert headings to plain text.Unlike, the
markupsafe
implementation, HTML entities are not unescaped.name
, richhtml
, and unescaped rawdata-toc-label
aresaved to
toc_tokens
, allowing users to access the full rich text content ofthe headings directly from
toc_tokens
.data-toc-label
is sanitized separate from heading contentbefore being written to
name
. This fixes a bug which allowed markup throughin certain circumstances. To access the raw unsanitized data, retrieve the
value from
token['data-toc-label']
directly.html.unescape
call is made just prior to callingslugify
so thatslugify
only operates on Unicode characters. Note thathtml.unescape
isnot run on
name
,html
, ordata-toc-label
.get_name
andstashedHTML2text
defined in thetoc
extensionare both deprecated. Instead, third party extensions should use some
combination of the new functions
run_postprocessors
,render_inner_html
andstriptags
.Fixed
scripts/*.py
in the generated source tarballs (#1430).^
) and square brackets (]
) but explicitly excludebackslashes (
\
) from abbreviations (#1444).attr_list
,fenced_code
), quoted attribute values arenow allowed to contain curly braces (
}
) (#1414).v3.5.2
Compare Source
Fixed
convertFile
- it accepts only bytes-based buffers.Also remove legacy checks from Python 2 (#1400)
AdmonitionProcessor.content_indent
unset(#1404)
InlineProcessor
withAtomicString
(#1406).codehilite
with an emptycode
tag (#1405).v3.5.1
Compare Source
Fixed
trigger quadratic line counting behavior (#1392).
v3.5
Compare Source
v3.4.4
Compare Source
v3.4.3
Compare Source
v3.4.2
Compare Source
pallets/markupsafe (markupsafe)
v2.1.5
Compare Source
Released 2024-02-02
striptags
not collapsing spaces. :issue:417
v2.1.4
Compare Source
Released 2024-01-19
striptags
, avoiding a performanceissue. :pr:
413
v2.1.3
Compare Source
Released 2023-06-02
format_map
,casefold
,removeprefix
, andremovesuffix
methods. :issue:
370
str
methods onMarkup
. :issue:358
Self
for annotating return types. :pr:379
v2.1.2
Compare Source
Released 2023-01-17
striptags
not stripping tags containing newlines.:issue:
310
yaml/pyyaml (pyyaml)
v6.0.2
Compare Source
What's Changed
Full Changelog: yaml/pyyaml@6.0.1...6.0.2
benjaminp/six (six)
v1.17.0
Compare Source
Pull request #388: Remove
URLopener
andFancyURLopener
classes fromurllib.request
when running on Python 3.14 or greater.Pull request #365, issue #283:
six.moves.UserDict
now points toUserDict.IterableUserDict
instead ofUserDict.UserDict
on Python 2.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 is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.