Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: prometheus/client_python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.23.0
Choose a base ref
...
head repository: prometheus/client_python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.23.1
Choose a head ref
  • 3 commits
  • 6 files changed
  • 3 contributors

Commits on Sep 12, 2025

  1. fix: Use asyncio.new_event_loop() to create event loop for tests (#…

    …1138)
    
    * fix: Use `asyncio.new_event_loop()` to create event loop for tests
    
    Replace the use of `asyncio.get_event_loop()` with more appropriate
    `asyncio.new_event_loop()` to create event loops for testing.
    The former used to be a wrapper that either returned the currently
    running event loop or created a new one, but the latter behavior was
    deprecated and removed in Python 3.14.  Since the tests are always run
    in a synchronous context, and they always run the obtained event loop
    to completion, just always create a new event loop.
    
    Fixes #1137
    
    Signed-off-by: Michał Górny <[email protected]>
    
    * fix: Remove obsolete asgiref pin
    
    Remove the `asgiref` pin linked to #1020.  I can't reproduce the issue
    anymore with the current `asgiref` versions, and the pin actually
    breaks the tests with the `asyncio` event loop fixes.
    
    Signed-off-by: Michał Górny <[email protected]>
    
    ---------
    
    Signed-off-by: Michał Górny <[email protected]>
    mgorny authored Sep 12, 2025
    Configuration menu
    Copy the full SHA
    f947140 View commit details
    Browse the repository at this point in the history

Commits on Sep 18, 2025

  1. fix: use tuples instead of packaging Version (#1136)

    Signed-off-by: Ruslan Kuprieiev <[email protected]>
    efiop authored Sep 18, 2025
    Configuration menu
    Copy the full SHA
    266beb2 View commit details
    Browse the repository at this point in the history
  2. Release 0.23.1

    Signed-off-by: Chris Marchbanks <[email protected]>
    csmarchbanks committed Sep 18, 2025
    Configuration menu
    Copy the full SHA
    8746c49 View commit details
    Browse the repository at this point in the history
Loading