close
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: fkhadra/react-toastify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v11.0.5
Choose a base ref
...
head repository: fkhadra/react-toastify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v11.1.0
Choose a head ref
  • 13 commits
  • 30 files changed
  • 3 contributors

Commits on Apr 18, 2026

  1. Configuration menu
    Copy the full SHA
    beb2013 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    526988b View commit details
    Browse the repository at this point in the history
  3. chore: bump deps

    fkhadra committed Apr 18, 2026
    Configuration menu
    Copy the full SHA
    c0d8186 View commit details
    Browse the repository at this point in the history

Commits on Apr 19, 2026

  1. Configuration menu
    Copy the full SHA
    8375ace View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    a2d376b View commit details
    Browse the repository at this point in the history
  3. fix: dispatch 'removed' onChange event synchronously on dismiss

     Previously 'removed' fired at exit-animation-end (inside deleteToast), so observers saw events out of order when toast.dismiss() was followed quickly by another toast() call. React 19.2's concurrent rendering surfaced this more reliably.
    
    Move the dispatchChanges('removed') call from deleteToast to markAsRemoved with an isActive guard for idempotency, and fix a latent NullPointerException in closeToast's membership check.
    
    Closes #1275
    fkhadra committed Apr 19, 2026
    Configuration menu
    Copy the full SHA
    1b2ee17 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    50e8e42 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    6d58ce4 View commit details
    Browse the repository at this point in the history
  6. bump artifact action

    fkhadra committed Apr 19, 2026
    Configuration menu
    Copy the full SHA
    b3bbab5 View commit details
    Browse the repository at this point in the history
  7. fix chicken and egg issue

    fkhadra committed Apr 19, 2026
    Configuration menu
    Copy the full SHA
    e4ab712 View commit details
    Browse the repository at this point in the history
  8. fix: add unit to --y CSS variable to fix vertical drag

    `--y` is initialized as `0` (unitless), which works in bare
    `translate3d(0, var(--y), 0)` contexts. However, when
    `draggableDirection` is `'y'`, the drag handler builds
    `calc(${delta}px + var(--y))` — and `calc()` requires compatible
    units on both operands. `calc(50px + 0)` is invalid CSS, while
    `calc(50px + 0px)` is valid.
    
    This causes vertical drag to have no visible effect — the toast
    fades via opacity but doesn't move, because the transform is
    silently invalid.
    
    Changing `--y: 0` to `--y: 0px` fixes vertical dragging with no
    impact on existing behavior, since `0` and `0px` are identical
    in all non-calc contexts.
    janpaepke authored and fkhadra committed Apr 19, 2026
    Configuration menu
    Copy the full SHA
    c800992 View commit details
    Browse the repository at this point in the history
  9. remove year from license

    fkhadra committed Apr 19, 2026
    Configuration menu
    Copy the full SHA
    de21958 View commit details
    Browse the repository at this point in the history
  10. 11.1.0

    fkhadra committed Apr 19, 2026
    Configuration menu
    Copy the full SHA
    769ce82 View commit details
    Browse the repository at this point in the history
Loading