Skip to content
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(deps): update all dependencies #1640

Merged
merged 11 commits into from
Feb 29, 2024

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Aug 11, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
certifi ==2023.7.22 -> ==2023.11.17 age adoption passing confidence
cffi (source, changelog) ==1.15.1 -> ==1.16.0 age adoption passing confidence
charset-normalizer ==3.2.0 -> ==3.3.2 age adoption passing confidence
click (changelog) ==8.1.6 -> ==8.1.7 age adoption passing confidence
db-dtypes ==1.1.1 -> ==1.2.0 age adoption passing confidence
geopandas ==0.13.2 -> ==0.14.1 age adoption passing confidence
google-api-core ==2.11.1 -> ==2.15.0 age adoption passing confidence
google-auth ==2.22.0 -> ==2.25.2 age adoption passing confidence
google-auth-oauthlib ==1.0.0 -> ==1.2.0 age adoption passing confidence
google-cloud-bigquery ==3.11.4 -> ==3.14.1 age adoption passing confidence
google-cloud-bigquery-storage ==2.22.0 -> ==2.24.0 age adoption passing confidence
google-cloud-core ==2.3.3 -> ==2.4.1 age adoption passing confidence
google-cloud-testutils ==1.3.3 -> ==1.4.0 age adoption passing confidence
google-resumable-media ==2.5.0 -> ==2.7.0 age adoption passing confidence
google.cloud.bigquery ==3.11.4 -> ==3.14.1 age adoption passing confidence
googleapis-common-protos ==1.60.0 -> ==1.62.0 age adoption passing confidence
grpcio (source) ==1.59.0 -> ==1.60.0 age adoption passing confidence
idna (changelog) ==3.4 -> ==3.6 age adoption passing confidence
ipython (source) ==8.14.0 -> ==8.18.1 age adoption passing confidence
libcst (changelog) ==1.0.1 -> ==1.1.0 age adoption passing confidence
matplotlib (source) ==3.7.2 -> ==3.8.2 age adoption passing confidence
packaging ==23.1 -> ==23.2 age adoption passing confidence
pandas (source) ==2.0.3 -> ==2.1.4 age adoption passing confidence
proto-plus (source) ==1.22.3 -> ==1.23.0 age adoption passing confidence
pyasn1 (changelog) ==0.5.0 -> ==0.5.1 age adoption passing confidence
pytest (source, changelog) ==7.4.0 -> ==7.4.3 age adoption passing confidence
pytz ==2023.3 -> ==2023.3.post1 age adoption passing confidence
typing-extensions (changelog) ==4.7.1 -> ==4.9.0 age adoption passing confidence
urllib3 (changelog) ==1.26.18 -> ==2.1.0 age adoption passing confidence

Release Notes

certifi/python-certifi (certifi)

v2023.11.17

Compare Source

python-cffi/cffi (cffi)

v1.16.0

Compare Source

  • Add support for Python 3.12. With the removal of distutils from Python 3.12, projects
    using CFFI features that depend on distutils at runtime must add a dependency on
    setuptools to function under Python 3.12+. CFFI does not declare a runtime setuptools
    requirement to avoid an unnecessary dependency for projects that do not require it.
  • Drop support for end-of-life Python versions (2.7, 3.6, 3.7).
  • Add support for PEP517 builds; setuptools is now a required build dependency.
  • Declare python_requires metadata for Python 3.8+. This allows unsupported Pythons
    to continue using previously released sdists and wheels.
  • Move project source under src/; a more standard layout that also enables CI to more easily
    catch packaging errors.
Ousret/charset_normalizer (charset-normalizer)

v3.3.2

Compare Source

