chore(deps): update python-nonmajor#672
Open
renovate-bot wants to merge 1 commit into
Open
Conversation
|
/gcbrun |
renovate-bot
force-pushed
the
renovate/python-nonmajor
branch
from
June 2, 2026 01:47
f091e1b to
eb97677
Compare
|
/gcbrun |
renovate-bot
force-pushed
the
renovate/python-nonmajor
branch
from
June 3, 2026 02:33
eb97677 to
9eb7600
Compare
|
/gcbrun |
renovate-bot
force-pushed
the
renovate/python-nonmajor
branch
from
June 3, 2026 19:14
9eb7600 to
5328460
Compare
|
/gcbrun |
renovate-bot
force-pushed
the
renovate/python-nonmajor
branch
from
June 3, 2026 23:54
5328460 to
40aa858
Compare
|
/gcbrun |
renovate-bot
force-pushed
the
renovate/python-nonmajor
branch
from
June 5, 2026 15:34
40aa858 to
5505bd2
Compare
|
/gcbrun |
renovate-bot
force-pushed
the
renovate/python-nonmajor
branch
from
June 8, 2026 02:59
5505bd2 to
1c07f23
Compare
|
/gcbrun |
|
/gcbrun |
27 similar comments
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
Contributor
|
/gcbrun |
|
/gcbrun |
Contributor
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
|
/gcbrun |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
==3.14.1→==3.14.3==0.7.8→==0.7.9==1.34.1→==1.36.2==2.53.0→==2.56.2==2.28.0→==2.30.0==3.10.1→==3.13.0==1.4.0→==1.5.1==0.14.22→==0.14.23==2.1.0→==2.3.0>=1.41.1,<1.42.0→>=1.44.0,<1.45.0==1.41.1→==1.44.0>=1.41.1,<1.42.0→>=1.44.0,<1.45.0==1.41.1→==1.44.0==9.0.3→==9.1.1==1.1.0→==1.2.0==4.15.0→==4.16.0Release Notes
aio-libs/aiohttp (aiohttp)
v3.14.3: 3.14.3Compare Source
Bug fixes
Fixed the client dropping only the first
Authorization,CookieandProxy-Authorizationheader when a redirect crossed an origin -- by :user:arshsmith1.Related issues and pull requests on GitHub:
#13180.
Fixed error message construction in the C HTTP parser -- by :user:
bdraco.Related issues and pull requests on GitHub:
#13222.
v3.14.2: 3.14.2Compare Source
Bug fixes
Fixed :py:attr:
~aiohttp.web.StreamResponse.last_modifiedrounding a:class:
datetime.datetimewith a fractional second down.Related issues and pull requests on GitHub:
#5303.
Fixed resolving
localhoston Windows to fall back withoutAI_ADDRCONFIGwhen the first lookup fails, so
localhoststill works without an activenetwork.
Related issues and pull requests on GitHub:
#5357.
Rejected multipart body parts whose
Content-Lengthheader is not aplain sequence of digits (e.g.
+5,-1,1_0), matching thestrictness of the main request parser per :rfc:
9110#section-8.6-- by :user:
dxbjavid.Related issues and pull requests on GitHub:
#12794.
Fixed
GunicornWebWorkerendlessly reloading when app fails during startup -- by :user:Dreamsorcerer.Related issues and pull requests on GitHub:
#12879.
Fixed some inconsistent case sensitivity on request methods -- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#12931.
Fixed
IndexError: string index out of rangeinparse_content_dispositionwhen a header parameter has an empty value (e.g.
filename=).-- by :user:
JSap0914.Related issues and pull requests on GitHub:
#12948.
Fixed the
sock_readtimeout being re-armed on a keep-alive connection afterit had been returned to the pool. An idle pooled connection could be left with a
pending read timeout that fired and poisoned it, so the next request reusing the
connection failed immediately with :exc:
aiohttp.SocketTimeoutError. The readtimeout is now only rescheduled when resuming a transport that was actually
paused -- by :user:
daragok.Related issues and pull requests on GitHub:
#12953, #12954.
Fixed the client decompressing frames when
permessage-deflatewas not negotiated -- by :user:Dreamsorcerer.Related issues and pull requests on GitHub:
#12976.
Fixed
DigestAuthMiddlewareraising anIndexErroron empty domain -- by :user:Dreamsorcerer.Related issues and pull requests on GitHub:
#12983.
Fixed :class:
~aiohttp.DigestAuthMiddlewarecorrupting theDigestchallenge when a
WWW-Authenticateresponse offered more than oneauthentication scheme -- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#12984.
Fixed client not closing cleanly after an exception -- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#12985.
Fixed control frames breaking fragmented WebSocket messages -- by :user:
arshsmith1.Related issues and pull requests on GitHub:
#12988.
Fixed
parse_content_dispositionrejecting otherwise-validContent-Dispositionheader values that contain optional whitespace (OWS)around the disposition type (e.g.
"form-data ; name=\"field\"").The disposition type is now stripped before token validation, consistent with
how parameter keys are already handled -- by :user:
JSap0914.Related issues and pull requests on GitHub:
#12996.
Fixed an :exc:
IndexErrorin the pure-Python HTTP parser -- by :user:Dreamsorcerer.Related issues and pull requests on GitHub:
#13001.
Fixed parsing optional whitespace in Content-Disposition -- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#13002.
Fixed request body not being read on rejected WebSocket upgrades -- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#13016.
Fixed :exc:
LookupError(and an unguarded :exc:UnicodeDecodeError) escapingContent-Dispositionparsing when a multipart part supplies an extendedparameter with an unknown charset
-- by :user:
arshsmith1.Related issues and pull requests on GitHub:
#13042.
Fixed
escape_quotesin the Digest authentication middleware not escapingbackslashes, so a
WWW-Authenticatechallenge value containing a backslashcould break out of its quoted-string in the generated
Authorizationheader-- by :user:
dxbjavid.Related issues and pull requests on GitHub:
#13054.
Fixed Python parser not rejecting a bare
LFin the request line -- by :user:Dreamsorcerer.Related issues and pull requests on GitHub:
#13136.
Fixed the C HTTP parser folding the fragment into the query string for an
origin-form request target with an empty query (e.g.
/path?#frag),which diverged from the pure-Python parser -- by :user:
GiulioDER.Related issues and pull requests on GitHub:
#13171.
Fixed the C parser reporting newer HTTP methods such as
QUERYas<unknown>;the method table is now derived from the vendored llhttp instead of a hand-maintained count
-- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#13174.
Packaging updates and notes for downstreams
Upgraded
llhttpto v9.4.2 -- by :user:Dreamsorcerer.Related issues and pull requests on GitHub:
#12956.
Contributor-facing changes
Added admin documentation on incident response and on running reproducer code
safely, covering security vulnerability handling and supply-chain, account, and
CI/infrastructure compromise -- by :user:
Dreamsorcerer.Related issues and pull requests on GitHub:
#12914.
pnuckowski/aioresponses (aioresponses)
v0.7.9Compare Source
google/adk-python (google-adk)
v1.36.2Compare Source
Bug Fixes
v1.36.1: Release 1.36.1Compare Source
Bug Fixes
v1.36.0Compare Source
v1.35.2: Release 1.35.2Compare Source
Bug Fixes
v1.35.1: Release 1.35.1Compare Source
Bug Fixes
v1.35.0: Release 1.35.0Features
Bug Fixes
v1.34.2: Release 1.34.2Compare Source
Bug Fixes
googleapis/google-cloud-python (google-auth)
v2.56.2: google-auth: v2.56.2Compare Source
Bug Fixes
v2.56.1Compare Source
v2.56.0: google-auth: v2.56.0Compare Source
Features
Bug Fixes
v2.55.2: google-auth: v2.55.2Compare Source
Bug Fixes
v2.55.1: google-auth: v2.55.1Compare Source
Bug Fixes
v2.55.0: google-auth: v2.55.0Compare Source
Features
Bug Fixes
v2.54.0Compare Source
run-llama/llama_index (llama-index-core)
v0.14.23Compare Source
llama-index-callbacks-argilla [0.5.0]
llama-index-core [0.14.23]
llama-index-embeddings-adapter [0.5.0]
llama-index-embeddings-autoembeddings [0.3.0]
llama-index-embeddings-cohere [0.8.0]
llama-index-embeddings-gaudi [0.4.0]
llama-index-embeddings-google-genai [0.5.1]
google-genai2.0+ SDKs (#21710)llama-index-embeddings-heroku [0.2.0]
llama-index-embeddings-huggingface-optimum [0.4.1]
llama-index-embeddings-ibm [0.6.0.post1]
llama-index-embeddings-jinaai [0.6.0]
llama-index-embeddings-litellm [0.5.0]
llama-index-embeddings-modelscope [0.6.0]
llama-index-embeddings-nvidia [0.5.1]
llama-index-embeddings-premai [0.5.0]
llama-index-embeddings-upstage [0.6.1]
llama-index-embeddings-vllm [0.1.1]
llama-index-embeddings-voyageai [0.6.0]
llama-index-embeddings-zhipuai [0.4.0]
llama-index-graph-rag-cognee [0.3.1]
llama-index-llms-ai21 [0.7.0]
llama-index-llms-anthropic [0.11.6]
llama-index-llms-bedrock-converse [0.14.14]
llama-index-llms-cerebras [0.4.1]
llama-index-llms-gaudi [0.4.0]
llama-index-llms-google-genai [0.9.5]
google-genai2.0+ SDKs (#21710)llama-index-llms-heroku [0.2.0]
llama-index-llms-maritalk [0.6.0]
llama-index-llms-nvidia [0.5.1]
llama-index-llms-oci-data-science [1.1.0]
llama-index-llms-openai [0.7.9]
llama-index-llms-openai-like [0.7.2]
llama-index-llms-openrouter [0.5.1]
llama-index-llms-openvino-genai [0.3.1]
llama-index-llms-ovhcloud [0.2.1]
llama-index-llms-perplexity [0.5.1]
llama-index-llms-portkey [0.5.1]
llama-index-llms-upstage [0.8.1]
llama-index-llms-yi [0.5.1]
llama-index-llms-you [0.5.0]
llama-index-llms-zhipuai [0.5.0]
llama-index-memory-bedrock-agentcore [0.1.2]
llama-index-memory-mem0 [2.0.0]
llama-index-node-parser-chonkie [0.1.2]
llama-index-observability-otel [0.6.2]
llama-index-postprocessor-alibabacloud-aisearch-rerank [0.4.0]
llama-index-postprocessor-bedrock-rerank [0.6.0]
llama-index-postprocessor-cohere-rerank [0.9.0]
llama-index-postprocessor-colbert-rerank [0.5.0]
llama-index-postprocessor-colpali-rerank [0.4.0]
llama-index-postprocessor-contextual-rerank [0.3.0]
llama-index-postprocessor-dashscope-rerank [0.5.0]
llama-index-postprocessor-flag-embedding-reranker [0.5.0]
llama-index-postprocessor-flashrank-rerank [0.2.1]
llama-index-postprocessor-google-rerank [0.1.0]
llama-index-postprocessor-jinaai-rerank [0.5.0]
llama-index-postprocessor-longllmlingua [0.6.0]
llama-index-postprocessor-mixedbreadai-rerank [0.6.0]
llama-index-postprocessor-nvidia-rerank [0.6.0]
llama-index-postprocessor-openvino-rerank [0.6.0]
llama-index-postprocessor-pinecone-native-rerank [0.3.0]
llama-index-postprocessor-presidio [0.6.0]
llama-index-postprocessor-rankgpt-rerank [0.5.0]
llama-index-postprocessor-rankllm-rerank [0.6.2]
llama-index-postprocessor-sbert-rerank [0.5.0]
llama-index-postprocessor-siliconflow-rerank [0.4.0]
llama-index-postprocessor-tei-rerank [0.5.0]
llama-index-postprocessor-voyageai-rerank [0.5.0]
llama-index-postprocessor-xinference-rerank [0.4.0]
llama-index-program-evaporate [0.6.0]
llama-index-program-guidance [0.5.0]
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.