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
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.7.0
Choose a base ref
...
head repository: jquery/jquery
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.7.1
Choose a head ref
  • 20 commits
  • 47 files changed
  • 6 contributors

Commits on May 11, 2023

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

Commits on May 22, 2023

  1. Build: Test on Node.js 20, stop testing on Node.js 14 & 19

    Closes gh-5250
    
    (cherry picked from commit 6616acf)
    mgol committed May 22, 2023
    Configuration menu
    Copy the full SHA
    b473729 View commit details
    Browse the repository at this point in the history
  2. Deprecated: Define .hover() using non-deprecated methods

    Make the deprecated `.hover()` method not rely on other deprecated
    methods: `.mouseenter()` & `.mouseleave()`. Use `.on()` instead.
    
    Closes gh-5251
    
    (cherry picked from commit fd6ffc5)
    mgol committed May 22, 2023
    Configuration menu
    Copy the full SHA
    7287894 View commit details
    Browse the repository at this point in the history

Commits on May 31, 2023

  1. Docs: Remove the "Grunt build" section from the PR template

    Now that unit tests are run on GitHub Actions in all three major
    engines and for multiple custom jQuery builds, the request for PR
    authors to run unit tests locally and confirm they pass is needless
    overhead; let's drop the checkbox.
    
    Closes gh-5261
    
    (cherry picked from commit 988a568)
    mgol committed May 31, 2023
    Configuration menu
    Copy the full SHA
    992a665 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2023

  1. Selector: Re-expose jQuery.find.tokenize (3.x version)

    `Sizzle.tokenize` is an internal Sizzle API, but exposed. As a result,
    it has historically been available in jQuery via `jQuery.find.tokenize`.
    That got dropped during Sizzle removal; this change restores the API.
    
    In addition to that, Sizzle tests have been backported for the following
    APIs:
    * `jQuery.find.matchesSelector`
    * `jQuery.find.matches`
    * `jQuery.find.compile`
    * `jQuery.find.select`
    
    A new test was also added for `jQuery.find.tokenize` - even Sizzle was
    missing one.
    
    Fixes gh-5259
    Closes gh-5260
    Ref gh-5263
    Ref jquery/sizzle#242
    Ref gh-5113
    Ref gh-4395
    Ref gh-4406
    mgol authored Jun 12, 2023
    Configuration menu
    Copy the full SHA
    13a870b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    44c56f8 View commit details
    Browse the repository at this point in the history
  3. Tests: Skip a new .text() test in IE 9

    The test depends on `DOMParser`'s `parseFromString` called with `text/html`
    which is not supported in IE 9.
    mgol committed Jun 12, 2023
    Configuration menu
    Copy the full SHA
    b84146c View commit details
    Browse the repository at this point in the history

Commits on Jun 23, 2023

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

Commits on Jun 27, 2023

  1. Tests: Disable the ":lang respects escaped backslashes" test

    Firefox 114+ no longer match on backslashes in `:lang()`, even when escaped.
    It is an intentional change as `:lang()` parameters are supposed to be valid
    BCP 47 strings. Therefore, we won't attempt to patch it.
    We'll keep this test here until other browsers match the behavior.
    
    Fixes gh-5271
    Closes gh-5277
    Ref https://bugzilla.mozilla.org/show_bug.cgi?id=1839747#c1
    Ref w3c/csswg-drafts#8720 (comment)
    
    (cherry picked from commit 62b9a25)
    mgol committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    5aa7d93 View commit details
    Browse the repository at this point in the history
  2. Docs: Fix typos found by codespell

    Closes gh-5165
    
    (cherry picked from commit 620870a)
    DimitriPapadopoulos authored and mgol committed Jun 27, 2023
    Configuration menu
    Copy the full SHA
    4a29888 View commit details
    Browse the repository at this point in the history

