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: jasmine/jasmine
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.1.0
Choose a base ref
...
head repository: jasmine/jasmine
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v6.2.0
Choose a head ref
  • 12 commits
  • 102 files changed
  • 2 contributors

Commits on Feb 22, 2026

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

Commits on Feb 25, 2026

  1. feat: Add new toBeRejectedWithMatching async matcher

    Addresses #1781
    Benoit CHOMEL committed Feb 25, 2026
    Configuration menu
    Copy the full SHA
    0a5acd9 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2026

  1. Merge branch 'fix-issue-1781' of github.com:Tyoneb/jasmine

    * Adds toBeRejectedWithMatching async matcher
    * Merges #2097 from @Tyoneb
    * Fixes #1781
    sgravrock committed Feb 28, 2026
    Configuration menu
    Copy the full SHA
    6e52b97 View commit details
    Browse the repository at this point in the history

Commits on Mar 1, 2026

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

Commits on Mar 4, 2026

  1. Test on Windows in CI

    sgravrock committed Mar 4, 2026
    Configuration menu
    Copy the full SHA
    46338ad View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    25a91a6 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    b864eff View commit details
    Browse the repository at this point in the history

Commits on Mar 7, 2026

  1. rm unused spec/.eslintrc.js

    This file hasn't done anything since the upgrade to eslint 9.
    sgravrock committed Mar 7, 2026
    Configuration menu
    Copy the full SHA
    03ebebf View commit details
    Browse the repository at this point in the history

Commits on Mar 11, 2026

  1. Use one declaration per statement

    The old style of merging all of a function's variable declarations into
    a single statement made some sense back in the days of var, but there's
    no reason to keep doing it now that we use const and let.
    sgravrock committed Mar 11, 2026
    Configuration menu
    Copy the full SHA
    434575f View commit details
    Browse the repository at this point in the history

Commits on Mar 12, 2026

  1. Built distribution

    sgravrock committed Mar 12, 2026
    Configuration menu
    Copy the full SHA
    6c61b11 View commit details
    Browse the repository at this point in the history

Commits on Mar 14, 2026

  1. Drop support for Firefox 102, 115, and 128 (old ESRs)

    These browsers have bugs that occasionally cause typed array comparisons
    to pass when they should fail, or vice versa:
    
    * for...in loops sometimes omit keys, such that two typed arrays with
      different lengths appear to have the same set of keys.
    * Typed arrays sometimes have mulitple undefined keys (which is to say that
      the key itself is undefined). Two typed arrays with identical length and
      contents can compare unequal because of the spurious undefined keys.)
    
    Those problems could be avoided by comparing keys 0...length-1 rather than
    the actual set of exposed keys, but that would be a pretty nasty breaking
    change for anyone whose code tacks extra properties onto typed arrays. So
    far these bugs haven't been seen in anything newer than FF 128. Since the
    affected browsers are all past end of life, the most sensible thing is to
    just stop testing against them.
    sgravrock committed Mar 14, 2026
    Configuration menu
    Copy the full SHA
    4ddb07a View commit details
    Browse the repository at this point in the history

Commits on Apr 11, 2026

  1. Bump version to 6.2.0

    sgravrock committed Apr 11, 2026
    Configuration menu
    Copy the full SHA
    b05ea4b View commit details
    Browse the repository at this point in the history
Loading