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: jodal/pykka
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v4.4.0
Choose a base ref
...
head repository: jodal/pykka
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v4.4.1
Choose a head ref
  • 12 commits
  • 10 files changed
  • 2 contributors

Commits on Sep 22, 2025

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

Commits on Sep 29, 2025

  1. fix: Typo in test name

    jodal committed Sep 29, 2025
    Configuration menu
    Copy the full SHA
    732ba9e View commit details
    Browse the repository at this point in the history

Commits on Oct 8, 2025

  1. build(deps): bump astral-sh/setup-uv from 6 to 7 (#243)

    Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 6 to 7.
    - [Release notes](https://github.com/astral-sh/setup-uv/releases)
    - [Commits](astral-sh/setup-uv@v6...v7)
    
    ---
    updated-dependencies:
    - dependency-name: astral-sh/setup-uv
      dependency-version: '7'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 8, 2025
    Configuration menu
    Copy the full SHA
    3f68173 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a104927 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2025

  1. build(deps): bump actions/download-artifact from 5 to 6 (#244)

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 5 to 6.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 24, 2025
    Configuration menu
    Copy the full SHA
    b0fb122 View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2025

  1. build(deps): bump actions/checkout from 5 to 6 (#245)

    Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: '6'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Nov 21, 2025
    Configuration menu
    Copy the full SHA
    f012916 View commit details
    Browse the repository at this point in the history

Commits on Nov 23, 2025

  1. chore(docs): Fix typo

    jodal committed Nov 23, 2025
    Configuration menu
    Copy the full SHA
    c1f8908 View commit details
    Browse the repository at this point in the history

Commits on Dec 13, 2025

  1. build(deps): bump actions/download-artifact from 6 to 7 (#246)

    Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 6 to 7.
    - [Release notes](https://github.com/actions/download-artifact/releases)
    - [Commits](actions/download-artifact@v6...v7)
    
    ---
    updated-dependencies:
    - dependency-name: actions/download-artifact
      dependency-version: '7'
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 13, 2025
    Configuration menu
    Copy the full SHA
    0e1cee7 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2026

  1. chore: Update copyright years

    jodal committed Jan 1, 2026
    Configuration menu
    Copy the full SHA
    d9c4a3c View commit details
    Browse the repository at this point in the history
  2. fix: Simplify the actor thread's name

    Since Python 3.10, the thread target's name has been automatically added
    to the thread name if the name wasn't explicitly provided, causing
    thread names like "ActorClassName-N (_actor_loop)".
    
    This explicitly sets the thread name, using our own counter to
    differentiate multiple actor threads of the same type. This brings us
    back to how thread names was set by Pykka pre Python 3.10, with names
    like "ActorClassName-N".
    jodal committed Jan 1, 2026
    Configuration menu
    Copy the full SHA
    9dd731e View commit details
    Browse the repository at this point in the history
  3. Merge pull request #247 from jodal/thread-names

    fix: Simplify the actor thread's name
    jodal authored Jan 1, 2026
    Configuration menu
    Copy the full SHA
    77a4ce1 View commit details
    Browse the repository at this point in the history
  4. Release v4.4.1

    jodal committed Jan 1, 2026
    Configuration menu
    Copy the full SHA
    3b018e8 View commit details
    Browse the repository at this point in the history
Loading