-
Notifications
You must be signed in to change notification settings - Fork 139
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
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
1a9fece
to
fba51db
Compare
fba51db
to
9d86171
Compare
9d86171
to
a5045b2
Compare
a5045b2
to
0c3304f
Compare
0c3304f
to
d592ab2
Compare
tswast
approved these changes
Jan 5, 2022
leahecole
approved these changes
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.
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:
==21.2.0
->==21.4.0
==4.2.4
->==5.0.0
==2.0.7
->==2.0.10
==0.9.4
->==0.10.0
==2.2.0
->==2.3.2
==2.3.2
->==2.3.3
==2.1.0
->==2.2.1
==1.53.0
->==1.54.0
==4.8.3
->==4.10.0
==21.0
->==21.3
==1.19.7
->==1.19.8
==3.19.0
->==3.19.1
==1.10.0
->==1.11.0
==3.0.2
->==3.0.6
==2.26.0
->==2.27.1
==4.7.2
->==4.8
>=1.2.0,<=1.4.25
->>=1.2.0,<=1.4.29
==1.4.26
->==1.4.29
==3.6.0
->==3.7.0
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
andttl
submodules have been deleted. Therefore, statements likefrom 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 isnow 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 lessthan or equal to
timer()
. For applications using the defaulttimer()
, this should be barely noticable, but it may affect theuse of custom timers with larger tick intervals. Note that this
also implies that a
TTLCache
withttl=0
can no longer holdany 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
Changed
v2.0.9
Compare Source
Changed
Fixed
explain
to True (PR #146)v2.0.8
Compare Source
Changed
NullHandler
by default from @nmaynes (PR #135)explain
to True will add provisionally (bounded to function lifespan) a specific stream handler (PR #135)Fixed
Added
set_logging_handler
to configure a specific StreamHandler from @nmaynes (PR #135)CHANGELOG.md
entries, format is based on Keep a Changelog (PR #141)googleapis/python-api-core
v2.3.2
Compare Source
Bug Fixes
v2.3.1
Compare Source
v2.3.0
Compare Source
Features
Bug Fixes
2.2.2 (2021-11-02)
Bug Fixes
2.2.1 (2021-10-26)
Bug Fixes
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
=======
Distribution._local
factory. Thisfunctionality was created as a demonstration of the
possible implementation. Now, the
pep517 <https://pypi.org/project/pep517>
_ packageprovides this functionality directly through
pep517.meta.load <https://github.com/pypa/pep517/blob/a942316305395f8f757f210e2b16f738af73f8b8/pep517/meta.py#L63-L73>
_.v4.9.0
Compare Source
======
pypa/packaging
v21.3
Compare Source
pp3-none-any
tag (#311)v21.2
Compare Source
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 aspecific ParserElement. Used to refactor
original_text_for
to preserveinternal results names, which, while undocumented, had been adopted by
some projects.
Fix bug when
delimited_list
was called with a str literal instead of aparse expression.
v3.0.5
Added return type annotations for
col
,line
, andlineno
.Fixed bug when
warn_ungrouped_named_tokens_in_collection
warning was raisedwhen 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 fixedminor 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 nestedParseResults
, 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 foras_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 linesare longer than others.
psf/requests
v2.27.1
Compare Source
Bugfixes
auth
component beingdropped 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 betweenPython 2 and 3. This gets raised in the
response.json()
method, and isbackwards compatible as it inherits from previously thrown exceptions.
Can be caught from
requests.exceptions.RequestException
as well. (#5856)Improved error text for misnamed
InvalidSchema
andMissingSchema
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 loopfor some paths. (#5851)
Fixed handling for
AttributeError
when calculating length of files obtainedby
Tarfile.extractfile()
. (#5239)Fixed urllib3 exception leak, wrapping
urllib3.exceptions.InvalidHeader
withrequests.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
wasincorrectly 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
withrequests.exceptions.InvalidURL
for URLs with a leading dot (.) in thedomain. (#5414)
Deprecations
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.
This PR has been generated by WhiteSource Renovate. View repository job log here.