Commits on Jul 2, 2023

  1. Build: Build: Bump actions/checkout from 3.5.2 to 3.5.3

    Bumps [actions/checkout](https://github.com/actions/checkout) from 3.5.2 to 3.5.3.
    - [Release notes](https://github.com/actions/checkout/releases)
    - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
    - [Commits](actions/checkout@8e5e7e5...c85c95e)
    
    ---
    updated-dependencies:
    - dependency-name: actions/checkout
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Closes gh-5283
    
    (cherry picked from commit 4a13266)
    dependabot[bot] authored and mgol committed Jul 2, 2023
    Configuration menu
    Copy the full SHA
    a370d7d View commit details
    Browse the repository at this point in the history

Commits on Jul 10, 2023

  1. Configuration menu
    Copy the full SHA
    72ae577 View commit details
    Browse the repository at this point in the history
  2. Build: Make sure *.cjs & *.mjs files use UNIX line endings as well

    We've had this rule for `*.js` files so far but we now have two new JS
    extensions.
    
    Closes gh-5290
    
    (cherry picked from commit 198b41c)
    mgol committed Jul 10, 2023
    Configuration menu
    Copy the full SHA
    3c18c1f View commit details
    Browse the repository at this point in the history
  3. Selector: Only attach the unload handler in IE & Edge Legacy

    Both IE & Edge Legacy need the workaround of calling `setDocument()` in an
    `unload` handler to avoid "permission denied" errors. However, due to not being
    possible to feature-detect this issue, the handler has been applied in all
    browsers for windows different than the one in which jQuery was loaded.
    
    jQuery 4.0, which drops Edge Legacy support, guards this workaround with
    a `document.documentMode` check. This won't work in the 3.x line due to still
    supporting Edge Legacy but we can check for
    `document.documentElement.msMatchesSelector` instead as that API is
    supported in IE 9+ and all Edge Legacy versions.
    
    Fixes gh-5281
    Closes gh-5282
    Ref gh-4792
    mgol authored Jul 10, 2023
    1 Configuration menu
    Copy the full SHA
    87467a6 View commit details
    Browse the repository at this point in the history
  4. CSS: Make the reliableTrDimensions support test work with Bootstrap C…

    …SS (3.x version)
    
    Bootstrap 5 includes the following CSS on the page:
    
    ```css
    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }
    ```
    
    That threw our `reliableTrDimensions` support test off. This change fixes the
    support test and adds a unit test ensuring support test values on a page
    including Bootstrap 5 CSS are the same as on a page without it.
    
    Fixes gh-5270
    Closes gh-5279
    Ref gh-5278
    mgol authored Jul 10, 2023
    1 Configuration menu
    Copy the full SHA
    a288838 View commit details
    Browse the repository at this point in the history
  5. Build: Generate the slim build on grunt & run compare_size on it

    Summary of the changes:
    * expand `node_smoke_tests` to test the full & slim builds
    * run `compare_size` on all built minified files; don't run it anymore on
      unminified files where they don't provide lots of value
    
    The main goal of this change is to make it easier to compare sizes of both the
    full & slim builds between the `3.x-stable` & `main` branches.
    
    Closes gh-5291
    Ref gh-5255
    
    (partially cherry-picked from commit 8be4c0e)
    mgol authored Jul 10, 2023
    1 Configuration menu
    Copy the full SHA
    763ade6 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2023

  1. Release: update authors

    timmywil committed Aug 28, 2023
    1 Configuration menu
    Copy the full SHA
    f85d521 View commit details
    Browse the repository at this point in the history
  2. Release: revert change that broke release

    763ade6#diff-ba51b2c9ce2527b1f191cb2c210748a4f18cccc38893f7ffe1597fb1d23ce027L72
    
    The above change did not work because makeArchives was
    not made to return a Promise
    timmywil committed Aug 28, 2023
    1 Configuration menu
    Copy the full SHA
    399b201 View commit details
    Browse the repository at this point in the history
  3. 3.7.1

    timmywil committed Aug 28, 2023
    1 Configuration menu
    Copy the full SHA
    f79d5f1 View commit details
    Browse the repository at this point in the history
Loading