aio-libs
yarl
Blog
Docs
Changelog
Blog
Docs
Changelog
Overview
Branches
Benchmarks
Runs
Performance History
Latest Results
Bump sigstore/gh-action-sigstore-python from 3.3.0 to 3.4.0 (#1753) Bumps [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/sigstore/gh-action-sigstore-python/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
master
22 hours ago
Bump sigstore/gh-action-sigstore-python from 3.3.0 to 3.4.0 (#1753) Bumps [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/sigstore/gh-action-sigstore-python/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
master
2 days ago
Bump sigstore/gh-action-sigstore-python from 3.3.0 to 3.4.0 (#1753) Bumps [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/sigstore/gh-action-sigstore-python/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
master
3 days ago
Bump sigstore/gh-action-sigstore-python from 3.3.0 to 3.4.0 Bumps [sigstore/gh-action-sigstore-python](https://github.com/sigstore/gh-action-sigstore-python) from 3.3.0 to 3.4.0. - [Release notes](https://github.com/sigstore/gh-action-sigstore-python/releases) - [Changelog](https://github.com/sigstore/gh-action-sigstore-python/blob/main/CHANGELOG.md) - [Commits](https://github.com/sigstore/gh-action-sigstore-python/compare/v3.3.0...v3.4.0) --- updated-dependencies: - dependency-name: sigstore/gh-action-sigstore-python dependency-version: 3.4.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
dependabot/github_actions/sigstore/gh-action-sigstore-python-3.4.0
4 days ago
Bump pypa/cibuildwheel from 3.4.1 to 4.0.0 (#1749) Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.4.1 to 4.0.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.4.1...v4.0.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
master
4 days ago
Bump pypa/cibuildwheel from 3.4.1 to 4.0.0 (#1749) Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 3.4.1 to 4.0.0. - [Release notes](https://github.com/pypa/cibuildwheel/releases) - [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md) - [Commits](https://github.com/pypa/cibuildwheel/compare/v3.4.1...v4.0.0) --- updated-dependencies: - dependency-name: pypa/cibuildwheel dependency-version: 4.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
master
5 days ago
Drop lone surrogates that split a percent escape in the Cython quoter The Cython quoter scans a string code point by code point, so a lone surrogate landing inside a "%XX" escape broke it: the "%" was treated as a literal and re-encoded to "%25" while the hex digits were left in place (for example "%2", a lone surrogate, then "0" quoted to "%2520"). The pure-Python quoter drops lone surrogates with errors="ignore" before scanning, so it read the same input as "%20". Skip lone surrogates while reading the two hex digits so the C quoter recombines the escape the same way, restoring parity between the two backends.
rodrigobnogueira:fix/quoter-surrogate-percent-recombine
6 days ago
Drop lone surrogates that split a percent escape in the Cython quoter The Cython quoter scans a string code point by code point, so a lone surrogate landing inside a "%XX" escape broke it: the "%" was treated as a literal and re-encoded to "%25" while the hex digits were left in place (for example "%2", a lone surrogate, then "0" quoted to "%2520"). The pure-Python quoter drops lone surrogates with errors="ignore" before scanning, so it read the same input as "%20". Skip lone surrogates while reading the two hex digits so the C quoter recombines the escape the same way, restoring parity between the two backends.
rodrigobnogueira:fix/quoter-surrogate-percent-recombine
6 days ago
Latest Branches
CodSpeed Performance Gauge
0%
Bump sigstore/gh-action-sigstore-python from 3.3.0 to 3.4.0
#1753
4 days ago
62b841f
dependabot/github_actions/sigstore/gh-action-sigstore-python-3.4.0
CodSpeed Performance Gauge
+20%
Drop lone surrogates that split a percent escape in the Cython quoter
#1752
6 days ago
8f244e1
rodrigobnogueira:fix/quoter-surrogate-percent-recombine
CodSpeed Performance Gauge
0%
Drop lone surrogates in the Cython quoter to match the pure-Python backend
#1751
6 days ago
bc12854
rodrigobnogueira:quoter-drop-lone-surrogates
© 2026 CodSpeed Technology
Home
Terms
Privacy
Docs