Skip to content

chore(deps): update all dependencies #1136

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 8 commits into from
Nov 15, 2024

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Nov 13, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
alembic (source, changelog) ==1.13.1 -> ==1.14.0 age adoption passing confidence
attrs (changelog) ==23.2.0 -> ==24.2.0 age adoption passing confidence
certifi ==2024.7.4 -> ==2024.8.30 age adoption passing confidence
charset-normalizer ==3.3.2 -> ==3.4.0 age adoption passing confidence
geoalchemy2 (source) ==0.15.1 -> ==0.16.0 age adoption passing confidence
google-api-core ==2.19.0 -> ==2.23.0 age adoption passing confidence
google-auth ==2.29.0 -> ==2.36.0 age adoption passing confidence
google-cloud-bigquery ==3.24.0 -> ==3.27.0 age adoption passing confidence
google-crc32c ==1.5.0 -> ==1.6.0 age adoption passing confidence
google-resumable-media ==2.7.0 -> ==2.7.2 age adoption passing confidence
googleapis-common-protos ==1.63.1 -> ==1.66.0 age adoption passing confidence
greenlet ==3.0.3 -> ==3.1.1 age adoption passing confidence
grpcio (source) ==1.62.2 -> ==1.67.1 age adoption passing confidence
grpcio-status ==1.62.2 -> ==1.67.1 age adoption passing confidence
idna (changelog) ==3.7 -> ==3.10 age adoption passing confidence
importlib-resources ==6.4.0 -> ==6.4.5 age adoption passing confidence
mako (source) ==1.3.5 -> ==1.3.6 age adoption passing confidence
markupsafe (changelog) ==2.1.5 -> ==3.0.2 age adoption passing confidence
packaging ==24.0 -> ==24.2 age adoption passing confidence
proto-plus (source) ==1.23.0 -> ==1.25.0 age adoption passing confidence
pyasn1 (changelog) ==0.6.0 -> ==0.6.1 age adoption passing confidence
pyasn1-modules (changelog) ==0.4.0 -> ==0.4.1 age adoption passing confidence
pyparsing ==3.1.2 -> ==3.2.0 age adoption passing confidence
pytz ==2024.1 -> ==2024.2 age adoption passing confidence
shapely ==2.0.4 -> ==2.0.6 age adoption passing confidence
tomli (changelog) ==2.0.2 -> ==2.1.0 age adoption passing confidence
typing-extensions (changelog) ==4.12.1 -> ==4.12.2 age adoption passing confidence
urllib3 (changelog) ==2.2.2 -> ==2.2.3 age adoption passing confidence

Release Notes

python-attrs/attrs (attrs)

v24.2.0

Compare Source

Deprecations
  • Given the amount of warnings raised in the broader ecosystem, we've decided to only soft-deprecate the hash argument to @define / @attr.s.
    Please don't use it in new code, but we don't intend to remove it anymore.
    #​1330
Changes
  • attrs.converters.pipe() (and its syntactic sugar of passing a list for attrs.field()'s / attr.ib()'s converter argument) works again when passing attrs.setters.convert to on_setattr (which is default for attrs.define).
    #​1328
  • Restored support for PEP 649 / 749-implementing Pythons -- currently 3.14-dev.
    #​1329

v24.1.0

Compare Source

Backwards-incompatible Changes
  • attrs.evolve() doesn't accept the inst argument as a keyword argument anymore.
    Pass it as the first positional argument instead.
    #​1264

  • attrs.validators.provides() has been removed.
    The removed code is available as a gist for convenient copy and pasting.
    #​1265

  • All packaging metadata except from __version__ and __version_info__ has been removed from the attr and attrs modules (for example, attrs.__url__).

    Please use importlib.metadata or importlib-metadata instead.
    #​1268

  • The generated __eq__ methods have been sped up significantly by generating a chain of attribute comparisons instead of constructing and comparing tuples.
    This change arguably makes the behavior more correct,
    but changes it if an attribute compares equal by identity but not value, like float('nan').
    #​1310

Deprecations
  • The repr_ns argument to attr.s is now deprecated.
    It was a workaround for nested classes in Python 2 and is pointless in Python 3.
    #​1263
  • The hash argument to @attr.s, @attrs.define, and make_class() is now deprecated in favor of unsafe_hash, as defined by PEP 681.
    #​1323
Changes
  • Allow original slotted functools.cached_property classes to be cleaned by garbage collection.
    Allow super() calls in slotted cached properties.
    #​1221

  • Our type stubs now use modern type notation and are organized such that VS Code's quick-fix prefers the attrs namespace.
    #​1234

  • Preserve AttributeError raised by properties of slotted classes with functools.cached_properties.
    #​1253

  • It is now possible to wrap a converter into an attrs.Converter and get the current instance and/or the current field definition passed into the converter callable.

    Note that this is not supported by any type checker, yet.
    #​1267

  • attrs.make_class() now populates the __annotations__ dict of the generated class, so that attrs.resolve_types() can resolve them.
    #​1285

  • Added the attrs.validators.or_() validator.
    #​1303

  • The combination of a __attrs_pre_init__ that takes arguments, a kw-only field, and a default on that field does not crash anymore.
    #​1319

  • attrs.validators.in_() now transforms certain unhashable options to tuples to keep the field hashable.

    This allows fields that use this validator to be used with, for example, attrs.filters.include().
    #​1320

  • If a class has an inherited method called __attrs_init_subclass__, it is now called once the class is done assembling.

    This is a replacement for Python's __init_subclass__ and useful for registering classes, and similar.
    #​1321

certifi/python-certifi (certifi)

v2024.8.30

Compare Source

Ousret/charset_normalizer (charset-normalizer)

v3.4.0

Compare Source

Added
  • Argument --no-preemptive in the CLI to prevent the detector to search for hints.
  • Support for Python 3.13 (#​512)
Fixed
  • Relax the TypeError exception thrown when trying to compare a CharsetMatch with anything else than a CharsetMatch.
  • Improved the general reliability of the detector based on user feedbacks. (#​520) (#​509) (#​498) (#​407) (#​537)
  • Declared charset in content (preemptive detection) not changed when converting to utf-8 bytes. (#​381)
geoalchemy/geoalchemy2 (geoalchemy2)

v0.16.0

Compare Source

v0.15.2

Compare Source

googleapis/python-api-core (google-api-core)

v2.23.0

Compare Source

Features

v2.22.0

Compare Source

Features
Bug Fixes

v2.21.0

Compare Source

Features
  • Add support for asynchronous long running operations (#​724) (aaed69b)
Bug Fixes

v2.20.0

Compare Source

Features
  • Add async unsupported paramater exception (#​694) (8c137fe)
  • Add support for asynchronous rest streaming (#​686) (1b7bb6d)
  • Add support for creating exceptions from an asynchronous response (#​688) (1c4b0d0)

v2.19.2

Compare Source

Bug Fixes
  • Fail gracefully if could not import rpc_status module (#​680) (7ccbf57)

v2.19.1

Compare Source

Bug Fixes
googleapis/google-auth-library-python (google-auth)

v2.36.0

Compare Source

Features
Bug Fixes

v2.35.0

Compare Source

Features
Bug Fixes

v2.34.0

Compare Source

Features
  • auth: Update get_client_ssl_credentials to support X.509 workload certs (#​1558) (18c2ec1)
Bug Fixes

v2.33.0

Compare Source

Features
  • Implement async StaticCredentials using access tokens (#​1559) (dc17dfc)
  • Implement base classes for credentials and request sessions (#​1551) (036dac4)
Bug Fixes
  • metadata: Enhance retry logic for metadata server access in _metadata.py (#​1545) (61c2432)
Documentation

v2.32.0

Compare Source

Features

v2.31.0

Compare Source

Features
Bug Fixes

v2.30.0

Compare Source

Features
Bug Fixes
googleapis/python-bigquery (google-cloud-bigquery)

v3.27.0

Compare Source

Features

v3.26.0

Compare Source

Features
Bug Fixes
  • Add docfx to the presubmit configuration and delete docs-presubmit (#​1995) (bd83cfd)
  • Add warning when encountering unknown field types (#​1989) (8f5a41d)
  • Allow protobuf 5.x; require protobuf >=3.20.2; proto-plus >=1.22.3 (#​1976) (57bf873)
  • Do not set job timeout extra property if None (#​1987) (edcb79c)
  • Set pyarrow field nullable to False for a BigQuery field in REPEATED mode (#​1999) (5352870)
Dependencies
  • Bump min version of google-api-core and google-cloud-core to 2.x (#​1972) (a958732)
Documentation

v3.25.0

Compare Source

Features
Bug Fixes
  • Do not overwrite page_size with max_results when start_index is set (#​1956) (7d0fcee)
googleapis/python-crc32c (google-crc32c)

v1.6.0

Compare Source

Features
  • Add support for python 3.12 (#​177) (5ff1207)
  • Build using Visual Studio 17 2022 instead of Visual Studio 16 2019 (c1c8c59)
Bug Fixes
  • Drop support for python 3.7 and 3.8 (c1c8c59)
  • Drop support for Windows 32bit which is not supported in Visual Studio 17 2022 (c1c8c59)
  • Remove manylinux1 which is no longer supported by PyPA (#​186) (79edb3f)
googleapis/google-resumable-media-python (google-resumable-media)

v2.7.2

Compare Source

Bug Fixes
  • Correctly calculate starting offset for retries of ranged reads (#​450) (34302b4)

v2.7.1

Compare Source

Bug Fixes
googleapis/python-api-common-protos (googleapis-common-protos)

v1.66.0

Compare Source

Features
  • Add MISSING_ORIGIN and OVERLOADED_CREDENTIALS to ErrorReason enum (d0478d8)
  • Add field protobuf_pythonic_types_enabled to ExperimentalFeatures message (d0478d8)
  • Add field selective_gapic_generation to CommonLanguageSettings message (d0478d8)
  • Add field time_series_resource_hierarchy_level to MetricDescriptorMetadata message (d0478d8)
  • Add message SelectiveGapicGeneration (d0478d8)

v1.65.0

Compare Source

Features
  • Add field experimental_features to message PythonSettings (#​249) (139490f)

v1.64.0

Compare Source

Features
  • Add FieldInfo.referenced_types for generics (2ba3577)
Bug Fixes
  • Un-deprecate Endpoint.aliases field (2ba3577)
Documentation
  • Fix formatting in http.proto comments (2ba3577)
  • Improve MethodSettings selector examples (2ba3577)
  • Reformat comments in context proto (2ba3577)
  • Update ResourceDescriptor.plural docs with AIP-122 nested collections guidance (2ba3577)

v1.63.2

Compare Source

Bug Fixes
  • deps: Require protobuf>=3.20.2 (c77c0dc)
  • Regenerate pb2 files for compatibility with protobuf 5.x (c77c0dc)
grpc/grpc (grpcio)

v1.67.1

Compare Source

This is release gRPC Core 1.67.1 (gesundheit). This is a Python-only patch release.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes.

v1.67.0

Compare Source

This is release 1.67.0 (gesundheit) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

C++

  • [OTel C++] Fix race when adding and removing callbacks. (#​37485)

Python

  • [Backport to 1.67.x] Add templating and support for Python 3.13 (#​37643). (#​37803)
  • Add templating and support for Python 3.13. (#​37643)
  • [Python Distrib] Change warning to RuntimeError for version incompatibility. (#​37466)
  • [reflection]: python: reflection returns original_request. (#​36944)

Ruby

  • [ruby] drop ruby 2.7 support. (#​37430)
  • [ruby] reduce ruby gpr_log invocations from INFO to DEBUG. (#​37426)
  • [ruby] refactor flaky test and expose cancel_with_status. (#​37410)

v1.66.2

Compare Source

This is release gRPC Core 1.66.2 (gladiator).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes.

What's Changed

Python
  • Added support for Python 3.13 and templating system for supported Python versions (#​37643)

Full Changelog: grpc/grpc@v1.66.1...v1.66.2

v1.66.1

Compare Source

This is release gRPC Core 1.66.1 (gladiator).

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes.

Core

v1.66.0

Compare Source

This is release 1.66.0 (gladiator) of gRPC Core.

For gRPC documentation, see grpc.io. For previous releases, see Releases.

This release contains refinements, improvements, and bug fixes, with highlights listed below.

Core

  • [Python Otel] Manage call tracer life cycle use call arena. (v1.66.x backport). (#​37479)
  • [BoringSSL] Update third_party/boringssl-with-bazel. (#​37223)
  • [Dep] Upgrading Protobuf to v27.2. (#​36753)
  • [Gpr_To_Absl_Logging] Fixing bugs . (#​36961)
  • [chttp2] don't access endpoint in transport ops if it's already been destr

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate-bot renovate-bot requested review from a team as code owners November 13, 2024 15:31
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 13, 2024
@product-auto-label product-auto-label bot added the size: m Pull request size is medium. label Nov 13, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 13, 2024
@product-auto-label product-auto-label bot added api: bigquery Issues related to the googleapis/python-bigquery-sqlalchemy API. samples Issues that are directly related to samples. labels Nov 13, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 13, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 13, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 13, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 13, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 13, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 13, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 13, 2024
Copy link

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 15, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 15, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 15, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 15, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 15, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 15, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 15, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 15, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 15, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 15, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 15, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 15, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added kokoro:force-run Add this label to force Kokoro to re-run the tests. owlbot:run Add this label to trigger the Owlbot post processor. labels Nov 15, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Nov 15, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Nov 15, 2024
@parthea parthea merged commit 29ef68a into googleapis:main Nov 15, 2024
13 of 14 checks passed
chalmerlowe pushed a commit that referenced this pull request Nov 21, 2024
* chore(deps): update all dependencies

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* Update protobuf to 5.28.3

* pin google-crc32c for python 3.7/3.8

* Pin mako for python 3.8

* Pin markupsafe for Python 3.8

* Pin pyparsing for python 3.8

* Pin pyparsing for Python 3.8

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
chalmerlowe added a commit that referenced this pull request Nov 22, 2024
#1113)

* adds additional functionality to cover more partitioning capability

* Updates the partitioning algorithm and tests

* Updates special case and tests

* Updates test in possible effort to increase coverage.

* Tweaks the conditionals in time partitioning process

* Updates linting

* chore(deps): update all dependencies (#1136)

* chore(deps): update all dependencies

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

* Update protobuf to 5.28.3

* pin google-crc32c for python 3.7/3.8

* Pin mako for python 3.8

* Pin markupsafe for Python 3.8

* Pin pyparsing for python 3.8

* Pin pyparsing for Python 3.8

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>

* chore(deps): update all dependencies (#1140)

* chore(deps): update all dependencies

* 🦉 Updates from OwlBot post-processor

See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md

---------

Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>

* Removes duplicate test

---------

Co-authored-by: Mend Renovate <bot@renovateapp.com>
Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
Co-authored-by: Anthonios Partheniou <partheniou@google.com>
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. samples Issues that are directly related to samples. size: m Pull request size is medium.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants