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: python-trio/trio
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.23.2
Choose a base ref
...
head repository: python-trio/trio
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.24.0
Choose a head ref
  • 18 commits
  • 49 files changed
  • 9 contributors

Commits on Dec 9, 2023

  1. Configuration menu
    Copy the full SHA
    5c512eb View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2023

  1. Start new cycle

    A5rocks committed Dec 14, 2023
    Configuration menu
    Copy the full SHA
    43cdf61 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2905 from A5rocks/release-0.23.2

    Bump version to 0.23.2
    A5rocks authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    ba92264 View commit details
    Browse the repository at this point in the history
  3. add small tests and codecov skips to work on reaching 100% (#2901)

    * add small tests and codecov skips to increase coverage
    
    * remove buggy_pypy_asyncgens, we don't support pypy 7.2.0
    
    ---------
    
    Co-authored-by: CoolCat467 <52022020+CoolCat467@users.noreply.github.com>
    jakkdl and CoolCat467 authored Dec 14, 2023
    Configuration menu
    Copy the full SHA
    4ba3f60 View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2023

  1. [pre-commit.ci] pre-commit autoupdate (#2906)

    * [pre-commit.ci] pre-commit autoupdate
    
    updates:
    - [github.com/psf/black-pre-commit-mirror: 23.11.0 → 23.12.0](psf/black-pre-commit-mirror@23.11.0...23.12.0)
    - [github.com/astral-sh/ruff-pre-commit: v0.1.7 → v0.1.8](astral-sh/ruff-pre-commit@v0.1.7...v0.1.8)
    
    * Fix unused variable
    
    ---------
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    Co-authored-by: CoolCat467 <52022020+CoolCat467@users.noreply.github.com>
    pre-commit-ci[bot] and CoolCat467 authored Dec 19, 2023
    Configuration menu
    Copy the full SHA
    d4ce2f9 View commit details
    Browse the repository at this point in the history

Commits on Dec 21, 2023

  1. Sphinx cleanups, bump version requirements, typecheck docs source fil…

    …es (#2909)
    
    * add missing type annotations to docs/source/*.py, specify files to check with mypy in pyproject.toml, change sphinx version limits to >5.3, clean up & fix a bunch of references in sphinx, add comment explaining workarounds
    jakkdl authored Dec 21, 2023
    Configuration menu
    Copy the full SHA
    973b07e View commit details
    Browse the repository at this point in the history
  2. remove multierror (#2891)

    * remove all instances of MultiError in the code, instead raising ExceptionGroups. Update tests and documentation
    
    * bump exceptiongroup version to one that has the apport excepthook
    
    
    ---------
    
    Co-authored-by: EXPLOSION <git@helvetica.moe>
    jakkdl and A5rocks authored Dec 21, 2023
    Configuration menu
    Copy the full SHA
    9fbcb38 View commit details
    Browse the repository at this point in the history

Commits on Dec 23, 2023

  1. Configuration menu
    Copy the full SHA
    44d02ac View commit details
    Browse the repository at this point in the history

Commits on Dec 26, 2023

  1. [pre-commit.ci] pre-commit autoupdate black and ruff hooks (#2912)

    updates:
    - [github.com/psf/black-pre-commit-mirror: 23.12.0 → 23.12.1](psf/black-pre-commit-mirror@23.12.0...23.12.1)
    - [github.com/astral-sh/ruff-pre-commit: v0.1.8 → v0.1.9](astral-sh/ruff-pre-commit@v0.1.8...v0.1.9)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Dec 26, 2023
    Configuration menu
    Copy the full SHA
    683f5cb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7642383 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2900 from jakkdl/test_open_tcp_listeners_codecov

    open_tcp_listeners exception __cause__ is always an ExceptionGroup
    Zac-HD authored Dec 26, 2023
    Configuration menu
    Copy the full SHA
    e317d9c View commit details
    Browse the repository at this point in the history

Commits on Jan 4, 2024

  1. Configuration menu
    Copy the full SHA
    282c00c View commit details
    Browse the repository at this point in the history

Commits on Jan 5, 2024

  1. Configuration menu
    Copy the full SHA
    eb32952 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #2917 from tornaria/test-musl

    fix test regexes for musl libc
    A5rocks authored Jan 5, 2024
    Configuration menu
    Copy the full SHA
    f673cfd View commit details
    Browse the repository at this point in the history
  3. Bump dependencies from commit e317d9 (#2914)

    * Dependency updates
    
    * Fix pyright update
    
    * [pre-commit.ci] auto fixes from pre-commit.com hooks
    
    * Alternative to ignoring pyright
    
    ---------
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    Co-authored-by: EXPLOSION <git@helvetica.moe>
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    3 people authored Jan 5, 2024
    1 Configuration menu
    Copy the full SHA
    ec011f4 View commit details
    Browse the repository at this point in the history

Commits on Jan 7, 2024

  1. Add RaisesGroup, a helper for catching ExceptionGroups in tests (#2898)

    * Add RaisesGroup, a helper for catching ExceptionGroups in tests
    * Added helpers: Matcher and _ExceptionInfo
    * Tests and type tests for all of the above
    * Rewrite several existing tests to use this helper
    
    ---------
    
    Co-authored-by: CoolCat467 <52022020+CoolCat467@users.noreply.github.com>
    Co-authored-by: Spencer Brown <spencerb21@live.com>
    Co-authored-by: EXPLOSION <git@helvetica.moe>
    4 people authored Jan 7, 2024
    Configuration menu
    Copy the full SHA
    aadd1ea View commit details
    Browse the repository at this point in the history

Commits on Jan 9, 2024

  1. [pre-commit.ci] pre-commit autoupdate (#2919)

    updates:
    - [github.com/astral-sh/ruff-pre-commit: v0.1.9 → v0.1.11](astral-sh/ruff-pre-commit@v0.1.9...v0.1.11)
    
    Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
    pre-commit-ci[bot] authored Jan 9, 2024
    Configuration menu
    Copy the full SHA
    a10f94b View commit details
    Browse the repository at this point in the history

Commits on Jan 10, 2024

  1. Bump version to 0.24.0

    A5rocks committed Jan 10, 2024
    Configuration menu
    Copy the full SHA
    b985122 View commit details
    Browse the repository at this point in the history
Loading