Skip to content

Commit db46585

Browse files
chore: bump h2 from 4.2.0 to 4.3.0 in /libs/rag-core-api (#102)
Bumps [h2](https://github.com/python-hyper/h2) from 4.2.0 to 4.3.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python-hyper/h2/blob/master/CHANGELOG.rst">h2's changelog</a>.</em></p> <blockquote> <h2>4.3.0 (2025-08-23)</h2> <p><strong>API Changes (Backward Incompatible)</strong></p> <ul> <li>Reject header names and values containing illegal characters, based on RFC 9113, section 8.2.1. The main Python API is compatible, but some previously valid requests/response headers might now be blocked. Use the <code>validate_inbound_headers</code> config option if needed. Thanks to Sebastiano Sartor (sebsrt) for the report.</li> </ul> <p><strong>API Changes (Backward Compatible)</strong></p> <ul> <li>h2 events now have tighter type bounds, e.g. <code>stream_id</code> is guaranteed to not be <code>None</code> for most events now. This simplifies downstream type checking.</li> <li>Various typing-related improvements.</li> </ul> <p><strong>Bugfixes</strong></p> <ul> <li>Fix error value when opening a new stream on too many open streams.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python-hyper/h2/commit/1aae569315eb170cdff00582644aca37ee38db62"><code>1aae569</code></a> v4.3.0</li> <li><a href="https://github.com/python-hyper/h2/commit/9e4bbed6138c825cd43d519674d00bd267650f30"><code>9e4bbed</code></a> merge surrounding whitespace and uppercase validators into illegal character ...</li> <li><a href="https://github.com/python-hyper/h2/commit/035e9899f95e3709af098f578bfc3cd302298e3a"><code>035e989</code></a> be stricter about which characters to accept for headers</li> <li><a href="https://github.com/python-hyper/h2/commit/883ed37be42592b2f0aa0caddab6ca5e3d668fa3"><code>883ed37</code></a> reject header names and values containing unpermitted characters <code>\r</code>, <code>\n</code>, ...</li> <li><a href="https://github.com/python-hyper/h2/commit/0583911b29d05764bbe3f7691d59f4d5e83e249b"><code>0583911</code></a> lint: fix TC006</li> <li><a href="https://github.com/python-hyper/h2/commit/bbd3d90c66cce51fbbe6b9af75cb0bef7004f9d5"><code>bbd3d90</code></a> fix(packaging): bump twine to pass meta check wildcard bugs</li> <li><a href="https://github.com/python-hyper/h2/commit/ea3140f484a6646ec09abccd0d3c7e955bce4f4c"><code>ea3140f</code></a> cleanup</li> <li><a href="https://github.com/python-hyper/h2/commit/9ce83ff7d77522ed30aea3b052990c43c1218104"><code>9ce83ff</code></a> exclude RDT from sdist</li> <li><a href="https://github.com/python-hyper/h2/commit/492d3db0a206d22ccabb99faeb53924f4af7a982"><code>492d3db</code></a> Update .readthedocs.yaml</li> <li><a href="https://github.com/python-hyper/h2/commit/243461d500822d1e78972946ce0dbc5905ab1ad9"><code>243461d</code></a> Create RTD config</li> <li>Additional commits viewable in <a href="https://github.com/python-hyper/h2/compare/v4.2.0...v4.3.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=h2&package-manager=pip&previous-version=4.2.0&new-version=4.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/stackitcloud/rag-template/network/alerts). </details> --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Andreas Klos <[email protected]>
1 parent 55d131a commit db46585

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

libs/rag-core-api/poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/rag-core-api/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ fastembed = "^0.7.0"
3333
langdetect = "^1.0.9"
3434
langfuse = "3.2.1"
3535
starlette = ">=0.47.2,<0.49.0"
36+
h2 = "^4.3.0"
37+
3638

3739

3840
[tool.poetry.group.dev.dependencies]

0 commit comments

Comments
 (0)