-
Notifications
You must be signed in to change notification settings - Fork 20.6k
Comparing changes
Open a pull request
base repository: jquery/jquery
base: 3.7.0
head repository: jquery/jquery
compare: 3.7.1
- 20 commits
- 47 files changed
- 6 contributors
Commits on May 11, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 64460da - Browse repository at this point
Copy the full SHA 64460daView commit details
Commits on May 22, 2023
-
Configuration menu - View commit details
-
Copy full SHA for b473729 - Browse repository at this point
Copy the full SHA b473729View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7287894 - Browse repository at this point
Copy the full SHA 7287894View commit details
Commits on May 31, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 992a665 - Browse repository at this point
Copy the full SHA 992a665View commit details
Commits on Jun 12, 2023
-
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
Configuration menu - View commit details
-
Copy full SHA for 13a870b - Browse repository at this point
Copy the full SHA 13a870bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 44c56f8 - Browse repository at this point
Copy the full SHA 44c56f8View commit details -
Tests: Skip a new
.text()
test in IE 9The test depends on `DOMParser`'s `parseFromString` called with `text/html` which is not supported in IE 9.
Configuration menu - View commit details
-
Copy full SHA for b84146c - Browse repository at this point
Copy the full SHA b84146cView commit details
Commits on Jun 13, 2023
-
Build: Reference GitHub Actions by commit SHAs
The SHAs are verified to come from the original repositories and not forks. For reference: https://github.com/actions/checkout/releases/tag/v3.5.2 actions/checkout@8e5e7e5 https://github.com/actions/cache/releases/tag/v3.3.1 actions/cache@88522ab https://github.com/actions/setup-node/releases/tag/v3.6.0 actions/setup-node@64ed1c7 Fixes gh-5266 Closes gh-5269 Signed-off-by: Gabriela Gutierrez <[email protected]> (cherry picked from commit 784b9ba)
Configuration menu - View commit details
-
Copy full SHA for 0ea85da - Browse repository at this point
Copy the full SHA 0ea85daView commit details
Commits on Jun 23, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 141518e - Browse repository at this point
Copy the full SHA 141518eView commit details
Commits on Jun 27, 2023
-
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)
Configuration menu - View commit details
-
Copy full SHA for 5aa7d93 - Browse repository at this point
Copy the full SHA 5aa7d93View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4a29888 - Browse repository at this point
Copy the full SHA 4a29888View commit details
Commits on Jul 2, 2023
-
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)
Configuration menu - View commit details
-
Copy full SHA for a370d7d - Browse repository at this point
Copy the full SHA a370d7dView commit details
Commits on Jul 10, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 72ae577 - Browse repository at this point
Copy the full SHA 72ae577View commit details -
Build: Make sure
*.cjs
&*.mjs
files use UNIX line endings as wellConfiguration menu - View commit details
-
Copy full SHA for 3c18c1f - Browse repository at this point
Copy the full SHA 3c18c1fView commit details -
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
1Configuration menu - View commit details
-
Copy full SHA for 87467a6 - Browse repository at this point
Copy the full SHA 87467a6View commit details -
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
1Configuration menu - View commit details
-
Copy full SHA for a288838 - Browse repository at this point
Copy the full SHA a288838View commit details -
Build: Generate the slim build on
grunt
& runcompare_size
on itSummary 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)
1Configuration menu - View commit details
-
Copy full SHA for 763ade6 - Browse repository at this point
Copy the full SHA 763ade6View commit details
Commits on Aug 28, 2023
-
1
Configuration menu - View commit details
-
Copy full SHA for f85d521 - Browse repository at this point
Copy the full SHA f85d521View commit details -
Release: revert change that broke release
763ade6#diff-ba51b2c9ce2527b1f191cb2c210748a4f18cccc38893f7ffe1597fb1d23ce027L72 The above change did not work because makeArchives was not made to return a Promise
1Configuration menu - View commit details
-
Copy full SHA for 399b201 - Browse repository at this point
Copy the full SHA 399b201View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for f79d5f1 - Browse repository at this point
Copy the full SHA f79d5f1View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 3.7.0...3.7.1