- Notifications
You must be signed in to change notification settings - Fork 139
chore(deps): update all dependencies #1185
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
Merged
Merged
Conversation
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
bc9beb6 to 393043a Compare 393043a to b6a752e Compare b6a752e to 275b1c2 Compare chalmerlowe reviewed Jun 5, 2025
chalmerlowe reviewed Jun 5, 2025
chalmerlowe reviewed Jun 5, 2025
chalmerlowe approved these changes Jun 5, 2025
Collaborator
chalmerlowe left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Linchin approved these changes Jun 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
api: bigquery Issues related to the googleapis/python-bigquery-sqlalchemy API. automerge Merge the pull request once unit tests and other checks pass. samples Issues that are directly related to samples. size: m Pull request size is medium.
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:
==1.15.2->==1.16.1==2025.1.31->==2025.4.26==3.4.1->==3.4.2==8.1.8->==8.2.1==2.24.2->==2.25.0==2.38.0->==2.40.3==3.31.0->==3.34.0==1.6.0->==1.6.4==1.69.2->==1.70.0==3.1.1->==3.2.2==1.71.0->==1.72.1==1.71.0->==1.72.1==1.3.9->==1.3.10==24.2->==25.0==1.5.0->==1.6.0==4.9->==4.9.1==2.0.7->==2.1.1==4.13.0->==4.14.0==2.3.0->==2.4.0Release Notes
certifi/python-certifi (certifi)
v2025.4.26Compare Source
jawah/charset_normalizer (charset-normalizer)
v3.4.2Compare Source
Fixed
argparse.FileTypeby backporting the target class into the package. (#591)Changed
pallets/click (click)
v8.2.1Compare Source
Released 2025-05-20
2894:issue:
2897:pr:29302906:pr:2907sys.stderrat the end ofCliRunner.invoke. :issue:26822787v8.2.0Compare Source
Released 2025-05-10
Drop support for Python 3.7, 3.8, and 3.9. :pr:
2588:pr:2893Use modern packaging metadata with
pyproject.tomlinstead ofsetup.cfg.:pr:
2438Use
flit_coreinstead ofsetuptoolsas build backend. :pr:2543Deprecate the
__version__attribute. Use feature detection, orimportlib.metadata.version("click"), instead. :issue:2598BaseCommandis deprecated.Commandis the base class for allcommands. :issue:
2589MultiCommandis deprecated.Groupis the base class for all groupcommands. :issue:
2590The current parser and related classes and methods, are deprecated.
:issue:
2205OptionParserand theparsermodule, which is a modified copy ofoptparsein the standard library.Context.protected_argsis unneeded.Context.argscontains anyremaining arguments while parsing.
Parameter.add_to_parser(on bothArgumentandOption) isunneeded. Parsing works directly without building a separate parser.
split_arg_stringis moved fromparsertoshell_completion.Enable deferred evaluation of annotations with
from __future__ import annotations. :pr:2270When generating a command's name from a decorated function's name, the
suffixes
_command,_cmd,_group, and_grpare removed.:issue:
2322Show the
types.ParamType.namefortypes.Choiceoptions within--helpmessage ifshow_choices=Falseis specified.:issue:
2356Do not display default values in prompts when
Option.show_defaultisFalse. :pr:2509Add
get_help_extramethod onOptionto fetch the generated extraitems used in
get_help_recordto render help text. :issue:2516:pr:
2517Keep stdout and stderr streams independent in
CliRunner. Alwayscollect stderr output and never raise an exception. Add a new
output stream to simulate what the user sees in its terminal. Removes
the
mix_stderrparameter inCliRunner. :issue:2522:pr:2523Option.show_envvarnow also shows environment variable in error messages.:issue:
2695:pr:2696Context.closewill be called on exit. This results in allContext.call_on_closecallbacks and context managers added viaContext.with_resourceto be closed on exit as well. :pr:2680Add
ProgressBar(hidden: bool)to allow hiding the progressbar. :issue:2609A
UserWarningwill be shown when multiple parameters attempt to use thesame name. :issue:
2396When using
Option.envvarwithOption.flag_value, theflag_valuewill always be used instead of the value of the environment variable.
:issue:
2746:pr:2788Add
Choice.get_invalid_choice_messagemethod for customizing theinvalid choice message. :issue:
2621:pr:2622If help is shown because
no_args_is_helpis enabled (defaults toTruefor groups,
Falsefor commands), the exit code is 2 instead of 0.:issue:
1489:pr:1489Contexts created during shell completion are closed properly, fixing
a
ResourceWarningwhen usingclick.File. :issue:2644:pr:2800:pr:
2767click.edit(filename)now supports passing an iterable of filenames incase the editor supports editing multiple files at once. Its return type
is now also typed:
AnyStriftextis passed, otherwiseNone.:issue:
2067:pr:2068Specialized typing of
progressbar(length=...)asProgressBar[int].:pr:
2630Improve
echo_via_pagerbehaviour in face of errors.:issue:
2674echo_via_pagerraises an exception.
to terminate.
echo_via_pagerwill not ignoreKeyboardInterruptanymore. Thisallows the user to search for future output of the generator when
using less and then aborting the program using ctrl-c.
deprecated: bool | strcan now be used on options and arguments. Thispreviously was only available for
Command. The message can now also becustomised by using a
strinstead of abool. :issue:2263:pr:2271Command.deprecatedformatting in--helpchanged from(Deprecated) helptohelp (DEPRECATED).Add a
catch_exceptionsparameter toCliRunner. Ifcatch_exceptionsis not passed toCliRunner.invoke, the valuefrom
CliRunneris used. :issue:2817:pr:2818Option.flag_valuewill no longer have a default value set based onOption.defaultifOption.is_flagisFalse. This results inOption.defaultnot needing to implement__bool__. :pr:2829Incorrect
click.edittyping has been corrected. :pr:2804Choiceis now generic and supports any iterable value.This allows you to use enums and other non-
strvalues. :pr:2796:issue:
605Fix setup of help option's defaults when using a custom class on its
decorator. Removes
HelpOption. :issue:2832:pr:2840googleapis/python-api-core (google-api-core)
v2.25.0Compare Source
Features
x-goog-api-clientheader (#812) (118bd96)Bug Fixes
googleapis/google-auth-library-python (google-auth)
v2.40.3Compare Source
Bug Fixes
v2.40.2Compare Source
Bug Fixes
v2.40.1Compare Source
Bug Fixes
v2.40.0Compare Source
Features
Bug Fixes
v2.39.0Compare Source
Features
Bug Fixes
googleapis/python-bigquery (google-cloud-bigquery)
v3.34.0Compare Source
Features
Bug Fixes
Documentation
v3.33.0Compare Source
Features
Bug Fixes
entity_type(#2182) (0217637)v3.32.0Compare Source
Features
Bug Fixes
query()now warns whenjob_idis set and the defaultjob_retryis ignored (#2167) (ca1798a)googleapis/python-test-utils (google-cloud-testutils)
v1.6.4Compare Source
Miscellaneous Chores
v1.6.3Compare Source
Miscellaneous Chores
v1.6.2Compare Source
Miscellaneous Chores
v1.6.1Compare Source
Bug Fixes
googleapis/google-cloud-python (googleapis-common-protos)
v1.70.0Compare Source
Features
grpc/grpc (grpcio)
v1.72.1Compare Source
This is release gRPC Core 1.72.1 (gusto).
For gRPC documentation, see grpc.io. For previous releases, see Releases.
This release contains refinements, improvements, and bug fixes, with highlights listed below.
Python
grpc.aio.*).v1.72.0Compare Source
This is release gRPC Core 1.72.0 (gusto).
For gRPC documentation, see grpc.io. For previous releases, see Releases.
This release contains refinements, improvements, and bug fixes.
pypa/packaging (packaging)
v25.0Compare Source
What's Changed
New Contributors
Full Changelog: pypa/packaging@24.2...25.0
pytest-dev/pluggy (pluggy)
v1.6.0Compare Source
=========================
Deprecations and Removals
#​556 <https://github.com/pytest-dev/pluggy/issues/556>_: Python 3.8 is no longer supported.Bug Fixes
#​504 <https://github.com/pytest-dev/pluggy/issues/504>_: Fix a regression in pluggy 1.1.0 where using :func:result.get_result() <pluggy.Result.get_result>on the same failed :class:~pluggy.Resultcauses the exception's traceback to get longer and longer.#​544 <https://github.com/pytest-dev/pluggy/issues/544>_: Correctly pass :class:StopIterationthrough hook wrappers.Raising a :class:
StopIterationin a generator triggers a :class:RuntimeError.If the :class:
RuntimeErrorof a generator has the passed in :class:StopIterationas causeresume with that :class:
StopIterationas normal exception instead of failing with the :class:RuntimeError.#​573 <https://github.com/pytest-dev/pluggy/issues/573>_: Fix python 3.14 SyntaxError by rearranging code.shapely/shapely (shapely)
v2.1.1Compare Source
Bug fixes:
of certain positional arguments) (#2283).
from_ragged_array()(#2291).v2.1.0Compare Source
Shapely 2.1.0 is a feature release with various new functions,
improvements and bug fixes. Highlights include initial support for geometries
with M or ZM values, functionality for coverage validation and
simplification, and a set of new top-level functions.
Shapely supports Python >= 3.10, and binary wheels on PyPI include GEOS 3.13.1
and are now also provided for musllinux (Alpine) x86_64 platforms.
For a full changelog, see
https://shapely.readthedocs.io/en/latest/release/2.x.html#version-2-1-0
python/typing_extensions (typing-extensions)
v4.14.0Compare Source
Changes since 4.14.0rc1:
__or__and__ror__methods fromtyping_extensions.Sentinelon Python versions <3.10. PEP 604 was introduced in Python 3.10, and
typing_extensionsdoes not generally attempt to backport PEP-604 methodsto prior versions.
typing_extensions.evaluate_forward_refwith changes in Python 3.14.v4.13.2Compare Source
TypeErrorwhen taking the union oftyping_extensions.TypeAliasTypeand atyping.TypeAliasTypeon Python 3.12 and 3.13.Patch by Joren Hammudoglu.
to avoid having user arguments shadowed in generated
__new__by@typing_extensions.deprecated.Patch by Victorien Plot.
v4.13.1Compare Source
Bugfixes:
TypeErrorwhen usingConcatenate.Patch by Daraan.
TypeErrorwhen usingevaluate_forward_refon Python 3.10.1-2 and 3.9.8-10.Patch by Daraan.
urllib3/urllib3 (urllib3)
v2.4.0Compare Source
==================
Features
#​3522 <https://github.com/urllib3/urllib3/issues/3522>__)#​3567 <https://github.com/urllib3/urllib3/issues/3567>__)verify_flagsoption tocreate_urllib3_contextwith a default ofVERIFY_X509_PARTIAL_CHAINandVERIFY_X509_STRICTfor Python 3.13+. (#​3571 <https://github.com/urllib3/urllib3/issues/3571>__)Bugfixes
#​3555 <https://github.com/urllib3/urllib3/issues/3555>__)Misc
#​3550 <https://github.com/urllib3/urllib3/issues/3550>__)multiple.intoto.jsonlasset from GitHub releases. Attestation of release files since v2.3.0 can be found on PyPI. (#​3566 <https://github.com/urllib3/urllib3/issues/3566>__)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.
This PR was generated by Mend Renovate. View the repository job log.