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: jquery/jquery-migrate
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d251bd8
Choose a base ref
...
head repository: jquery/jquery-migrate
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9b39c2e
Choose a head ref
  • 18 commits
  • 19 files changed
  • 3 contributors

Commits on Aug 11, 2025

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

Commits on Aug 12, 2025

  1. Docs: Improve the solution for boolean-attributes

    Because jQuery 4.0.0 will not transform attribute values in the getter, the
    following code changes between jQuery 3.x & 4.x:
    
    ```js
    $( elem ).prop( "disabled", true );
    $( elem ).attr( "disabled" );
    ```
    
    In jQuery 3.x, the reported attribute value is `"disabled"`, in jQuery 4.x it
    will be an empty string. This may create issues when migrating so Migrate
    patches and warns against it.
    
    Add a recommendation to avoid using the `.attr()` getter on boolean attrs.
    
    Closes gh-588
    mgol authored Aug 12, 2025
    Configuration menu
    Copy the full SHA
    e61af3f View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2025

  1. Build: Allow jQuery 4.0.0-beta.2 or newer in peerDependencies

    The previous range, `>=4 <5` didn't allow jQuery `4.0.0-rc.1` with newer npm
    versions unless legacy peer deps are enabled.
    
    Closes gh-590
    mgol authored Sep 2, 2025
    Configuration menu
    Copy the full SHA
    41623f2 View commit details
    Browse the repository at this point in the history
  2. Build: Bump the github-actions group with 3 updates

    Bumps the github-actions group with 3 updates: [actions/checkout](https://github.com/actions/checkout), [actions/cache](https://github.com/actions/cache) and [github/codeql-action](https://github.com/github/codeql-action).
    
    Closes gh-591
    
    Updates `actions/checkout` from 4.2.2 to 5.0.0
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@11bd719...08c6903)
    
    Updates `actions/cache` from 4.2.3 to 4.2.4
    - [Release notes](https://github.com/actions/cache/releases)
    - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
    - [Commits](actions/cache@5a3ec84...0400d5f)
    
    Updates `github/codeql-action` from 3.29.7 to 3.30.0
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@51f7732...2d92b76)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: 5.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: actions/cache
      dependency-version: 4.2.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: github-actions
    - dependency-name: github/codeql-action
      dependency-version: 3.30.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: github-actions
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Sep 2, 2025
    Configuration menu
    Copy the full SHA
    26992c5 View commit details
    Browse the repository at this point in the history

Commits on Sep 3, 2025

  1. Build: Update package-lock.json

    mgol committed Sep 3, 2025
    Configuration menu
    Copy the full SHA
    9aa573c View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c00a5b1 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    e28ef35 View commit details
    Browse the repository at this point in the history

Commits on Sep 12, 2025

  1. Build: Really test on Firefox ESR, new & old; simplify cache

    The previous config declared Firefox ESR testing, but the tests were never
    run due to clashing names with main Firefox test runs. Apart from fixing
    that, backport jquery/jquery#5682 so that both Firefox ESR versions can be
    downloaded despite using different compression algorithms.
    
    Also, Simplify caching in CI: our setup is pretty standard, so manual
    configuration of `actions/cache` is an overkill. Relying on built-in
    `actions/node` caching will also resolve differences between caching
    configurations for macOS/Linux vs. Windows.
    
    Closes gh-597
    Ref gh-598
    Ref jquery/jquery#5682
    mgol authored Sep 12, 2025
    Configuration menu
    Copy the full SHA
    48021a7 View commit details
    Browse the repository at this point in the history
  2. Build: Update dependencies & tested Node.js versions

    Changes:
    1. Update all dependencies except for ESLint & Sinon.
    2. Pin the yargs version.
    3. Test on Node.js 20, 22 & 24 instead of 18, 20, 22 & 23.
    
    Closes gh-592
    mgol authored Sep 12, 2025
    Configuration menu
    Copy the full SHA
    e6375e4 View commit details
    Browse the repository at this point in the history
  3. Docs: Fix an incorrect warning message & other issues in warnings.md

    Changes:
    1. Update an incorrect message for `event-global` - it was copied from another
       unrelated one.
    2. Fix minor typos & make text more clear in some places.
    
    Closes gh-593
    mgol authored Sep 12, 2025
    Configuration menu
    Copy the full SHA
    1d93022 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2025

  1. Build: Update browsers tested in BrowserStack

    Changes:
    1. Remove Safari 17
    2. Remove iOS 16
    3. Add iOS 26
    
    Closes gh-601
    Ref gh-602
    mgol authored Sep 22, 2025
    Configuration menu
    Copy the full SHA
    bfce100 View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2025

  1. Build: Bump the github-actions group with 2 updates

    Bumps the github-actions group with 2 updates: [actions/setup-node](https://github.com/actions/setup-node) and [github/codeql-action](https://github.com/github/codeql-action).
    
    Closes gh-604
    
    Updates `actions/setup-node` from 4.4.0 to 5.0.0
    - [Release notes](https://github.com/actions/setup-node/releases)
    - [Commits](actions/setup-node@49933ea...a0853c2)
    
    Updates `github/codeql-action` from 3.30.0 to 3.30.5
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@2d92b76...3599b3b)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-node
      dependency-version: 5.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: github/codeql-action
      dependency-version: 3.30.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: github-actions
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 12, 2025
    Configuration menu
    Copy the full SHA
    018c7ff View commit details
    Browse the repository at this point in the history

Commits on Oct 14, 2025

  1. Core: Patch & warn against jQuery.now & jQuery.camelCase

    These APIs have been deprecated in jQuery 3.3.
    
    Fixes gh-594
    Fixes gh-595
    Closes gh-599
    Ref gh-600
    mgol authored Oct 14, 2025
    Configuration menu
    Copy the full SHA
    bb4285c View commit details
    Browse the repository at this point in the history

Commits on Nov 4, 2025

  1. Build: Bump the github-actions group with 2 updates

    * Build: Bump the github-actions group with 2 updates
    
    Bumps the github-actions group with 2 updates: [actions/setup-node](https://github.com/actions/setup-node) and [github/codeql-action](https://github.com/github/codeql-action).
    
    Closes gh-605
    
    Updates `actions/setup-node` from 5.0.0 to 6.0.0
    - [Release notes](https://github.com/actions/setup-node/releases)
    - [Commits](actions/setup-node@a0853c2...2028fbc)
    
    Updates `github/codeql-action` from 3.30.5 to 4.31.2
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@3599b3b...0499de3)
    
    ---
    updated-dependencies:
    - dependency-name: actions/setup-node
      dependency-version: 6.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: github/codeql-action
      dependency-version: 4.31.2
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    * Build: Fix CodeQL action commit hashes & tags
    
    ---------
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Michał Gołębiowski-Owczarek <m.goleb@gmail.com>
    dependabot[bot] and mgol authored Nov 4, 2025
    Configuration menu
    Copy the full SHA
    60a7e62 View commit details
    Browse the repository at this point in the history

Commits on Nov 5, 2025

  1. Build: Test both on iPhone & iPad

    Test on last three iOS versions on an iPhone, but on the last two iPadOS
    versions on an iPad.
    
    Ref jquery/jquery#5714
    Ref jquery/jquery#5715
    mgol committed Nov 5, 2025
    Configuration menu
    Copy the full SHA
    d63e6ae View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2025

  1. Build: Upgrade all deps, including jtr 0.2.8

    - Fixes an issue with running tests in Edge in IE mode
    - Update husky scripts
    
    Closes gh-608
    timmywil authored Nov 18, 2025
    Configuration menu
    Copy the full SHA
    5b59e9d View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2025

  1. Docs: Fix typos, comments, etc.

    Closes gh-607
    Ref gh-606
    mgol authored Nov 19, 2025
    Configuration menu
    Copy the full SHA
    b9f29f2 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2025

  1. Build: Bump the github-actions group with 2 updates

    Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [github/codeql-action](https://github.com/github/codeql-action).
    
    Closes gh-610
    
    Updates `actions/checkout` from 5.0.0 to 6.0.0
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@08c6903...1af3b93)
    
    Updates `github/codeql-action` from 4.31.2 to 4.31.6
    - [Release notes](https://github.com/github/codeql-action/releases)
    - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md)
    - [Commits](github/codeql-action@0499de3...fe4161a)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-version: 6.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: github-actions
    - dependency-name: github/codeql-action
      dependency-version: 4.31.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: github-actions
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Dec 1, 2025
    Configuration menu
    Copy the full SHA
    9b39c2e View commit details
    Browse the repository at this point in the history
Loading