-
Notifications
You must be signed in to change notification settings - Fork 138
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
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
parthea
reviewed
Nov 13, 2024
Edited/Blocked NotificationRenovate 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. |
parthea
approved these changes
Nov 15, 2024
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.
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.13.1
->==1.14.0
==23.2.0
->==24.2.0
==2024.7.4
->==2024.8.30
==3.3.2
->==3.4.0
==0.15.1
->==0.16.0
==2.19.0
->==2.23.0
==2.29.0
->==2.36.0
==3.24.0
->==3.27.0
==1.5.0
->==1.6.0
==2.7.0
->==2.7.2
==1.63.1
->==1.66.0
==3.0.3
->==3.1.1
==1.62.2
->==1.67.1
==1.62.2
->==1.67.1
==3.7
->==3.10
==6.4.0
->==6.4.5
==1.3.5
->==1.3.6
==2.1.5
->==3.0.2
==24.0
->==24.2
==1.23.0
->==1.25.0
==0.6.0
->==0.6.1
==0.4.0
->==0.4.1
==3.1.2
->==3.2.0
==2024.1
->==2024.2
==2.0.4
->==2.0.6
==2.0.2
->==2.1.0
==4.12.1
->==4.12.2
==2.2.2
->==2.2.3
Release Notes
python-attrs/attrs (attrs)
v24.2.0
Compare Source
Deprecations
@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 forattrs.field()
's /attr.ib()
's converter argument) works again when passingattrs.setters.convert
to on_setattr (which is default forattrs.define
).#1328
#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 theattr
andattrs
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
attr.s
is now deprecated.It was a workaround for nested classes in Python 2 and is pointless in Python 3.
#1263
@attr.s
,@attrs.define
, andmake_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 withfunctools.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 thatattrs.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
--no-preemptive
in the CLI to prevent the detector to search for hints.Fixed
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
Any
decode error (#712) (0d5ed37)v2.21.0
Compare Source
Features
Bug Fixes
v2.20.0
Compare Source
Features
v2.19.2
Compare Source
Bug Fixes
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
AuthorizedSession
api (#1577) (2910b6b)Bug Fixes
v2.34.0
Compare Source
Features
Bug Fixes
v2.33.0
Compare Source
Features
StaticCredentials
using access tokens (#1559) (dc17dfc)Bug Fixes
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
bigquery-magics
package for the%%bigquery
magic (#1965) (60128a5)Bug Fixes
Dependencies
Documentation
v3.25.0
Compare Source
Features
Bug Fixes
googleapis/python-crc32c (google-crc32c)
v1.6.0
Compare Source
Features
Bug Fixes
googleapis/google-resumable-media-python (google-resumable-media)
v2.7.2
Compare Source
Bug Fixes
v2.7.1
Compare Source
Bug Fixes
googleapis/python-api-common-protos (googleapis-common-protos)
v1.66.0
Compare Source
Features
MISSING_ORIGIN
andOVERLOADED_CREDENTIALS
toErrorReason
enum (d0478d8)protobuf_pythonic_types_enabled
toExperimentalFeatures
message (d0478d8)selective_gapic_generation
toCommonLanguageSettings
message (d0478d8)time_series_resource_hierarchy_level
toMetricDescriptorMetadata
message (d0478d8)SelectiveGapicGeneration
(d0478d8)v1.65.0
Compare Source
Features
experimental_features
to messagePythonSettings
(#249) (139490f)v1.64.0
Compare Source
Features
Bug Fixes
Documentation
v1.63.2
Compare Source
Bug Fixes
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++
Python
original_request
. (#36944)Ruby
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
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
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.