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 #2033

Merged
merged 2 commits into from
Oct 1, 2024

Conversation

renovate-bot
Copy link
Contributor

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Fiona ==1.10.0 -> ==1.10.1 age adoption passing confidence
argcomplete (changelog) ==3.4.0 -> ==3.5.0 age adoption passing confidence
bigquery-magics ==0.3.0 -> ==0.4.0 age adoption passing confidence
bigquery_magics ==0.3.0 -> ==0.4.0 age adoption passing confidence
filelock ==3.15.4 -> ==3.16.1 age adoption passing confidence
google-api-core ==2.19.2 -> ==2.20.0 age adoption passing confidence
google-auth ==2.34.0 -> ==2.35.0 age adoption passing confidence
google-cloud-bigquery ==3.25.0 -> ==3.26.0 age adoption passing confidence
google.cloud.bigquery ==3.25.0 -> ==3.26.0 age adoption passing confidence
pandas (source) ==2.2.2 -> ==2.2.3 age adoption passing confidence
platformdirs (changelog) ==4.2.2 -> ==4.3.6 age adoption passing confidence
urllib3 (changelog) ==2.2.2 -> ==2.2.3 age adoption passing confidence
virtualenv ==20.26.3 -> ==20.26.5 age adoption passing confidence

Release Notes

Toblerity/Fiona (Fiona)

v1.10.1

Compare Source

Bug fixes:

  • Several typos were found and fixed (#​1448). One variable was renamed and one
    the ContextVar in _vsipyopener.pyx was renamed.
  • Logging in the CRS class no longer tries to print representations of objects
    that may be NULL when searching for authority matches (#​1445).
kislyuk/argcomplete (argcomplete)

v3.5.0

Compare Source

===============================

  • Use project.scripts instead of setuptools scripts (#​498)

  • Test infrastructure improvements

googleapis/python-bigquery-magics (bigquery-magics)

v0.4.0

Compare Source

Features
  • Add support for overriding context.engine by magic argument (#​60) (ff57f14)
tox-dev/py-filelock (filelock)

v3.16.1

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.16.0...3.16.1

v3.16.0

Compare Source

What's Changed

Full Changelog: tox-dev/filelock@3.15.4...3.16.0

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

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)
googleapis/google-auth-library-python (google-auth)

v2.35.0

Compare Source

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

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
pandas-dev/pandas (pandas)

v2.2.3: Pandas 2.2.3

Compare Source

We are pleased to announce the release of pandas 2.2.3.
This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes.
Pandas 2.2.3 supports Python 3.9 and higher.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

tox-dev/platformdirs (platformdirs)

v4.3.6

Compare Source

What's Changed

Full Changelog: tox-dev/platformdirs@4.3.5...4.3.6

v4.3.5

Compare Source

What's Changed

Full Changelog: tox-dev/platformdirs@4.3.4...4.3.5

v4.3.4

Compare Source

What's Changed

Full Changelog: tox-dev/platformdirs@4.3.3...4.3.4

v4.3.3

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.3.2...4.3.3

v4.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.3.1...4.3.2

v4.3.1

Compare Source

Full Changelog: tox-dev/platformdirs@4.3.0...4.3.1

v4.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: tox-dev/platformdirs@4.2.2...4.3.0

urllib3/urllib3 (urllib3)

v2.2.3

Compare Source

==================

Features

  • Added support for Python 3.13. (#&#8203;3473 <https://github.com/urllib3/urllib3/issues/3473>__)

Bugfixes

  • Fixed the default encoding of chunked request bodies to be UTF-8 instead of ISO-8859-1.
    All other methods of supplying a request body already use UTF-8 starting in urllib3 v2.0. (#&#8203;3053 <https://github.com/urllib3/urllib3/issues/3053>__)
  • Fixed ResourceWarning on CONNECT with Python < 3.11.4 by backporting https://github.com/python/cpython/issues/103472. (#&#8203;3252 <https://github.com/urllib3/urllib3/issues/3252>__)
  • Adjust tolerance for floating-point comparison on Windows to avoid flakiness in CI (#&#8203;3413 <https://github.com/urllib3/urllib3/issues/3413>__)
  • Fixed a crash where certain standard library hash functions were absent in restricted environments. (#&#8203;3432 <https://github.com/urllib3/urllib3/issues/3432>__)
  • Fixed mypy error when adding to HTTPConnection.default_socket_options. (#&#8203;3448 <https://github.com/urllib3/urllib3/issues/3448>__)

HTTP/2 (experimental)

HTTP/2 support is still in early development.

  • Excluded Transfer-Encoding: chunked from HTTP/2 request body (#&#8203;3425 <https://github.com/urllib3/urllib3/issues/3425>__)

  • Added version checking for h2 (https://pypi.org/project/h2/) usage.

    Now only accepting supported h2 major version 4.x.x. (#&#8203;3290 <https://github.com/urllib3/urllib3/issues/3290>__)

  • Added a probing mechanism for determining whether a given target origin
    supports HTTP/2 via ALPN. (#&#8203;3301 <https://github.com/urllib3/urllib3/issues/3301>__)

  • Add support for sending a request body with HTTP/2 (#&#8203;3302 <https://github.com/urllib3/urllib3/issues/3302>__)

Deprecations and Removals

  • Note for downstream distributors: the _version.py file has been removed and is now created at build time by hatch-vcs. (#&#8203;3412 <https://github.com/urllib3/urllib3/issues/3412>__)
  • Drop support for end-of-life PyPy3.8 and PyPy3.9. (#&#8203;3475 <https://github.com/urllib3/urllib3/issues/3475>__)
pypa/virtualenv (virtualenv)

v20.26.5

Compare Source

v20.26.4

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/virtualenv@20.26.3...20.26.4


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 September 26, 2024 20:09
@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 Sep 26, 2024
@product-auto-label product-auto-label bot added size: s Pull request size is small. api: bigquery Issues related to the googleapis/python-bigquery API. labels Sep 26, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Sep 26, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 26, 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 Sep 26, 2024
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Sep 26, 2024
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 26, 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.

@Linchin Linchin assigned Linchin and unassigned GaoleMeng Oct 1, 2024
@Linchin Linchin merged commit e29b987 into googleapis:main Oct 1, 2024
18 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. size: s Pull request size is small.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants