-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump jquery from 3.4.1 to 3.5.0 #64884
Conversation
Bumps [jquery](https://github.com/jquery/jquery) from 3.4.1 to 3.5.0. - [Release notes](https://github.com/jquery/jquery/releases) - [Commits](jquery/jquery@3.4.1...3.5.0) Signed-off-by: dependabot[bot] <[email protected]>
Since this is a community submitted pull request, a Jenkins build has not been kicked off automatically. Can an Elastic organization member please verify the contents of this patch and then kick off a build manually? |
Pinging @elastic/kibana-operations (Team:Operations) |
retest |
The jQuery update includes a breaking change in the `htmlPrefilter` sanitization method. It handles self-closing tags differently when they are applied to HTML elements that may have content. Angular manipulates the DOM to add content to elements, and some of Kibana's usage of Angular included non-standard self-closing tags. This commit changes those elements to use separate open/close tags.
retest |
@elasticmachine merge upstream |
retest |
@elasticmachine merge upstream |
retest |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maps/*
tested and works
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested locally and LGTM - didn't notice anything broken in Discover/Visualize/Dashboard/Graph
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tested, and everything looks good from Stack Monitoring pov ✅
💚 Build SucceededHistory
To update your PR or re-run it, just comment with: |
# Conflicts: # packages/kbn-ui-shared-deps/package.json # src/plugins/visualize/public/application/editor/editor.html # x-pack/plugins/monitoring/public/directives/main/index.html
# Conflicts: # packages/kbn-ui-shared-deps/package.json # src/plugins/dashboard/public/application/listing/dashboard_listing_ng_wrapper.html # src/plugins/visualize/public/application/editor/editor.html # x-pack/package.json # x-pack/plugins/graph/public/angular/templates/index.html # x-pack/plugins/graph/public/angular/templates/listing_ng_wrapper.html # x-pack/plugins/maps/public/angular/listing_ng_wrapper.html # x-pack/plugins/monitoring/public/directives/main/index.html # yarn.lock
Bumps jquery from 3.4.1 to 3.5.0.
Commits
7a0a850
3.5.08570a08
Release: Update AUTHORS.txtda3dd85
Ajax: Do not execute scripts for unsuccessful HTTP responses065143c
Ajax: Overwrite s.contentType with content-type header value, if any1a4f10d
Tests: Blacklist one focusin test in IE9e15d6b
Event: Use only one focusin/out handler per matching window & document966a709
Manipulation: Skip the select wrapper for <option> outside of IE 91d61fd9
Manipulation: Make jQuery.htmlPrefilter an identity function04bf577
Selector: Update Sizzle from 2.3.4 to 2.3.57506c9c
Build: Resolve Travis config warningsMaintainer changes
This version was pushed to npm by mgol, a new releaser for jquery since your current version.
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebase
will rebase this PR@dependabot recreate
will recreate this PR, overwriting any edits that have been made to it@dependabot merge
will merge this PR after your CI passes on it@dependabot squash and merge
will squash and merge this PR after your CI passes on it@dependabot cancel merge
will cancel a previously requested merge and block automerging@dependabot reopen
will reopen this PR if it is closed@dependabot close
will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major version
will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor version
will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependency
will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)@dependabot use these labels
will set the current labels as the default for future PRs for this repo and language@dependabot use these reviewers
will set the current reviewers as the default for future PRs for this repo and language@dependabot use these assignees
will set the current assignees as the default for future PRs for this repo and language@dependabot use this milestone
will set the current milestone as the default for future PRs for this repo and languageYou can disable automated security fix PRs for this repo from the Security Alerts page.
Edit by @jportner:
Needed to apply some code changes in f562e84 to prevent this from breaking some webpages. jQuery changed the
htmlPrefilter
sanitization method to be more strict, so self-closing tags with no content are now stripped out of the DOM. This commit simply changes those elements to use explicit close tags.