Skip to content

fix(deps): update pypi group - #123

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/pypi
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/pypi

Conversation

@renovate

@renovate renovate Bot commented Jun 19, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
certifi 2026.6.172026.7.22 age confidence
chardet (changelog) 7.4.37.6.0 age confidence
idna (changelog) 3.183.20 age confidence
poetry-core 2.4.12.5.0 age confidence
pytest (changelog) 9.1.09.1.1 age confidence
urllib3 (changelog) 2.7.02.8.0 age confidence

Release Notes

certifi/python-certifi (certifi)

v2026.7.22

Compare Source

chardet/chardet (chardet)

v7.6.0

Compare Source

Big release: a Cython scoring kernel joins mypyc in compiled wheels, every model retrained on a deduplicated corpus, UTF-7 fixed in both directions, and a guarantee that detect() never returns an encoding that can't decode your complete input.

Performance

  • Compiled wheels now score bigram profiles through a small Cython kernel alongside mypyc, and the pair is 4.7x faster than the pure wheel on CPython 3.14. _kernel.py stays plain Python (PyPy and pure wheels run it interpreted, unchanged), and detection output is bit-identical. The kernel declares itself safe without the GIL, so free-threaded CPython scales instead of silently re-enabling the GIL on import: 3.14t runs the whole suite in ~340ms across 8 threads, the fastest configuration measured. Compiled builds now need both hooks: HATCH_BUILD_HOOK_ENABLE_MYPYC=true HATCH_BUILD_HOOK_ENABLE_CUSTOM=true.
  • Added support for CPython 3.15, including the free-threaded build. No code changes were needed.

Bug Fixes

  • detect() no longer returns an encoding that cannot decode the input it was given (#​380, thanks @​yarikoptic). When the whole input has been examined and the winner's only multi-byte evidence is an incomplete trailing sequence, the best candidate that decodes the input completely wins instead. Genuinely truncated data keeps its answer.
  • Fixed delimited ASCII data like |NAME,+LAY| misdetecting as UTF-7 (#​371 follow-up, thanks @​agreenburg). The whole buffer must now actually decode as UTF-7, and a lone shifted character must land in a plausible script range.
  • Signed UTF-7 no longer reads as ASCII: the BOM stage recognizes the four UTF-7 signature prefixes when the rest of the buffer decodes as UTF-7.
  • Fixed short apostrophe-heavy English being labeled Scottish Gaelic or Breton: a rare-language label on an input under 128 bytes now needs a 0.03 lead over the best mainstream language (ADR-0005).
  • Fixed Hungarian text losing to a Czech reading in confusion rescoring; tied pairs are compared only under language models both encodings have.
  • Fixed space-padded text matching a degenerate Serbian model at high confidence; statistical scoring now skips repeated-whitespace bigrams. This also fixes windows-1251 logs misdetecting as windows-1250 (#​379).
  • Fixed EBCDIC text being invisible to the early pipeline stages, and the last two EBCDIC sibling misdetections.
  • Fixed training normalization gaps that starved ISO-8859-16 and the 26 pre-euro encodings at exactly their distinguishing bytes.

Improvements

  • Retrained every bigram model on a refreshed, deduplicated corpus with training provenance now recorded per model.
  • New ANSI-art model for cp437, trained on 16,621 text-mode art files from 16colo.rs.
  • Rare-language arbitration (ADR-0005): low-confidence statistical winners from languages with no documented legacy-encoding population yield to near-tied mainstream candidates.
  • Confusion-group resolution is context-aware: per-occurrence votes, word-shape demotions, art-model exemption.
  • Statistical dead heats no longer resolve by candidate enumeration order.
  • Training pipeline hardening after a cache-loss post-mortem.

Full Changelog: chardet/chardet@7.5.1...7.6.0

v7.5.1

Compare Source

v7.5.0

Compare Source

kjd/idna (idna)

v3.20

Compare Source

  • Update to Unicode 18.0.0.
  • Better enforcement of the domain length limit in the incremental
    codec.
  • Add support for Python 3.15.

v3.19

Compare Source

  • Restore the std3_rules option, which had no effect since changes
    to UTS #​46 processing in Unicode 16. Note that uts46_remap()
    defaults to enabling STD3 rules, so direct callers will see input
    containing non-LDH ASCII characters rejected again.
  • Performance improvements to UTS #​46 mapping, particularly for
    ASCII-only domains.
  • Test on free-threaded CPython with the GIL disabled and document
    thread safety.
  • Expose the Unicode version of the generated tables as
    idna.unicode_version, and show it in idna --version.
  • Add code, text, codepoint and position attributes to
    IDNAError so that the failed rule and the offending character can
    be identified without parsing the exception message.
  • The deprecated transitional argument to encode() and
    uts46_remap() is now completely ignored, and gives a deprecation warning
    for the latter.
  • Reject A-labels that are not the canonical Punycode encoding of
    their U-label.
  • Fix CONTEXTJ violations raising IDNAError instead of
    InvalidCodepointContext.
  • Consistently raise IDNAError for empty labels and non-ASCII bytes
    passed to label helper functions and the incremental codec.
  • Add property-based tests, extended fuzzing targets, coverage
    measurement, and CI checks that the data tables match the generator
    output.
  • Various code quality and tooling improvements.

Thanks to stefan6419846, LouieLuNZ, and Salvatore Corvaglia for
contributions to this release.

python-poetry/poetry-core (poetry-core)

v2.5.0

Compare Source

Added
  • Add Marker.apply() to partially evaluate a marker for a given environment (#​945).
  • Add Python 3.15 to the automatically generated classifiers (#​961).
Changed
  • Reject links with filenames containing path separators (#​974).
  • Update list of supported licenses (#​946,
    #​958,
    #​968).
  • Improve performance of creating links and determining file extensions (#​940,
    #​941).
  • Improve performance of version comparisons (#​951,
    #​952).
  • Improve performance of schema validation by caching compiled JSON schema validators (#​965).
Fixed
  • Fix an issue where a <V version constraint wrongly allowed pre-releases of V in some cases (#​939).
  • Fix an issue where version ranges with coincident bounds were not recognized as empty (#​939).
  • Fix an issue where the string representation of a version union did not describe the same constraint after being parsed again (#​939).
  • Fix an issue where the intersection of a version range with a local version resulted in a wrong constraint (#​949).
  • Fix an issue where the union of a version range and a public version did not include all local versions of the public version (#​950).
  • Fix an issue where the union of a public version and one of its local versions did not result in the public version (#​966).
  • Fix an issue where the difference between a public version and one of its local versions still allowed the local version, which could result in an infinite loop during dependency resolution (#​953).
  • Fix an issue where a version range that excluded some local versions of a public version was wrongly considered to allow all versions of the public version (#​959).
  • Fix an issue where a != <value> constraint was wrongly considered to allow all values of a <value> not in constraint (#​955).
  • Fix an issue where merging platform_release markers with incompatible constraint types failed (#​956).
  • Fix an issue where the string representation of a version range whose upper bound only consists of zeros raised an IndexError (#​964).
  • Fix an issue where formatting a Python constraint that only allows unknown Python versions raised an IndexError (#​971).
  • Fix an issue where marker values containing spaces could not be parsed (#​972).
  • Fix an issue where the upper bound of a ~= constraint was wrong for versions with more than three release segments (#​973).
  • Fix an issue where the filename of a link created from a Windows path was wrong (#​974).
Vendoring
pytest-dev/pytest (pytest)

v9.1.1

Compare Source

pytest 9.1.1 (2026-06-19)

Bug fixes

  • #​14220: Fixed a logic bug in pytest.RaisesGroup which would might cause it to display incorrect "It matches FooError() which was paired with BarError" messages.
  • #​14591: Fixed a regression in pytest 9.1.0 which caused overriding a parametrized fixture with an indirect @​pytest.mark.parametrize to fail with "duplicate parametrization of '<fixture name>'".
  • #​14606: Fixed list-item typing errors from mypy in @pytest.mark.parametrize <pytest.mark.parametrize ref> argvalues parameter.
  • #​14608: Fixed a regression in pytest 9.1.0 where conftest.py files located in <invocation dir>/test* were no longer loaded as initial conftests when invoked without arguments.
    This could cause certain hooks (like pytest_addoption) in these files to not fire.
urllib3/urllib3 (urllib3)

v2.8.0

Compare Source

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

Security

Fixed the following security issues:

  • The TLS configuration for HTTPS proxies could be ignored or overridden.
    (High severity, GHSA-8988-9cw3-xx77 <https://github.com/urllib3/urllib3/security/advisories/GHSA-8988-9cw3-xx77>__)
  • HTTPResponse.stream() and read_chunked() could buffer a chunk-size
    line of unbounded length in memory. (High severity,
    GHSA-vxq7-64xx-v4gw <https://github.com/urllib3/urllib3/security/advisories/GHSA-vxq7-64xx-v4gw>__)
  • Chunked Deflate streaming could enter an infinite loop. (Medium severity,
    GHSA-gh4c-6fx4-qh6g <https://github.com/urllib3/urllib3/security/advisories/GHSA-gh4c-6fx4-qh6g>__)

.. caution::

urllib3 2.8.0 fixes HTTPS proxy TLS configuration being ignored or
overridden by destination settings. Configurations relying on that
behavior may require changes.

Configure proxy CA certificates and client certificates in
``proxy_ssl_context``, and proxy identity checks with
``proxy_assert_hostname`` or ``proxy_assert_fingerprint``.
Destination client certificates and identity overrides no longer
apply to HTTPS forwarding proxy connections.

Deprecations & Removals

  • Deprecated using an empty collection as the Retry option
    allowed_methods to retry any verb.
    (#&#8203;5044 <https://github.com/urllib3/urllib3/issues/5044>__)

Features

  • Added Url.auth_decoded and Url.auth_decoded_joined convenience
    properties to the result of parse_url().
    (#&#8203;4945 <https://github.com/urllib3/urllib3/issues/4945>__)
  • Added basic_auth_encoding and proxy_basic_auth_encoding parameters to
    urllib3.util.make_headers().
    (#&#8203;5092 <https://github.com/urllib3/urllib3/issues/5092>__)

Bugfixes

  • Fixed response header handling to replace obsolete folded header lines
    (obs-fold) with spaces in accordance with RFC 9112, preventing raw CRLF
    sequences from appearing in header values such as Set-Cookie.
    (#&#8203;1362 <https://github.com/urllib3/urllib3/issues/1362>__)

  • Fixed usage of proxy_ssl_context with ProxyManager when
    use_forwarding_for_https=True. Passing ssl_context instead of
    proxy_ssl_context for HTTPS proxies in this configuration now emits a
    FutureWarning and will raise an error in v3.0.
    (#&#8203;2577 <https://github.com/urllib3/urllib3/issues/2577>__)

  • Changed behavior of the default ConnectionPool.pool initialization.
    LifoQueue is now resolved from the queue module after the
    ConnectionPool is instantiated instead of using the default cached
    QueueCls class property. This is done because sometimes the
    queue.LifoQueue is monkey-patched late in the program, such as by gevent.
    (#&#8203;3289 <https://github.com/urllib3/urllib3/issues/3289>__)

  • Raised UnrewindableBodyError instead of ValueError when retrying a
    request whose body had tell() but not seek().
    (#&#8203;3779 <https://github.com/urllib3/urllib3/issues/3779>__)

  • Decoded percent-encoded SOCKS proxy credentials before authenticating with
    the proxy server.
    (#&#8203;3785 <https://github.com/urllib3/urllib3/issues/3785>__)

  • Fixed HTTPResponse.drain_conn() to discard unread response data in 64 KiB
    chunks (same as the default amt when doing HTTPResponse.stream(...)).
    (#&#8203;5019 <https://github.com/urllib3/urllib3/issues/5019>__)

  • Fixed is_ipaddress() to detect non-standard IPv4 forms accepted by
    socket.connect, such as hex (0x7f000001), octal (0177.0.0.1), and
    decimal integers (2130706433), ensuring SSL certificate verification uses
    the correct mode for these addresses.
    (#&#8203;5029 <https://github.com/urllib3/urllib3/issues/5029>__)

  • Fixed HTTPConnectionPool.urlopen raising a misleading FullPoolError
    instead of ValueError when called with an invalid timeout argument on
    a pool created with block=True.
    (#&#8203;5059 <https://github.com/urllib3/urllib3/issues/5059>__)

  • Fixed port-zero handling to preserve explicit :0 values instead of
    substituting the default ports 80 or 443 in URL parsing, pool selection,
    proxy configuration, connection_from_url(), and HTTP/2 request authority.
    (#&#8203;5071 <https://github.com/urllib3/urllib3/issues/5071>,
    #&#8203;5101 <https://github.com/urllib3/urllib3/issues/5101>
    )

  • Fixed a bug where PoolManager passed the assert_hostname and
    assert_fingerprint parameters to HTTP connection pools.
    (#&#8203;5077 <https://github.com/urllib3/urllib3/issues/5077>__)

  • Fixed HTTPConnectionPool.urlopen() and HTTP proxy forwarding to strip URL
    fragments from absolute request targets before sending requests.
    (#&#8203;5079 <https://github.com/urllib3/urllib3/issues/5079>__)

  • Added safeguards to the proxy tunneling code to prevent potential security
    issues when handling invalid characters in the proxy host and HTTP headers.
    This change affects users of Python 3.10, Python 3.11, and Python 3.12 when
    the standard library does not contain the fix; those on newer Python versions
    should upgrade to 3.13.14+ or 3.14.5+ to get the same security fixes.
    (#&#8203;5091 <https://github.com/urllib3/urllib3/issues/5091>__)

  • Fixed HTTPSConnection.connect() overriding ProxyConfig.ssl_context's
    certificate policy and proxy identity checks with the target connection's TLS
    settings when forwarding through an HTTPS proxy.

    HTTPSConnection no longer applies target SNI, assertions, or client
    credentials to forwarding proxy handshakes and continues to use its
    ssl_context as a fallback when an HTTPS proxy forwards an HTTP target.
    (#&#8203;5093 <https://github.com/urllib3/urllib3/issues/5093>__)

  • Fixed URL parsing to more strictly enforce RFC 3986 host syntax, rejecting
    invalid host input such as raw spaces and control characters, malformed
    percent-encodings, and percent-encoded control characters in HTTP(S) hosts
    and IPv6 zone identifiers, including proxy CONNECT tunnel targets. Host
    normalization now also follows RFC 3986 normalization rules for
    percent-encoded octets by decoding percent-encoded unreserved characters and
    uppercasing the hexadecimal digits of retained percent-encoded octets.
    (#&#8203;5095 <https://github.com/urllib3/urllib3/issues/5095>__)

  • Fixed an AttributeError on Python built with OpenSSL 4+, where
    ssl.PROTOCOL_TLSv1 no longer exists.
    (#&#8203;5097 <https://github.com/urllib3/urllib3/issues/5097>__)

  • Fixed urllib3.contrib.pyopenssl to use cryptography APIs when reading a
    certificate subject and loading encrypted private keys, avoiding
    DeprecationWarning raised by pyOpenSSL 26.3.0+.
    (#&#8203;5103 <https://github.com/urllib3/urllib3/issues/5103>__)

  • Fixed handling of HTTP 303 redirects for requests with chunked or file-like
    bodies.
    (#&#8203;5161 <https://github.com/urllib3/urllib3/issues/5161>__)

  • Fixed assert_fingerprint() to raise SSLError instead of
    binascii.Error when a fingerprint has a supported length but contains
    non-hexadecimal characters.
    (#&#8203;5211 <https://github.com/urllib3/urllib3/issues/5211>__)

Misc

  • Added a test dependency group containing the minimum dependencies needed
    to run the test suite, intended for downstream packagers. The dev-base
    and mypy groups now include this new group via include-group,
    removing duplication.
    (#&#8203;3594 <https://github.com/urllib3/urllib3/issues/3594>__)
  • Fixed test failures with pytest >= 9.1.
    (#&#8203;5094 <https://github.com/urllib3/urllib3/issues/5094>__)
  • Enabled JSPI tests with Firefox in the Emscripten test suite.
    (#&#8203;5166 <https://github.com/urllib3/urllib3/issues/5166>__)
  • Improved streamed response decoding performance.
    (#&#8203;5209 <https://github.com/urllib3/urllib3/issues/5209>__)
  • Fixed flaky tests.
    (#&#8203;5232 <https://github.com/urllib3/urllib3/issues/5232>,
    #&#8203;5234 <https://github.com/urllib3/urllib3/issues/5234>
    ,
    #&#8203;5239 <https://github.com/urllib3/urllib3/issues/5239>__)

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the type/patch label Jun 19, 2026
@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

BadgeSort Asana NFC Less Land Rover Skynet KeePassXC Renault DHL Pingdom LeetCode scikit-learn QIWI Web3.js YouTube Studio Qantas Last.fm Archive of Our Own NestJS JPEG Chakra UI Marko GNU Privacy Guard Ionic Adobe Lightroom Tesco

hsv

BadgeSort JPEG Archive of Our Own Qantas YouTube Studio Last.fm Web3.js scikit-learn QIWI LeetCode Renault DHL Pingdom KeePassXC Skynet Land Rover Chakra UI Marko GNU Privacy Guard Adobe Lightroom Tesco NFC Less Asana Ionic NestJS

step

BadgeSort Archive of Our Own Qantas YouTube Studio Last.fm Web3.js JPEG QIWI scikit-learn LeetCode DHL Renault Pingdom KeePassXC Land Rover Chakra UI Skynet NFC Asana Less Tesco GNU Privacy Guard Ionic Marko Adobe Lightroom NestJS

step_invert

BadgeSort Archive of Our Own Qantas YouTube Studio Last.fm Web3.js JPEG QIWI scikit-learn LeetCode Pingdom Renault DHL KeePassXC Skynet Chakra UI Land Rover NFC Asana Less Tesco GNU Privacy Guard Ionic Marko Adobe Lightroom NestJS

luminance

BadgeSort Archive of Our Own NFC Asana Less Qantas YouTube Studio Last.fm Land Rover Tesco NestJS GNU Privacy Guard Ionic Marko Chakra UI Web3.js JPEG Skynet Adobe Lightroom KeePassXC QIWI scikit-learn LeetCode DHL Renault Pingdom

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

BadgeSort Asana NFC Less Land Rover Skynet KeePassXC Renault DHL Pingdom LeetCode scikit-learn QIWI Web3.js YouTube Studio Qantas Last.fm Archive of Our Own NestJS JPEG Chakra UI Marko GNU Privacy Guard Ionic Adobe Lightroom Tesco

@renovate renovate Bot changed the title chore(deps): update pypi group to 9.1.1 chore(deps): update pypi group Jun 22, 2026
@renovate renovate Bot changed the title chore(deps): update pypi group chore(deps): update pytest to 9.1.1 Jun 25, 2026
@renovate
renovate Bot force-pushed the renovate/pypi branch from fbb4b75 to 05662e9 Compare July 20, 2026 22:59
@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

Mini Gutenberg Jordan BadgeSort Discogs Koa MSI Business GreenSock Power BI Qwiklabs DHL TaxBuzz Cloudera Auth0 eBay YouTube Studio Kyocera Veritas Lospec Android Roundcube F-Droid Ubiquiti Wallabag suckless Cloudsmith

hsv

Mini Gutenberg Jordan BadgeSort Discogs Lospec YouTube Studio Auth0 Cloudera TaxBuzz MSI Business DHL Power BI Qwiklabs GreenSock Android Roundcube suckless Cloudsmith F-Droid Wallabag Ubiquiti Koa Kyocera Veritas eBay

step

Mini Gutenberg Jordan BadgeSort Discogs YouTube Studio Auth0 Cloudera MSI Business TaxBuzz Lospec GreenSock Power BI Qwiklabs DHL Android Ubiquiti Wallabag suckless F-Droid Cloudsmith Roundcube Koa Kyocera Veritas eBay

step_invert

Mini Gutenberg Jordan BadgeSort Discogs YouTube Studio Auth0 Cloudera MSI Business TaxBuzz Lospec DHL Qwiklabs Power BI GreenSock Android Ubiquiti Wallabag suckless F-Droid Cloudsmith Roundcube Koa eBay Veritas Kyocera

luminance

Mini Gutenberg Jordan BadgeSort Discogs Koa Kyocera Veritas YouTube Studio Ubiquiti Wallabag eBay suckless F-Droid Cloudsmith Auth0 Cloudera MSI Business TaxBuzz Roundcube GreenSock Android Power BI Qwiklabs DHL Lospec

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

Mini Gutenberg Jordan BadgeSort Discogs Koa MSI Business GreenSock Power BI Qwiklabs DHL TaxBuzz Cloudera Auth0 eBay YouTube Studio Kyocera Veritas Lospec Android Roundcube F-Droid Ubiquiti Wallabag suckless Cloudsmith

@renovate renovate Bot added the type/minor label Jul 22, 2026
@renovate
renovate Bot force-pushed the renovate/pypi branch from 05662e9 to 160dbda Compare July 22, 2026 07:09
@renovate renovate Bot changed the title chore(deps): update pytest to 9.1.1 fix(deps): update pypi group Jul 22, 2026
@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

Tile Steam Infiniti Express BadgeSort Big Cartel Badgr Statuspage MongoDB Swagger Shell LabVIEW MoneyGram Koc RetroPie The Mighty Apple News Leanpub Gerrit Jellyfin Traefik Proxy GitBook iCloud Fing KiCad Alfred

hsv

Tile Steam Infiniti Express BadgeSort Big Cartel Gerrit Leanpub RetroPie Koc MoneyGram Shell LabVIEW Swagger MongoDB Traefik Proxy Jellyfin Fing iCloud GitBook Statuspage KiCad Badgr Alfred The Mighty Apple News

step

Tile Steam Infiniti Express BadgeSort Big Cartel RetroPie Koc MoneyGram Gerrit Leanpub Shell LabVIEW MongoDB Swagger Statuspage GitBook Fing Jellyfin iCloud Traefik Proxy Badgr KiCad Alfred The Mighty Apple News

step_invert

Tile Steam Infiniti Express BadgeSort Big Cartel RetroPie Koc MoneyGram Gerrit Leanpub LabVIEW Shell MongoDB Swagger Statuspage GitBook Fing Jellyfin iCloud Traefik Proxy KiCad Badgr Alfred Apple News The Mighty

luminance

Tile Steam Infiniti Express BadgeSort Big Cartel Statuspage Badgr RetroPie Alfred The Mighty KiCad Koc Apple News GitBook Fing Jellyfin iCloud MoneyGram Traefik Proxy MongoDB Swagger Shell LabVIEW Gerrit Leanpub

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

Tile Steam Infiniti Express BadgeSort Big Cartel Badgr Statuspage MongoDB Swagger Shell LabVIEW MoneyGram Koc RetroPie The Mighty Apple News Leanpub Gerrit Jellyfin Traefik Proxy GitBook iCloud Fing KiCad Alfred

@renovate
renovate Bot force-pushed the renovate/pypi branch from 160dbda to 074841a Compare August 6, 2026 06:15
@github-actions

github-actions Bot commented Aug 6, 2026

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

Mini MDN Web Docs BadgeSort Power Apps Runkeeper Boehringer Ingelheim Xing Xbox GNU Bash Vitest Smashing Magazine Swift ThinkPad ReactiveX Gerrit Flood Fossil SCM BookStack DVC Albert Heijn pixiv Microsoft Azure JCB PlayStation Vita FontBase National Grid

hsv

Mini MDN Web Docs BadgeSort Gerrit ThinkPad Swift Smashing Magazine Vitest GNU Bash Xbox Xing DVC Albert Heijn Fossil SCM BookStack pixiv Microsoft Azure Boehringer Ingelheim JCB PlayStation Vita Flood Runkeeper National Grid FontBase Power Apps ReactiveX

step

Mini MDN Web Docs BadgeSort ThinkPad Swift Smashing Magazine Gerrit Vitest Xbox GNU Bash Runkeeper Boehringer Ingelheim PlayStation Vita JCB Xing Microsoft Azure BookStack Fossil SCM pixiv Flood Albert Heijn DVC National Grid FontBase Power Apps ReactiveX

step_invert

Mini MDN Web Docs BadgeSort ThinkPad Swift Smashing Magazine Gerrit Vitest Xbox GNU Bash Runkeeper Boehringer Ingelheim PlayStation Vita JCB Xing Microsoft Azure BookStack Fossil SCM pixiv Flood Albert Heijn DVC FontBase National Grid Power Apps ReactiveX

luminance

Mini MDN Web Docs BadgeSort National Grid Runkeeper FontBase Boehringer Ingelheim PlayStation Vita Power Apps JCB ReactiveX Xing ThinkPad Xbox Microsoft Azure BookStack Swift Fossil SCM pixiv Smashing Magazine Flood Albert Heijn DVC Vitest GNU Bash Gerrit

@github-actions

github-actions Bot commented Aug 6, 2026

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

Mini MDN Web Docs BadgeSort Power Apps Runkeeper Boehringer Ingelheim Xing Xbox GNU Bash Vitest Smashing Magazine Swift ThinkPad ReactiveX Gerrit Flood Fossil SCM BookStack DVC Albert Heijn pixiv Microsoft Azure JCB PlayStation Vita FontBase National Grid

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

MacPaw BadgeSort Basecamp Prime Video Z-Wave haveibeenpwned JavaScript Dragonframe SparkFun Fastly F1 Ruby on Rails Ceph Itch.io Crayon NextBillion.ai SCP Foundation Stimulus Ajv Storyblok Abbott Lens Packer Chase Kali Linux BMW

hsv

MacPaw BadgeSort SCP Foundation Itch.io Ruby on Rails F1 Ceph SparkFun Crayon Dragonframe JavaScript Stimulus Storyblok Ajv haveibeenpwned Abbott Packer Basecamp Kali Linux BMW Lens Chase Prime Video Z-Wave NextBillion.ai Fastly

step

MacPaw BadgeSort Ruby on Rails F1 SparkFun Ceph Itch.io Crayon Dragonframe SCP Foundation JavaScript Storyblok Stimulus Basecamp Prime Video Z-Wave BMW haveibeenpwned Chase Abbott Kali Linux Lens Packer Ajv NextBillion.ai Fastly

step_invert

MacPaw BadgeSort Ruby on Rails F1 SparkFun Ceph Itch.io Crayon Dragonframe SCP Foundation JavaScript Stimulus Storyblok Basecamp Prime Video Z-Wave BMW haveibeenpwned Chase Abbott Kali Linux Lens Packer Ajv NextBillion.ai Fastly

luminance

MacPaw BadgeSort Basecamp Prime Video Ruby on Rails Z-Wave F1 BMW haveibeenpwned Fastly SparkFun Chase NextBillion.ai Abbott Kali Linux Ceph Lens Itch.io Packer Storyblok Crayon Dragonframe Ajv Stimulus JavaScript SCP Foundation

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

MacPaw BadgeSort Basecamp Prime Video Z-Wave haveibeenpwned JavaScript Dragonframe SparkFun Fastly F1 Ruby on Rails Ceph Itch.io Crayon NextBillion.ai SCP Foundation Stimulus Ajv Storyblok Abbott Lens Packer Chase Kali Linux BMW

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

Discourse Uber BadgeSort Hyperledger Buffer Similarweb Fila CentOS Elastic Stack Power Virtual Agents Feedly SmugMug K3s Nim Chef Fandango ZDF Virgin MEGA SonarSource egghead ImageJ Kaggle Windows 11 PHP Epson

hsv

Discourse Uber BadgeSort Virgin ZDF Fandango egghead Chef K3s Nim SmugMug Feedly ImageJ Power Virtual Agents Elastic Stack Kaggle Windows 11 Similarweb Fila Hyperledger Epson PHP CentOS Buffer MEGA SonarSource

step

Discourse Uber BadgeSort Virgin Fandango ZDF Chef K3s egghead Nim Feedly SmugMug Fila Similarweb Epson Hyperledger Elastic Stack Power Virtual Agents Windows 11 Kaggle ImageJ CentOS PHP Buffer MEGA SonarSource

step_invert

Discourse Uber BadgeSort Virgin Fandango ZDF Chef K3s egghead Nim Feedly SmugMug Fila Similarweb Epson Hyperledger Elastic Stack Power Virtual Agents Windows 11 Kaggle ImageJ PHP CentOS SonarSource MEGA Buffer

luminance

Discourse Uber BadgeSort Fila Buffer Similarweb CentOS Epson Hyperledger Virgin Elastic Stack Power Virtual Agents MEGA SonarSource Windows 11 PHP Feedly Fandango ZDF Kaggle SmugMug ImageJ Chef K3s Nim egghead

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

Discourse Uber BadgeSort Hyperledger Buffer Similarweb Fila CentOS Elastic Stack Power Virtual Agents Feedly SmugMug K3s Nim Chef Fandango ZDF Virgin MEGA SonarSource egghead ImageJ Kaggle Windows 11 PHP Epson

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

MediaTemple BadgeSort Hyperledger GitHub Pages Linux Foundation LOT Polish Airlines Neovim sharp Snapchat Corona Renderer Amazon Fire TV Trakt AMD CD Projekt CodeFactor CodersRank Krita Lydia Radar QuickTime Jira OpenFaaS k6 IVECO SSRN PyTorch Lightning

hsv

MediaTemple BadgeSort GitHub Pages Corona Renderer Amazon Fire TV Snapchat sharp Neovim CodersRank Krita Lydia Linux Foundation IVECO Radar SSRN Jira Hyperledger LOT Polish Airlines QuickTime OpenFaaS k6 PyTorch Lightning CodeFactor CD Projekt Trakt AMD

step

MediaTemple BadgeSort GitHub Pages Amazon Fire TV Corona Renderer sharp Snapchat Neovim Linux Foundation Hyperledger LOT Polish Airlines IVECO SSRN Jira QuickTime Radar Lydia Krita CodersRank PyTorch Lightning OpenFaaS k6 CD Projekt Trakt AMD CodeFactor

step_invert

MediaTemple BadgeSort GitHub Pages Amazon Fire TV Corona Renderer Snapchat sharp Neovim Linux Foundation Hyperledger LOT Polish Airlines IVECO SSRN Jira QuickTime Radar Lydia Krita CodersRank k6 OpenFaaS PyTorch Lightning CodeFactor Trakt AMD CD Projekt

luminance

MediaTemple BadgeSort GitHub Pages Linux Foundation Hyperledger LOT Polish Airlines IVECO CD Projekt SSRN Jira PyTorch Lightning Trakt AMD OpenFaaS QuickTime Radar Lydia Amazon Fire TV Corona Renderer k6 CodeFactor Neovim Krita CodersRank sharp Snapchat

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

MediaTemple BadgeSort Hyperledger GitHub Pages Linux Foundation LOT Polish Airlines Neovim sharp Snapchat Corona Renderer Amazon Fire TV Trakt AMD CD Projekt CodeFactor CodersRank Krita Lydia Radar QuickTime Jira OpenFaaS k6 IVECO SSRN PyTorch Lightning

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

Jeep BadgeSort Monzo Gradle Qatar Airways WhiteSource HelloFresh Amazon EC2 EnterpriseDB Databricks Flipboard RTL McLaren Tesla DPD Quora WireGuard Power Pages Netlify Alipay Flickr Bugsnag Buefy Azure Functions WebMoney WebAuthn

hsv

Jeep BadgeSort Flipboard Tesla McLaren Quora Databricks EnterpriseDB Amazon EC2 HelloFresh Netlify Gradle Alipay WebMoney Azure Functions Flickr Monzo WhiteSource Bugsnag WebAuthn Power Pages Buefy Qatar Airways DPD RTL WireGuard

step

Jeep BadgeSort Tesla McLaren Quora Flipboard Databricks EnterpriseDB Amazon EC2 HelloFresh Netlify Monzo Gradle Azure Functions Flickr WebMoney Alipay WhiteSource WebAuthn Bugsnag Buefy Power Pages Qatar Airways WireGuard DPD RTL

step_invert

Jeep BadgeSort Tesla McLaren Quora Flipboard Databricks EnterpriseDB Amazon EC2 HelloFresh Netlify Monzo Gradle Azure Functions Flickr WebMoney Alipay Power Pages Buefy Bugsnag WebAuthn WhiteSource RTL DPD WireGuard Qatar Airways

luminance

Jeep BadgeSort WhiteSource Monzo Qatar Airways Gradle WebAuthn Tesla WireGuard DPD McLaren RTL Quora Azure Functions Flickr Bugsnag Flipboard WebMoney Databricks Buefy EnterpriseDB Alipay Netlify Power Pages Amazon EC2 HelloFresh

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

Jeep BadgeSort Monzo Gradle Qatar Airways WhiteSource HelloFresh Amazon EC2 EnterpriseDB Databricks Flipboard RTL McLaren Tesla DPD Quora WireGuard Power Pages Netlify Alipay Flickr Bugsnag Buefy Azure Functions WebMoney WebAuthn

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

AngelList The North Face JR Group BadgeSort Progress Acer Firefox Browser Origin Unraid The Spriters Resource PrestaShop KashFlow JPEG Google Home Salt Project Headless UI HERE Speaker Deck Arch Linux Ulule Krita MUI Jira Kotlin OpenSearch Statuspal

hsv

AngelList The North Face JR Group BadgeSort JPEG The Spriters Resource Unraid Firefox Browser Origin Acer Progress Salt Project Speaker Deck HERE Headless UI Ulule Arch Linux Krita OpenSearch MUI Jira Google Home Statuspal Kotlin PrestaShop KashFlow

step

AngelList The North Face JR Group BadgeSort The Spriters Resource Unraid Origin JPEG Firefox Browser Acer Progress Speaker Deck HERE Salt Project Jira OpenSearch MUI Arch Linux Google Home Ulule Krita Headless UI Statuspal Kotlin PrestaShop KashFlow

step_invert

AngelList The North Face JR Group BadgeSort The Spriters Resource Unraid Origin JPEG Firefox Browser Acer Progress Salt Project HERE Speaker Deck Jira OpenSearch MUI Arch Linux Google Home Ulule Krita Headless UI Kotlin Statuspal KashFlow PrestaShop

luminance

AngelList The North Face JR Group BadgeSort PrestaShop Statuspal Jira OpenSearch The Spriters Resource Kotlin MUI KashFlow Speaker Deck Arch Linux Unraid Google Home HERE Ulule Origin JPEG Firefox Browser Krita Acer Salt Project Progress Headless UI

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

AngelList The North Face JR Group BadgeSort Progress Acer Firefox Browser Origin Unraid The Spriters Resource PrestaShop KashFlow JPEG Google Home Salt Project Headless UI HERE Speaker Deck Arch Linux Ulule Krita MUI Jira Kotlin OpenSearch Statuspal

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Shields.io)

hilbert

TeamCity Corsair BadgeSort Tails LOT Polish Airlines Tampermonkey ONLYOFFICE DLNA Guilded Netto CodeceptJS TELE5 Bower Koc Steelseries Qualys Republic of Gamers Wolfram Notepad++ Google Cloud Hexo webcomponents.org Dynamics 365 Stardock PlayStation 2 KaiOS

hsv

TeamCity Corsair BadgeSort ONLYOFFICE Qualys Koc Wolfram Bower Steelseries TELE5 Guilded CodeceptJS Netto DLNA Notepad++ Tampermonkey webcomponents.org Hexo Stardock PlayStation 2 Google Cloud Dynamics 365 LOT Polish Airlines Tails KaiOS Republic of Gamers

step

TeamCity Corsair BadgeSort Wolfram ONLYOFFICE Qualys Koc Steelseries Bower TELE5 Guilded Netto CodeceptJS DLNA Notepad++ PlayStation 2 LOT Polish Airlines Tampermonkey Stardock Dynamics 365 Hexo Google Cloud webcomponents.org Tails KaiOS Republic of Gamers

step_invert

TeamCity Corsair BadgeSort Wolfram ONLYOFFICE Qualys Koc Steelseries Bower TELE5 CodeceptJS Netto Guilded DLNA Notepad++ PlayStation 2 LOT Polish Airlines Tampermonkey Stardock Dynamics 365 Hexo Google Cloud webcomponents.org Tails KaiOS Republic of Gamers

luminance

TeamCity Corsair BadgeSort KaiOS PlayStation 2 LOT Polish Airlines Tampermonkey Stardock Republic of Gamers Wolfram Tails ONLYOFFICE Dynamics 365 Qualys Hexo Koc Steelseries Bower Google Cloud DLNA webcomponents.org TELE5 Guilded Notepad++ Netto CodeceptJS

@github-actions

Copy link
Copy Markdown
Contributor

🏷️ Test Badge Generation (Badgen.net)

hilbert

TeamCity Corsair BadgeSort Tails LOT Polish Airlines Tampermonkey ONLYOFFICE DLNA Guilded Netto CodeceptJS TELE5 Bower Koc Steelseries Qualys Republic of Gamers Wolfram Notepad++ Google Cloud Hexo webcomponents.org Dynamics 365 Stardock PlayStation 2 KaiOS

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants