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

Merged
merged 2 commits into from Jun 9, 2023

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Sep 9, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
alembic (source, changelog) ==1.8.1 -> ==1.11.1 age adoption passing confidence
attrs (changelog) ==22.1.0 -> ==23.1.0 age adoption passing confidence
certifi ==2022.12.7 -> ==2023.5.7 age adoption passing confidence
charset-normalizer ==2.1.1 -> ==3.1.0 age adoption passing confidence
geoalchemy2 (source) ==0.12.5 -> ==0.13.3 age adoption passing confidence
google-api-core ==2.10.0 -> ==2.11.0 age adoption passing confidence
google-auth ==2.11.0 -> ==2.19.1 age adoption passing confidence
google-cloud-bigquery ==3.3.2 -> ==3.11.0 age adoption passing confidence
google-resumable-media ==2.3.3 -> ==2.5.0 age adoption passing confidence
googleapis-common-protos ==1.56.4 -> ==1.59.0 age adoption passing confidence
greenlet ==1.1.3 -> ==2.0.2 age adoption passing confidence
grpcio (source) ==1.48.1 -> ==1.54.2 age adoption passing confidence
grpcio-status ==1.48.1 -> ==1.54.2 age adoption passing confidence
idna (changelog) ==3.3 -> ==3.4 age adoption passing confidence
importlib-resources ==5.9.0 -> ==5.12.0 age adoption passing confidence
iniconfig ==1.1.1 -> ==2.0.0 age adoption passing confidence
mako (source) ==1.2.2 -> ==1.2.4 age adoption passing confidence
markupsafe (changelog) ==2.1.1 -> ==2.1.3 age adoption passing confidence
packaging ==21.3 -> ==23.1 age adoption passing confidence
proto-plus (source) ==1.22.1 -> ==1.22.2 age adoption passing confidence
protobuf ==4.21.6 -> ==4.23.2 age adoption passing confidence
pyasn1 (changelog) ==0.4.8 -> ==0.5.0 age adoption passing confidence
pyasn1-modules (changelog) ==0.2.8 -> ==0.3.0 age adoption passing confidence
pytz ==2022.2.1 -> ==2023.3 age adoption passing confidence
shapely ==1.8.4 -> ==2.0.1 age adoption passing confidence
sqlalchemy (changelog) >=1.1.9,<2.0.0 -> >=2.0.15,<2.1.0 age adoption passing confidence
typing-extensions (changelog) ==4.3.0 -> ==4.6.3 age adoption passing confidence
urllib3 (changelog) ==1.26.12 -> ==2.0.3 age adoption passing confidence

Release Notes

python-attrs/attrs

v23.1.0

Compare Source

Backwards-incompatible Changes
  • Python 3.6 has been dropped and packaging switched to static package data using Hatch.
    #​993
Deprecations
  • The support for zope-interface via the attrs.validators.provides validator is now deprecated and will be removed in, or after, April 2024.

    The presence of a C-based package in our developement dependencies has caused headaches and we're not under the impression it's used a lot.

    Let us know if you're using it and we might publish it as a separate package.
    #​1120

Changes
  • attrs.filters.exclude() and attrs.filters.include() now support the passing of attribute names as strings.
    #​1068

  • attrs.has() and attrs.fields() now handle generic classes correctly.
    #​1079

  • Fix frozen exception classes when raised within e.g. contextlib.contextmanager, which mutates their __traceback__ attributes.
    #​1081

  • @frozen now works with type checkers that implement PEP-681 (ex. pyright).
    #​1084

  • Restored ability to unpickle instances pickled before 22.2.0.
    #​1085

  • attrs.asdict()'s and attrs.astuple()'s type stubs now accept the attrs.AttrsInstance protocol.
    #​1090

  • Fix slots class cellvar updating closure in CPython 3.8+ even when __code__ introspection is unavailable.
    #​1092

  • attrs.resolve_types() can now pass include_extras to typing.get_type_hints() on Python 3.9+, and does so by default.
    #​1099

  • Added instructions for pull request workflow to CONTRIBUTING.md.
    #​1105

  • Added type parameter to attrs.field() function for use with attrs.make_class().

    Please note that type checkers ignore type metadata passed into make_class(), but it can be useful if you're wrapping attrs.
    #​1107

  • It is now possible for attrs.evolve() (and attr.evolve()) to change fields named inst if the instance is passed as a positional argument.

    Passing the instance using the inst keyword argument is now deprecated and will be removed in, or after, April 2024.
    #​1117

  • attrs.validators.optional() now also accepts a tuple of validators (in addition to lists of validators).
    #​1122

v22.2.0

Compare Source

Backwards-incompatible Changes
  • Python 3.5 is not supported anymore.
    #​988
Deprecations
  • Python 3.6 is now deprecated and support will be removed in the next release.
    #​1017
Changes
  • attrs.field() now supports an alias option for explicit __init__ argument names.

    Get __init__ signatures matching any taste, peculiar or plain!
    The PEP 681 compatible alias option can be use to override private attribute name mangling, or add other arbitrary field argument name overrides.
    #​950

  • attrs.NOTHING is now an enum value, making it possible to use with e.g. typing.Literal.
    #​983

  • Added missing re-import of attr.AttrsInstance to the attrs namespace.
    #​987

  • Fix slight performance regression in classes with custom __setattr__ and speedup even more.
    #​991

  • Class-creation performance improvements by switching performance-sensitive templating operations to f-strings.

    You can expect an improvement of about 5% -- even for very simple classes.
    #​995

  • attrs.has() is now a TypeGuard for AttrsInstance.
    That means that type checkers know a class is an instance of an attrs class if you check it using attrs.has() (or attr.has()) first.
    #​997

  • Made attrs.AttrsInstance stub available at runtime and fixed type errors related to the usage of attrs.AttrsInstance in Pyright.
    #​999

  • On Python 3.10 and later, call abc.update_abstractmethods() on dict classes after creation.
    This improves the detection of abstractness.
    #​1001

  • attrs's pickling methods now use dicts instead of tuples.
    That is safer and more robust across different versions of a class.
    #​1009

  • Added attrs.validators.not_(wrapped_validator) to logically invert wrapped_validator by accepting only values where wrapped_validator rejects the value with a ValueError or TypeError (by default, exception types configurable).
    #​1010

  • The type stubs for attrs.cmp_using() now have default values.
    #​1027

  • To conform with PEP 681, attr.s() and attrs.define() now accept unsafe_hash in addition to hash.
    #​1065

certifi/python-certifi

v2023.5.7

Compare Source

Ousret/charset_normalizer

v3.1.0

Compare Source

Added
  • Argument should_rename_legacy for legacy function detect and disregard any new arguments without errors (PR #​262)
Removed
  • Support for Python 3.6 (PR #​260)
Changed
  • Optional speedup provided by mypy/c 1.0.1

v3.0.1

Compare Source

Fixed
  • Multi-bytes cutter/chunk generator did not always cut correctly (PR #​233)
Changed
  • Speedup provided by mypy/c 0.990 on Python >= 3.7

v3.0.0

Compare Source

Added
  • Extend the capability of explain=True when cp_isolation contains at most two entries (min one), will log in details of the Mess-detector results
  • Support for alternative language frequency set in charset_normalizer.assets.FREQUENCIES
  • Add parameter language_threshold in from_bytes, from_path and from_fp to adjust the minimum expected coherence ratio
  • normalizer --version now specify if current version provide extra speedup (meaning mypyc compilation whl)
Changed
  • Build with static metadata using 'build' frontend
  • Make the language detection stricter
  • Optional: Module md.py can be compiled using Mypyc to provide an extra speedup up to 4x faster than v2.1
Fixed
  • CLI with opt --normalize fail when using full path for files
  • TooManyAccentuatedPlugin induce false positive on the mess detection when too few alpha character have been fed to it
  • Sphinx warnings when generating the documentation
Removed
  • Coherence detector no longer return 'Simple English' instead return 'English'
  • Coherence detector no longer return 'Classical Chinese' instead return 'Chinese'
  • Breaking: Method first() and best() from CharsetMatch
  • UTF-7 will no longer appear as "detected" without a recognized SIG/mark (is unreliable/conflict with ASCII)
  • Breaking: Class aliases CharsetDetector, CharsetDoctor, CharsetNormalizerMatch and CharsetNormalizerMatches
  • Breaking: Top-level function normalize
  • Breaking: Properties chaos_secondary_pass, coherence_non_latin and w_counter from CharsetMatch
  • Support for the backport unicodedata2
geoalchemy/geoalchemy2

v0.13.3

Compare Source

What's Changed

Full Changelog: geoalchemy/geoalchemy2@0.13.2...0.13.3

v0.13.2

Compare Source

What's Changed

Full Changelog: geoalchemy/geoalchemy2@0.13.1...0.13.2

v0.13.1

Compare Source

v0.13.0

Compare Source

googleapis/python-api-core

v2.11.0

Compare Source

Features
  • Add support for Python 3.11 (#​466) (ff379e3)
  • Allow representing enums with their unqualified symbolic names in headers (#​465) (522b98e)
Bug Fixes

v2.10.2

Compare Source

Bug Fixes

v2.10.1

Compare Source

Bug Fixes
googleapis/google-auth-library-python

v2.19.1

Compare Source

Bug Fixes
  • Check id token error response (#​1315) (2a71f7b)
  • Fix "AttributeError: 'str' object has no attribute 'get'" (dac7cc3)
Documentation
  • Replacing abc.com with example.com (dac7cc3)

v2.19.0

Compare Source

Features

v2.18.1

Compare Source

Bug Fixes

v2.18.0

Compare Source

Features

v2.17.3

Compare Source

Bug Fixes

v2.17.2

Compare Source

Bug Fixes
  • Do not create new JWT credentials if they make the same claims as the existing. (#​1267) (eebb7b6)

v2.17.1

Compare Source

Bug Fixes
  • Print out reauth plugin error and raise if challenge output is None (#​1265) (08d22fe)

v2.17.0

Compare Source

Features
  • Experimental service account iam endpoint flow for id token (#​1258) (8ff0de5)
Bug Fixes

v2.16.3

Compare Source

Bug Fixes

v2.16.2

Compare Source

Bug Fixes
  • Call gcloud config get project to get project for user cred (#​1243) (c078a13)
  • Do not use hardcoded string 'python', when you mean sys.executable. (#​1233) (91ac8e6)
  • Don't retry if error or error_description is not string (#​1241) (e2d263a)
  • Improve ADC related errors and warnings (#​1237) (2dfa213)

v2.16.1

Compare Source

Bug Fixes

v2.16.0

Compare Source

Features
  • AwsCredentials should not call metadata server if security creds and region are retrievable through the environment variables (#​1195) (5e27c8f)
  • Wrap all python built-in exceptions into library excpetions (#​1191) (a83af39)
Bug Fixes
  • Allow get_project_id to take a request (#​1203) (9a4d23a)
  • Make OAUTH2.0 client resistant to string type 'expires_in' responses from non-compliant services (#​1208) (9fc7b1c)

v2.15.0

Compare Source

Features
Bug Fixes

v2.14.1

Compare Source

Bug Fixes

v2.14.0

Compare Source

Features
Bug Fixes
  • Adding more properties to external_account_authorized_user (#​1169) (a12b96d)

v2.13.0

Compare Source

Features
  • Adds new external account authorized user credentials (#​1160) (523f811)
  • Implement pluggable auth interactive mode (#​1131) (44a189f)
  • Introduce the functionality to override token_uri in credentials (#​1159) (73bc7e9)
Bug Fixes
  • Adding one more pattern to relax the regex check for sts and impersonation url endpoints (#​1158) (75326e3)

v2.12.0

Compare Source

Features
Bug Fixes
  • Modify RefreshError exception to use gcloud ADC command. (#​1149) (059fd35)
  • Revert "Update token refresh threshold from 20 seconds to 5 minutes". (186464b)

v2.11.1

Compare Source

Bug Fixes
Documentation
googleapis/python-bigquery

v3.11.0

Compare Source

Features
Bug Fixes
  • Filter None values from OpenTelemetry attributes (#​1567) (9ea2e21)
  • Handle case when expirationMs is None (#​1553) (fa6e13d)
  • Raise most recent exception when not able to fetch query job after starting the job (#​1362) (09cc1df)

v3.10.0

Compare Source

Features
  • Add date, datetime, time, timestamp dtype to to_dataframe (#​1547) (64e913d)

v3.9.0

Compare Source

Features
Bug Fixes
  • Keyerror when the load_table_from_dataframe accesses a unmapped dtype dataframe index (#​1535) (a69348a)

v3.8.0

Compare Source

Features
Bug Fixes
  • Loosen ipywidgets restrictions further to address ipython compatibility issues ([#​1531](https://togithub.com

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 a review from a team as a code owner September 9, 2022 17:03
@renovate-bot renovate-bot requested review from a team, kurtisvg and prash-mi September 9, 2022 17:03
@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 9, 2022
@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-sqlalchemy API. labels Sep 9, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Sep 9, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 9, 2022
@renovate-bot renovate-bot changed the title chore(deps): update dependency certifi to v2022.6.15.1 chore(deps): update dependency certifi to v2022.6.15.2 Sep 13, 2022
@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 13, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Sep 13, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 13, 2022
@renovate-bot renovate-bot changed the title chore(deps): update dependency certifi to v2022.6.15.2 chore(deps): update all dependencies Sep 14, 2022
@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 14, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Sep 14, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 14, 2022
@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 14, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Sep 14, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 14, 2022
@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 14, 2022
@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 Jun 1, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 1, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jun 1, 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 Jun 1, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 1, 2023
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 2, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 2, 2023
@yoshi-kokoro yoshi-kokoro removed kokoro:force-run Add this label to force Kokoro to re-run the tests. labels Jun 2, 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 Jun 2, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 2, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jun 2, 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 Jun 7, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 7, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jun 7, 2023
Error message:

```
The conflict is caused by:
    The user requested urllib3==2.0.3
    google-auth 2.19.1 depends on urllib3<2.0
```
@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 Jun 9, 2023
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jun 9, 2023
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jun 9, 2023
@chalmerlowe chalmerlowe merged commit ba0d93f into googleapis:main Jun 9, 2023
14 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-sqlalchemy API. size: m Pull request size is medium.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants