Skip to content

chore(deps): update all dependencies #367

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 7 commits into from
Jan 5, 2022

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Oct 27, 2021

WhiteSource Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
attrs (source, changelog) ==21.2.0 -> ==21.4.0 age adoption passing confidence
cachetools ==4.2.4 -> ==5.0.0 age adoption passing confidence
charset-normalizer ==2.0.7 -> ==2.0.10 age adoption passing confidence
geoalchemy2 ==0.9.4 -> ==0.10.0 age adoption passing confidence
google-api-core ==2.2.0 -> ==2.3.2 age adoption passing confidence
google-auth ==2.3.2 -> ==2.3.3 age adoption passing confidence
google-cloud-core ==2.1.0 -> ==2.2.1 age adoption passing confidence
googleapis-common-protos ==1.53.0 -> ==1.54.0 age adoption passing confidence
importlib-metadata ==4.8.3 -> ==4.10.0 age adoption passing confidence
packaging ==21.0 -> ==21.3 age adoption passing confidence
proto-plus ==1.19.7 -> ==1.19.8 age adoption passing confidence
protobuf ==3.19.0 -> ==3.19.1 age adoption passing confidence
py ==1.10.0 -> ==1.11.0 age adoption passing confidence
pyparsing ==3.0.2 -> ==3.0.6 age adoption passing confidence
requests (source, changelog) ==2.26.0 -> ==2.27.1 age adoption passing confidence
rsa ==4.7.2 -> ==4.8 age adoption passing confidence
sqlalchemy (changelog) >=1.2.0,<=1.4.25 -> >=1.2.0,<=1.4.29 age adoption passing confidence
sqlalchemy (changelog) ==1.4.26 -> ==1.4.29 age adoption passing confidence
zipp ==3.6.0 -> ==3.7.0 age adoption passing confidence

Release Notes

tkem/cachetools

v5.0.0

Compare Source

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

  • Require Python 3.7 or later (breaking change).

  • Remove deprecated submodules (breaking change).

    The cache, fifo, lfu, lru, mru, rr and
    ttl submodules have been deleted. Therefore, statements like

    from cachetools.ttl import TTLCache

    will no longer work. Use

    from cachetools import TTLCache

    instead.

  • Pass self to @cachedmethod key function (breaking change).

    The key function passed to the @cachedmethod decorator is
    now called as key(self, *args, **kwargs).

    The default key function has been changed to ignore its first
    argument, so this should only affect applications using custom key
    functions with the @cachedmethod decorator.

  • Change exact time of expiration in TTLCache (breaking change).

    TTLCache items now get expired if their expiration time is less
    than or equal to timer(). For applications using the default
    timer(), this should be barely noticable, but it may affect the
    use of custom timers with larger tick intervals. Note that this
    also implies that a TTLCache with ttl=0 can no longer hold
    any items, since they will expire immediately.

  • Change Cache.__repr__() format (breaking change).

    String representations of cache instances now use a more compact and
    efficient format, e.g.

    LRUCache({1: 1, 2: 2}, maxsize=10, currsize=2)

  • Add TLRU cache implementation.

  • Documentation improvements.

ousret/charset_normalizer

v2.0.10

Compare Source

Fixed
  • Fallback match entries might lead to UnicodeDecodeError for large bytes sequence (PR #​154)
Changed
  • Skipping the language-detection (CD) on ASCII (PR #​155)

v2.0.9

Compare Source

Changed
  • Moderating the logging impact (since 2.0.8) for specific environments (PR #​147)
Fixed
  • Wrong logging level applied when setting kwarg explain to True (PR #​146)

v2.0.8

Compare Source

Changed
  • Improvement over Vietnamese detection (PR #​126)
  • MD improvement on trailing data and long foreign (non-pure latin) data (PR #​124)
  • Efficiency improvements in cd/alphabet_languages from @​adbar (PR #​122)
  • call sum() without an intermediary list following PEP 289 recommendations from @​adbar (PR #​129)
  • Code style as refactored by Sourcery-AI (PR #​131)
  • Minor adjustment on the MD around european words (PR #​133)
  • Remove and replace SRTs from assets / tests (PR #​139)
  • Initialize the library logger with a NullHandler by default from @​nmaynes (PR #​135)
  • Setting kwarg explain to True will add provisionally (bounded to function lifespan) a specific stream handler (PR #​135)
Fixed
  • Fix large (misleading) sequence giving UnicodeDecodeError (PR #​137)
  • Avoid using too insignificant chunk (PR #​137)
Added
googleapis/python-api-core

v2.3.2

Compare Source

Bug Fixes
  • fix: exclude function target from retry deadline exceeded exception message (#​318) (34ebdcc)

v2.3.1

Compare Source

v2.3.0

Compare Source

Features
  • add operations rest client to support long-running operations. (#​311) (ce1adf3)
Bug Fixes
2.2.2 (2021-11-02)
Bug Fixes
2.2.1 (2021-10-26)
Bug Fixes
  • revert "fix: do not error on LROs with no response or error" (#​294) (9e6091e)

v2.2.2

Compare Source

v2.2.1

Compare Source

googleapis/google-auth-library-python

v2.3.3

Compare Source

googleapis/python-cloud-core

v2.2.1

Compare Source

v2.2.0

Compare Source

Features
googleapis/python-api-common-protos

v1.54.0

Compare Source

Features
python/importlib_metadata

v4.10.0

Compare Source

=======

  • #​354: Removed Distribution._local factory. This
    functionality was created as a demonstration of the
    possible implementation. Now, the
    pep517 <https://pypi.org/project/pep517>_ package
    provides this functionality directly through
    pep517.meta.load <https://github.com/pypa/pep517/blob/a942316305395f8f757f210e2b16f738af73f8b8/pep517/meta.py#L63-L73>_.

v4.9.0

Compare Source

======

  • Require Python 3.7 or later.
pypa/packaging

v21.3

Compare Source

  • Add a pp3-none-any tag (#​311)
  • Replace the blank pyparsing 3 exclusion with a 3.0.5 exclusion (#​481, #​486)
  • Fix a spelling mistake (#​479)

v21.2

Compare Source

  • Update changelog entry for 21.1

Full Changelog: pypa/packaging@21.1...21.2

v21.1

Compare Source

What's Changed

New Contributors

Full Changelog: pypa/packaging@21.0...21.1

googleapis/proto-plus-python

v1.19.8

Compare Source

pyparsing/pyparsing

v3.0.6

  • Added suppress_warning() method to individually suppress a warning on a
    specific ParserElement. Used to refactor original_text_for to preserve
    internal results names, which, while undocumented, had been adopted by
    some projects.

  • Fix bug when delimited_list was called with a str literal instead of a
    parse expression.

v3.0.5

  • Added return type annotations for col, line, and lineno.

  • Fixed bug when warn_ungrouped_named_tokens_in_collection warning was raised
    when assigning a results name to an original_text_for expression.
    (Issue #​110, would raise warning in packaging.)

  • Fixed internal bug where ParserElement.streamline() would not return self if
    already streamlined.

  • Changed run_tests() output to default to not showing line and column numbers.
    If line numbering is desired, call with with_line_numbers=True. Also fixed
    minor bug where separating line was not included after a test failure.

v3.0.4

  • Fixed bug in which Dict classes did not correctly return tokens as nested
    ParseResults, reported by and fix identified by Bu Sun Kim, many thanks!!!

  • Documented API-changing side-effect of converting ParseResults to use __slots__
    to pre-define instance attributes. This means that code written like this (which
    was allowed in pyparsing 2.4.7):

    result = Word(alphas).parseString("abc")
    result.xyz = 100

    now raises this Python exception:

    AttributeError: 'ParseResults' object has no attribute 'xyz'

    To add new attribute values to ParseResults object in 3.0.0 and later, you must
    assign them using indexed notation:

    result["xyz"] = 100

    You will still be able to access this new value as an attribute or as an
    indexed item.

  • Fixed bug in railroad diagramming where the vertical limit would count all
    expressions in a group, not just those that would create visible railroad
    elements.

v3.0.3

  • Fixed regex typo in one_of fix for as_keyword=True.

  • Fixed a whitespace-skipping bug, Issue #​319, introduced as part of the revert
    of the LineStart changes. Reported by Marc-Alexandre Côté,
    thanks!

  • Added header column labeling > 100 in with_line_numbers - some input lines
    are longer than others.

psf/requests

v2.27.1

Compare Source

Bugfixes

  • Fixed parsing issue that resulted in the auth component being
    dropped from proxy URLs. (#​6028)

v2.27.0

Compare Source

Improvements

  • Officially added support for Python 3.10. (#​5928)

  • Added a requests.exceptions.JSONDecodeError to unify JSON exceptions between
    Python 2 and 3. This gets raised in the response.json() method, and is
    backwards compatible as it inherits from previously thrown exceptions.
    Can be caught from requests.exceptions.RequestException as well. (#​5856)

  • Improved error text for misnamed InvalidSchema and MissingSchema
    exceptions. This is a temporary fix until exceptions can be renamed
    (Schema->Scheme). (#​6017)

  • Improved proxy parsing for proxy URLs missing a scheme. This will address
    recent changes to urlparse in Python 3.9+. (#​5917)

Bugfixes

  • Fixed defect in extract_zipped_paths which could result in an infinite loop
    for some paths. (#​5851)

  • Fixed handling for AttributeError when calculating length of files obtained
    by Tarfile.extractfile(). (#​5239)

  • Fixed urllib3 exception leak, wrapping urllib3.exceptions.InvalidHeader with
    requests.exceptions.InvalidHeader. (#​5914)

  • Fixed bug where two Host headers were sent for chunked requests. (#​5391)

  • Fixed regression in Requests 2.26.0 where Proxy-Authorization was
    incorrectly stripped from all requests sent with Session.send. (#​5924)

  • Fixed performance regression in 2.26.0 for hosts with a large number of
    proxies available in the environment. (#​5924)

  • Fixed idna exception leak, wrapping UnicodeError with
    requests.exceptions.InvalidURL for URLs with a leading dot (.) in the
    domain. (#​5414)

Deprecations

  • Requests support for Python 2.7 and 3.6 will be ending in 2022. While we
    don't have exact dates, Requests 2.27.x is likely to be the last release
    series providing support.
jaraco/zipp

v3.7.0

Compare Source

======

Require Python 3.7 or later.


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Renovate will not automatically rebase this PR, because other commits have been found.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate-bot renovate-bot requested review from a team as code owners October 27, 2021 19:13
@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 Oct 27, 2021
@google-cla google-cla bot added the cla: yes This human has signed the Contributor License Agreement. label Oct 27, 2021
@product-auto-label product-auto-label bot added the api: bigquery Issues related to the googleapis/python-bigquery-sqlalchemy API. label Oct 27, 2021
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 27, 2021
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 27, 2021
@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 Oct 28, 2021
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 28, 2021
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 28, 2021
@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 Oct 29, 2021
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 29, 2021
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 29, 2021
@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 Oct 29, 2021
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 29, 2021
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 29, 2021
@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 Oct 29, 2021
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 29, 2021
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Oct 29, 2021
@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 Jan 5, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jan 5, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 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 Jan 5, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jan 5, 2022
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label Jan 5, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@yoshi-kokoro yoshi-kokoro removed kokoro:force-run Add this label to force Kokoro to re-run the tests. labels Jan 5, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jan 5, 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 Jan 5, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@yoshi-kokoro yoshi-kokoro removed the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Jan 5, 2022
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Jan 5, 2022
@leahecole leahecole merged commit 4eb78d7 into googleapis:main Jan 5, 2022
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. cla: yes This human has signed the Contributor License Agreement.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants