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: SciML/JumpProcesses.jl
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v9.23.1
Choose a base ref
...
head repository: SciML/JumpProcesses.jl
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v9.23.2
Choose a head ref
  • 11 commits
  • 9 files changed
  • 4 contributors

Commits on Mar 9, 2026

  1. Update Catalyst requirement from 14.0, 15 to 14.0, 15, 16.0

    Updates the requirements on [Catalyst](https://github.com/SciML/Catalyst.jl) to permit the latest version.
    
    Updates `Catalyst` to 16.0.0
    - [Release notes](https://github.com/SciML/Catalyst.jl/releases)
    - [Changelog](https://github.com/SciML/Catalyst.jl/blob/master/HISTORY.md)
    - [Commits](https://github.com/SciML/Catalyst.jl/commits/v16.0.0)
    
    ---
    updated-dependencies:
    - dependency-name: Catalyst
      dependency-version: 16.0.0
      dependency-type: direct:production
      dependency-group: all-julia-packages
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    dependabot[bot] authored Mar 9, 2026
    Configuration menu
    Copy the full SHA
    19360d7 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #563 from SciML/dependabot/julia/docs/all-julia-pa…

    …ckages-d0679da742
    
    Update Catalyst requirement from 14.0, 15 to 14.0, 15, 16.0 in /docs in the all-julia-packages group across 1 directory
    ChrisRackauckas authored Mar 9, 2026
    Configuration menu
    Copy the full SHA
    efe698b View commit details
    Browse the repository at this point in the history
  3. Revert "Update Catalyst requirement from 14.0, 15 to 14.0, 15, 16.0 i…

    …n /docs in the all-julia-packages group across 1 directory"
    ChrisRackauckas authored Mar 9, 2026
    Configuration menu
    Copy the full SHA
    363bdbb View commit details
    Browse the repository at this point in the history
  4. Merge pull request #564 from SciML/revert-563-dependabot/julia/docs/a…

    …ll-julia-packages-d0679da742
    
    Revert "Update Catalyst requirement from 14.0, 15 to 14.0, 15, 16.0 in /docs in the all-julia-packages group across 1 directory"
    ChrisRackauckas authored Mar 9, 2026
    Configuration menu
    Copy the full SHA
    ebb0925 View commit details
    Browse the repository at this point in the history

Commits on Mar 10, 2026

  1. Fix reset_aggregated_jumps! kwarg dispatch for SSAIntegrator (#562)

    The SSAIntegrator-specific method did not accept kwargs, so calling
    reset_aggregated_jumps!(int; update_jump_params=true) dispatched to the
    generic method which uses integrator.opts.callback (empty for SSAStepper)
    instead of integrator.cb. Forward kwargs through the SSAIntegrator method.
    
    Co-Authored-By: Claude Opus 4.5 <[email protected]>
    isaacsas and claude committed Mar 10, 2026
    Configuration menu
    Copy the full SHA
    eeac0f0 View commit details
    Browse the repository at this point in the history

Commits on Mar 17, 2026

  1. Fix __init ambiguity with OrdinaryDiffEqCore via package extension

    OrdinaryDiffEqCore added AbstractJumpProblem to its __init Union type,
    creating a method ambiguity with JumpProcesses' __init. Add a package
    extension that defines a more specific method for OrdinaryDiffEqAlgorithm
    and DAEAlgorithm to resolve the dispatch conflict.
    
    Co-Authored-By: Claude Opus 4.5 <[email protected]>
    isaacsas and claude committed Mar 17, 2026
    Configuration menu
    Copy the full SHA
    b8dea21 View commit details
    Browse the repository at this point in the history
  2. Update OrdinaryDiffEqCore compat to v3

    OrdinaryDiffEq v6.106+ requires OrdinaryDiffEqCore v3. The old compat
    bound (1.32.0) prevented the resolver from picking up v3.22.0, which is
    the version that introduced the AbstractJumpProblem union in __init.
    
    Co-Authored-By: Claude Opus 4.5 <[email protected]>
    isaacsas and claude committed Mar 17, 2026
    Configuration menu
    Copy the full SHA
    0fc167a View commit details
    Browse the repository at this point in the history

Commits on Mar 18, 2026

  1. Fix lmul! for ExtendedJumpArray and ldiv! write-back bug

    Add lmul!(::AbstractQ, ::ExtendedJumpArray) needed by LinearSolve's QR
    factorization path (broke in LinearSolve v3.66.0). Fix existing ldiv!
    which created a temporary but never wrote results back to the
    ExtendedJumpArray fields. Update docs Catalyst compat to v16.
    
    Co-Authored-By: Claude Opus 4.5 <[email protected]>
    isaacsas and claude committed Mar 18, 2026
    Configuration menu
    Copy the full SHA
    c1d1a25 View commit details
    Browse the repository at this point in the history
  2. Update docs for Catalyst v16 API

    Replace DiscreteProblem(rn, ...) + JumpProblem(rn, prob, ...) with the
    new JumpProblem(rn, u0, tspan, p) constructor. Update Catalyst compat
    to v16 in both docs Project.toml files.
    
    Co-Authored-By: Claude Opus 4.5 <[email protected]>
    isaacsas and claude committed Mar 18, 2026
    Configuration menu
    Copy the full SHA
    eca61c8 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #565 from isaacsas/fix_ssastepper_jump_resetting

    Fix reset_aggregated_jumps! kwarg dispatch for SSAIntegrator (#562)
    isaacsas authored Mar 18, 2026
    Configuration menu
    Copy the full SHA
    3448536 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5b429b8 View commit details
    Browse the repository at this point in the history
Loading