Fixed
  • Unintentional memory usage regression when using large payload that match several encoding (#​376)
  • Regression on some detection case showcased in the documentation (#​371)
Added
  • Noise (md) probe that identify malformed arabic representation due to the presence of letters in isolated form (credit to my wife)

v3.3.1

Compare Source

Changed
  • Optional mypyc compilation upgraded to version 1.6.1 for Python >= 3.8
  • Improved the general detection reliability based on reports from the community

v3.3.0

Compare Source

Added
  • Allow to execute the CLI (e.g. normalizer) through python -m charset_normalizer.cli or python -m charset_normalizer
  • Support for 9 forgotten encoding that are supported by Python but unlisted in encoding.aliases as they have no alias (#​323)
Removed
  • (internal) Redundant utils.is_ascii function and unused function is_private_use_only
  • (internal) charset_normalizer.assets is moved inside charset_normalizer.constant
Changed
  • (internal) Unicode code blocks in constants are updated using the latest v15.0.0 definition to improve detection
  • Optional mypyc compilation upgraded to version 1.5.1 for Python >= 3.7
Fixed
  • Unable to properly sort CharsetMatch when both chaos/noise and coherence were close due to an unreachable condition in __lt__ (#​350)
googleapis/python-db-dtypes-pandas (db-dtypes)

v1.2.0

Compare Source

Features
Bug Fixes
  • Adds xfail marks to tests that are known to fail (#​189) (4a56b76)
Documentation
geopandas/geopandas (geopandas)

v0.14.1

Compare Source

  • The Parquet and Feather IO functions now support the latest 1.0.0 version
    of the GeoParquet specification (geoparquet.org) (#​2663).
  • Fix read_parquet and read_feather for CVE-2023-47248 (#​3070).

v0.14.0

Compare Source

GeoPandas will use Shapely 2.0 by default instead of PyGEOS when both Shapely >= 2.0 and
PyGEOS are installed. PyGEOS will continue to be used by default when PyGEOS is
installed alongside Shapely < 2.0. Support for PyGEOS and Shapely < 2.0 will be removed
in GeoPandas 1.0. (#​2999)

API changes:

  • seed keyword in sample_points is deprecated. Use rng instead. (#​2913).

New methods:

  • Added concave_hull method from shapely to GeoSeries/GeoDataframe (#​2903).
  • Added delaunay_triangles method from shapely to GeoSeries/GeoDataframe (#​2907).
  • Added extract_unique_points method from shapely to GeoSeries/GeoDataframe (#​2915).
  • Added frechet_distance() method from shapely to GeoSeries/GeoDataframe (#​2929).
  • Added hausdorff_distance method from shapely to GeoSeries/GeoDataframe (#​2909).
  • Added minimum_rotated_rectangle method from shapely to GeoSeries/GeoDataframe (#​2541).
  • Added offset_curve method from shapely to GeoSeries/GeoDataframe (#​2902).
  • Added remove_repeated_points method from shapely to GeoSeries/GeoDataframe (#​2940).
  • Added reverse method from shapely to GeoSeries/GeoDataframe (#​2988).
  • Added segmentize method from shapely to GeoSeries/GeoDataFrame (#​2910).
  • Added shortest_line method from shapely to GeoSeries/GeoDataframe (#​2960).

New features and improvements:

  • Added exclusive parameter to sjoin_nearest method for Shapely >= 2.0 (#​2877)
  • The to_file() method will now automatically detect the FlatGeoBuf driver
    for files with the .fgb extension (#​2958)

Bug fixes:

  • Fix ambiguous error when GeoDataFrame is initialized with a column called "crs" (#​2944)
  • Fix a color assignment in explore when using UserDefined bins (#​2923)
  • Fix bug in apply with axis=1 where the given user defined function returns nested
    data in the geometry column (#​2959)
  • Properly infer schema for np.int32 and pd.Int32Dtype columns (#​2950)
  • assert_geodataframe_equal now handles GeoDataFrames with no active geometry (#​2498)

Notes on (optional) dependencies:

  • GeoPandas 0.14 drops support for Python 3.8 and pandas 1.3 and below (the minimum
    supported pandas version is now 1.4). Further, the minimum required versions for the
    listed dependencies have now changed to shapely 1.8.0, fiona 1.8.21, pyproj 3.3.0 and
    matplotlib 3.5.0 (#​3001)

Deprecations and compatibility notes:

  • geom_almost_equals() methods have been deprecated and
    geom_equals_exact() should be used instead (#​2604).

Acknowledgments

Thanks to everyone who contributed to this release!
A total of 16 people contributed patches to this release. People with a "+" by their names contributed for the first time.

Full Changelog: geopandas/geopandas@v0.13.2...v0.14.0

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

v2.15.0

Compare Source

Features
Bug Fixes
  • Fix regression in bidi causing Thread-ConsumeBidirectionalStream caught unexpected exception and will exit (#​562) (40c8ae0)
  • Replace deprecated datetime.datetime.utcnow() (#​552) (448923a), closes #​540

v2.14.0

Compare Source

Features

v2.13.1

Compare Source

Bug Fixes

v2.13.0

Compare Source

Features
Bug Fixes
  • Add warning to retry target to avoid incorrect usage (#​543) (bfb40e6)
  • Drop usage of distutils (#​541) (4bd9e10)
  • Ensure exception is available when BackgroundConsumer open stream fails (#​357) (405272c)

v2.12.0

Compare Source

Features
  • Add a little bit of typing to google.api_core.retry (#​453) (2477ab9)
  • Add grpc Compression argument to channels and methods (#​451) (bdebd63)
Documentation
googleapis/google-auth-library-python (google-auth)

v2.25.2

Compare Source

Bug Fixes

v2.25.1

Compare Source

Bug Fixes

v2.25.0

Compare Source

Features
  • Add custom tls signer for ECP Provider. (39eb287)
  • Add custom tls signer for ECP Provider. (#​1402) (39eb287)
Bug Fixes

v2.24.0

Compare Source

Features
Bug Fixes
Documentation

v2.23.4

Compare Source

Bug Fixes

v2.23.3

Compare Source

Bug Fixes

v2.23.2

Compare Source

Bug Fixes

v2.23.1

Compare Source

Bug Fixes
  • Less restrictive content-type header check for google authentication (ignores charset) (#​1382) (7039beb)
  • Trust boundary meta header renaming and using the schema from backend team. (#​1384) (2503d4a)
  • Update urllib3 to >= 2.0.5 (#​1389) (a99f3bb)

v2.23.0

Compare Source

Features
  • Add get_bq_config_path() to _cloud_sdk.py (9f52f66)
  • Add get_bq_config_path() to _cloud_sdk.py (#​1358) (9f52f66)
Bug Fixes
  • Expose universe domain in credentials (#​1380) (8b8fce6)
  • Make external_account resistant to string type 'expires_in' responses from non-compliant services (#​1379) (01d3770)
  • Missing ssj for impersonate cred (#​1377) (7d453dc)
  • Skip checking projectid on cred if env var is set (#​1349) (a4135a3)
GoogleCloudPlatform/google-auth-library-python-oauthlib (google-auth-oauthlib)

v1.2.0

Compare Source

Features
Bug Fixes

v1.1.0

Compare Source

Features
  • Adding support to specify browser while launching browser to authention (#​305) (1a9dca8), closes #​303
  • Pass thru OAuth audience during InstalledAppFlow.run_local_server (#​300) (fe08531)
Documentation
googleapis/python-bigquery (google-cloud-bigquery)

v3.14.1

Compare Source

Bug Fixes

v3.14.0

Compare Source

Features
Bug Fixes
  • load_table_from_dataframe now assumes there may be local null values (#​1735) (f05dc69)
  • Ensure query job retry has longer deadline than API request deadline (#​1734) (5573579)
  • Keep RowIterator.total_rows populated after iteration (#​1748) (8482f47)
  • Move grpc, proto-plus and protobuf packages to extras (#​1721) (5ce4d13)
Performance Improvements
  • Use the first page a results when query(api_method="QUERY") (#​1723) (6290517)

v3.13.0

Compare Source

Features
Bug Fixes
Documentation

v3.12.0

Compare Source

Features
  • Add Dataset.storage_billing_model setter, use client.update_dataset(ds, fields=["storage_billing_model"]) to update (#​1643) (5deba50)
  • Search statistics (#​1616) (b930e46)
  • Widen retry predicate to include ServiceUnavailable (#​1641) (3e021a4)
Bug Fixes
Documentation
googleapis/python-bigquery-storage (google-cloud-bigquery-storage)

v2.24.0

Compare Source

Features
  • Add support for Python 3.12 (4834ed1)
  • Introduce compatibility with native namespace packages (#​706) (59f9564)
Bug Fixes
  • Use retry_async instead of retry in async client (#​713) (4e18437)

v2.23.0

Compare Source

Features
  • Add default_missing_value_interpretation field; indicate KMS_SERVICE_ERROR is retryable (#​637) (9550ea6)
Bug Fixes
Documentation
googleapis/python-cloud-core (google-cloud-core)

v2.4.1

Compare Source

Bug Fixes

v2.4.0

Compare Source

Features
googleapis/python-test-utils (google-cloud-testutils)

v1.4.0

[


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 has been generated by Mend Renovate. View repository job log here.

@renovate-bot renovate-bot requested review from a team as code owners August 11, 2023 18:47
@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 Aug 11, 2023
@product-auto-label product-auto-label bot added size: xs Pull request size is extra small. api: bigquery Issues related to the googleapis/python-bigquery API. labels Aug 11, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Aug 11, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Aug 11, 2023
@renovate-bot renovate-bot changed the title chore(deps): update dependency urllib3 to v2 chore(deps): update all dependencies Aug 17, 2023
@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 Aug 17, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Aug 17, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Aug 17, 2023
@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 Aug 23, 2023
@product-auto-label product-auto-label bot added size: s Pull request size is small. and removed size: xs Pull request size is extra small. labels Aug 23, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Aug 23, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Aug 23, 2023
@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 Aug 30, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Aug 30, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Aug 30, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
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 the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Dec 14, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 8, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 8, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 27, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 27, 2024
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 29, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Feb 29, 2024
Copy link
Contributor

@chalmerlowe chalmerlowe left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@chalmerlowe chalmerlowe merged commit 073724c into googleapis:main Feb 29, 2024
19 checks passed
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 API. owlbot:run Add this label to trigger the Owlbot post processor. size: m Pull request size is medium.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants