Skip to content
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

Update jsdom (main) #203295

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open

Update jsdom (main) #203295

wants to merge 2 commits into from

Conversation

elastic-renovate-prod[bot]
Copy link
Contributor

This PR contains the following updates:

Package Type Update Change
@types/jsdom (source) devDependencies major ^20.0.1 -> ^21.1.7
jsdom devDependencies major ^20.0.1 -> ^25.0.1

Release Notes

jsdom/jsdom (jsdom)

v25.0.1

Compare Source

  • Updated dependencies, notably tough-cookie, which no longer prints a deprecation warning.

v25.0.0

Compare Source

This major release changes the prototype of a jsdom's EventTarget.prototype to point to the Object.prototype inside the jsdom, instead of pointing to the Node.js Object.prototype. Thus, the prototype chain of Window stays entirely within the jsdom, never crossing over into the Node.js realm.

This only occurs when runScripts is set to non-default values of "dangerously" or "outside-only", as with the default value, there is no separate Object.prototype inside the jsdom.

This will likely not impact many programs, but could cause some changes in instanceof behavior, and so out of an abundance of caution, we're releasing it as a new major version.

v24.1.3

Compare Source

  • Fixed calls to postMessage() that were done as a bare property (i.e., postMessage() instead of window.postMessage()).

v24.1.2

Compare Source

  • Fixed an issue with the in operator applied to EventTarget methods, e.g. 'addEventListener' in window, which only appeared in Node.js ≥22.5.0. (legendecas)
  • Fixed the events fired by blur(): it no longer fires focus and focusin on the Document, and blur and focusout no longer have their relatedTarget property set. (asamuzaK)

v24.1.1

Compare Source

  • Fixed selection methods to trigger the selectionchange event on the Document object. (piotr-oles)

v24.1.0

Compare Source

  • Added the getSetCookie() method to the Headers class. (ushiboy)
  • Fixed the creation and parsing of elements with names from Object.prototype, like "constructor" or "toString".
  • Updated rweb-cssom, which can now parse additional CSS constructs.

v24.0.0

Compare Source

This release reverts our selector engine back to nwsapi. As discussed in #​3659, the performance regressions from @asamuzakjp/dom-selector turned out to be higher than anticipated. In the future, we can revisit @asamuzakjp/dom-selector after it reaches nwsapi's performance on the two real-world benchmarks provided by the community.

Since reverting to nwsapi causes several functionality regressions, e.g. removing :has() support, we've decided to make this a major version.

Additionally:

  • Small fixes to edge-case behavior of the following properties: input.maxLength, input.minLength, input.size, progress.max, tableCell.colSpan, tableCell.rowSpan, tableCol.span, textArea.cols, textArea.maxLength, textArea.minLength, textArea.rows.

v23.2.0

Compare Source

This release switches our CSS selector engine from nwsapi to @asamuzakjp/dom-selector. The new engine is more actively maintained, and supports many new selectors: see the package's documentation for the full list. It also works better with shadow trees.

There is a potential of a performance regression due to this change. In our stress test benchmark, which runs most of these 273 selectors against this 128 KiB document, the new engine completes the benchmark only 0.25x as fast. However, we're hopeful that in more moderate usage this will not be a significant issue. Any help speeding up @asamuzakjp/dom-selector is appreciated, and feel free to open an issue if this has had a significant impact on your project.

v23.1.0

Compare Source

  • Added an initial implementation of ElementInternals, including the shadowRoot getter and the string-valued ARIA properties. (zjffun)
  • Added the string-valued ARIA attribute-reflecting properties to Element.
  • Fixed history.pushState() and history.replaceState() to follow the latest specification, notably with regards to how they handle empty string inputs and what new URLs are possible.
  • Fixed the input.valueAsANumber setter to handle NaN correctly. (alexandertrefz)
  • Updated various dependencies, including cssstyle which contains several bug fixes.

v23.0.1

Compare Source

  • Fixed the incorrect canvas peer dependency introduced in v23.0.0.

v23.0.0

Compare Source

  • Node.js v18 is now the minimum supported version.
  • Updated various dependencies, including whatwg-url which integrates various additions to the URL and URLSearchParams objects.

v22.1.0

Compare Source

  • Added crypto.randomUUID(). (jamesbvaughan)
  • Added DOMRect and DOMRectReadOnly.
  • Added AbortSignal.timeout().
  • Added abortSignal.throwIfAborted().
  • Added support for the submitter argument to the FormData constructor. (jenseng)
  • Improved getComputedStyle()'s results for color-based properties, to resolve named colors and attempt to provide initial inheritance support. (hoekz-wwt)
  • Updated Window's event handler properties (e.g. oncopy, ontouchstart, etc.) to reflect the latest list from the standard.
  • Fixed DOMParser-created documents to inherit their URL from the creating document.

v22.0.0

Compare Source

v21.1.2

Compare Source

  • Fixed setRangeText() used on <input> and <textarea> elements to calculate the new end index correctly. (pmstss)
  • Fixed pageX, pageY, offsetX, and offsetY on MouseEvents during dispatch. (jenseng)
  • Upgraded nwsapi to v2.2.4, bringing along various fixes to our selector engine.

v21.1.1

Compare Source

  • Fixed jsdom.reconfigure() to also adjust the URL as seen by the history API, so that e.g. history.replaceState(null, "") would not mess up the URL. (jdufresne)
  • Fixed location.hash = "" to leave any # in location.href.
  • Fixes a few bugs with CSS parsing by replacing cssom with rweb-cssom, since the latter is maintained. (seanparmelee)

v21.1.0

Compare Source

  • Added x, y, pageX, pageY, offsetX, and offsetY to MouseEvent. (jenseng, ViniciusFXavier)
  • Added support for unset with getComputedStyle(). (jsnajdr)
  • Added the submitter property to SubmitEvent. (jenseng)
  • Fixed MouseEvent's screenX and screenY to no longer coerce to integers, allowing fractional values. (jenseng)
  • Fixed formEl.submit() to not longer fire submit events. (jenseng)
  • Fixed stylesheets to no longer affect the document after their corresponding <link> is removed. (jsnajdr)
  • Fixed pointer-events to inherit when used with getComputedStyle(). (jnajdr)
  • Fixed <script> elements with no src="" to no longer fire load events. (t1ger2080)
  • Improved getComputedStyle() to cache its results, which should make it much faster. (jsnajdr)

v21.0.0

Compare Source

A potentially-breaking bug fix:

  • Fixed the window, document, location, and top properties of Window to be non-configurable. (ExE-Boss)

Other changes:

  • Added support for <input type=image> submitting forms. (jenseng)
  • Added the location setter to the Window object, which forwards to the location.href setter. Setting the URL is still only implemented for fragment navigations, however. (ExE-Boss)
  • Fixed defer="" <script> elements that are added after DOMContentLoaded to execute, instead of being skipped.
  • Fixed selectElement.selectedOptions being incorrect when optionElement.selected is set. This was a regression introduced in v20.0.1. Unfortunately this also reverts the performance improvement when appending <option> elements that was introduced then. (eps1lon)
  • Fixed the self, locationbar, menubar, personalbar, scrollbars, statusbar, toolbar, frames, parent, external, length, and screen properties of Window to be replaceable: that is, setting them will override their values, instead of having the new value be ignored. (ExE-Boss)
  • Fixed a few issues with JSDOM.fromURL() in the browser build of jsdom. (LungZeno)

v20.0.3

Compare Source

  • Updated dependencies, notably w3c-xmlserializer, which fixes using DOMParser on XML documents containing emoji.

v20.0.2

Compare Source

  • Fixed xhr.abort() to no longer give an exception when the constructed XMLHttpRequest was invalid. (whamtet)
  • Fixed event.getModifierState() on MouseEvent and KeyboardEvent instances to properly consult the ctrlKey, altKey, metaKey, and shiftKey properties of the event. (juzerzarif)
  • Fixed custom element creation to not be affected by any modifications to the window.customElements property. (bicknellr)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@elastic-renovate-prod elastic-renovate-prod bot added backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:Operations Team label for Operations Team labels Dec 6, 2024
@elastic-renovate-prod elastic-renovate-prod bot requested a review from a team December 6, 2024 16:53
@elasticmachine
Copy link
Contributor

Pinging @elastic/kibana-operations (Team:Operations)

@Ikuni17
Copy link
Contributor

Ikuni17 commented Dec 7, 2024

buildkite test this

@elastic-renovate-prod
Copy link
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@elasticmachine
Copy link
Contributor

elasticmachine commented Dec 7, 2024

💔 Build Failed

Failed CI Steps

Test Failures

  • [job] [logs] Jest Tests #18 / updates selected KSPM input
  • [job] [logs] Jest Tests #18 / updates selected KSPM input
  • [job] [logs] FTR Configs #89 / Agent policies fleet_agent_policies POST /api/fleet/agent_policies should create .fleet-policies document with inputs
  • [job] [logs] FTR Configs #89 / Agent policies fleet_agent_policies POST /api/fleet/agent_policies should create .fleet-policies document with inputs
  • [job] [logs] FTR Configs #97 / Alerting builtin alertTypes circuit_breakers index threshold rule that hits max alerts circuit breaker persist existing alerts to next execution if circuit breaker is hit
  • [job] [logs] Jest Tests #12 / ClusterConfigurationForm calls enrollment API for https addresses when submitting form
  • [job] [logs] Jest Tests #12 / ClusterConfigurationForm calls enrollment API for https addresses when submitting form
  • [job] [logs] Jest Tests #12 / ClusterConfigurationForm validates form
  • [job] [logs] Jest Tests #12 / ClusterConfigurationForm validates form
  • [job] [logs] Jest Tests #6 / Discover component selected data view with time field displays chart toggle
  • [job] [logs] Jest Tests #6 / Discover component selected data view with time field displays chart toggle
  • [job] [logs] Jest Tests #6 / Discover documents layout context awareness should pass cell renderers from profile
  • [job] [logs] Jest Tests #6 / Discover documents layout context awareness should pass cell renderers from profile
  • [job] [logs] Jest Tests #6 / Discover documents layout render complete
  • [job] [logs] Jest Tests #6 / Discover documents layout render complete
  • [job] [logs] Jest Tests #6 / Discover documents layout render complete when loading but documents were already fetched
  • [job] [logs] Jest Tests #6 / Discover documents layout render complete when loading but documents were already fetched
  • [job] [logs] Jest Tests #6 / Discover documents layout should render customisations
  • [job] [logs] Jest Tests #6 / Discover documents layout should render customisations
  • [job] [logs] Jest Tests #6 / Discover histogram layout component render should render PanelsToggle
  • [job] [logs] Jest Tests #6 / Discover histogram layout component render should render PanelsToggle
  • [job] [logs] Jest Tests #6 / Discover main content component Document view should show DiscoverDocuments when VIEW_MODE is DOCUMENT_LEVEL
  • [job] [logs] Jest Tests #6 / Discover main content component Document view should show DiscoverDocuments when VIEW_MODE is DOCUMENT_LEVEL
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include DocumentViewModeToggle when in ES|QL mode
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include DocumentViewModeToggle when in ES|QL mode
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include PanelsToggle when chart is available
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include PanelsToggle when chart is available
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include PanelsToggle when chart is available and hidden
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include PanelsToggle when chart is available and hidden
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include PanelsToggle when chart is not available
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should include PanelsToggle when chart is not available
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should show DocumentViewModeToggle when not in ES|QL mode
  • [job] [logs] Jest Tests #6 / Discover main content component DocumentViewModeToggle should show DocumentViewModeToggle when not in ES|QL mode
  • [job] [logs] Jest Tests #1 / getElementPositionAndAttributes should return elements positions
  • [job] [logs] Jest Tests #1 / getElementPositionAndAttributes should return elements positions
  • [job] [logs] Jest Tests #1 / getNumberOfItems should determine the number of items by selector
  • [job] [logs] Jest Tests #1 / getNumberOfItems should determine the number of items by selector
  • [job] [logs] Jest Tests #1 / getNumberOfItems should fall back to the selector when the attribute is empty
  • [job] [logs] Jest Tests #1 / getNumberOfItems should fall back to the selector when the attribute is empty
  • [job] [logs] Jest Tests #13 / Index Templates tab when there are index templates delete index template should show a warning message when attempting to delete a system template
  • [job] [logs] Jest Tests #13 / Index Templates tab when there are index templates delete index template should show a warning message when attempting to delete a system template
  • [job] [logs] Jest Tests #13 / Index Templates tab when there are index templates delete legacy index template should show a warning message when attempting to delete a system template
  • [job] [logs] Jest Tests #13 / Index Templates tab when there are index templates delete legacy index template should show a warning message when attempting to delete a system template
  • [job] [logs] Jest Tests #2 / Policy details artifacts flyout when submitting the form should show a toast error when the request fails
  • [job] [logs] Jest Tests #2 / Policy details artifacts flyout when submitting the form should show a toast error when the request fails
  • [job] [logs] Jest Tests #2 / Policy details artifacts flyout when submitting the form should submit the exception when submit is pressed (1 exception), display a toast and close the flyout
  • [job] [logs] Jest Tests #2 / Policy details artifacts flyout when submitting the form should submit the exception when submit is pressed (1 exception), display a toast and close the flyout
  • [job] [logs] Jest Tests #2 / Policy details artifacts flyout when submitting the form should submit the exception when submit is pressed (2 exceptions), display a toast and close the flyout
  • [job] [logs] Jest Tests #2 / Policy details artifacts flyout when submitting the form should submit the exception when submit is pressed (2 exceptions), display a toast and close the flyout
  • [job] [logs] Jest Tests #2 / Policy form Notify User option component should be able to check the option
  • [job] [logs] Jest Tests #2 / Policy form Notify User option component should be able to check the option
  • [job] [logs] Jest Tests #2 / Policy form Notify User option component should be able to un-check the option
  • [job] [logs] Jest Tests #2 / Policy form Notify User option component should be able to un-check the option
  • [job] [logs] Jest Tests #17 / policy table add index template modal shows when add policy to index template button is pressed
  • [job] [logs] Jest Tests #17 / policy table add index template modal shows when add policy to index template button is pressed
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should move column left/right correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should move column left/right correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should remove column
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should remove column
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should sort date column
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should sort date column
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should sort number column
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should sort number column
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should sort string column correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline columns should sort string column correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline Leading actions - expand event should expand and collapse event correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline Leading actions - expand event should expand and collapse event correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline left controls should be able to sort by multiple columns
  • [job] [logs] Jest Tests #9 / query tab with unified timeline left controls should be able to sort by multiple columns
  • [job] [logs] Jest Tests #9 / query tab with unified timeline left controls should clear all sorting
  • [job] [logs] Jest Tests #9 / query tab with unified timeline left controls should clear all sorting
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should load more records according to sample size correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should load more records according to sample size correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should load notes for correct page size
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should load notes for correct page size
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should load notes for current page only
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should load notes for current page only
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should paginate correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline pagination should paginate correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should hide row-renderers when disabled
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should hide row-renderers when disabled
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should render unified-field-list in timeline
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should render unified-field-list in timeline
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should render unifiedDataTable in timeline
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should render unifiedDataTable in timeline
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should show row-renderers correctly by default
  • [job] [logs] Jest Tests #9 / query tab with unified timeline render should show row-renderers correctly by default
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should add the column when clicked on ⊕ sign
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should add the column when clicked on ⊕ sign
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should remove the column when clicked on X sign
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should remove the column when clicked on X sign
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should should show callout when field search does not matches any field
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should should show callout when field search does not matches any field
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should toggle side bar correctly
  • [job] [logs] Jest Tests #9 / query tab with unified timeline unified fields list should toggle side bar correctly
  • [job] [logs] Jest Tests #6 / saved search embeddable context awareness should pass cell renderers from profile
  • [job] [logs] Jest Tests #6 / saved search embeddable context awareness should pass cell renderers from profile
  • [job] [logs] FTR Configs #85 / security APIs - OIDC (Implicit Flow) OpenID Connect Implicit Flow authentication finishing handshake should return an HTML page that will parse URL fragment
  • [job] [logs] FTR Configs #85 / security APIs - OIDC (Implicit Flow) OpenID Connect Implicit Flow authentication finishing handshake should return an HTML page that will parse URL fragment
  • [job] [logs] Jest Tests #18 / UnifiedDataTable cellActionsTriggerId should call useDataGridColumnsCellActions properly when cellActionsTriggerId defined
  • [job] [logs] Jest Tests #18 / UnifiedDataTable cellActionsTriggerId should call useDataGridColumnsCellActions properly when cellActionsTriggerId defined
  • [job] [logs] Jest Tests #18 / UnifiedDataTable cellActionsTriggerId should call useDataGridColumnsCellActions with empty params when no cellActionsTriggerId is provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable cellActionsTriggerId should call useDataGridColumnsCellActions with empty params when no cellActionsTriggerId is provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable display settings should hide display settings if no handlers provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable display settings should hide display settings if no handlers provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable display settings should include additional display settings if onUpdateSampleSize is provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable display settings should include additional display settings if onUpdateSampleSize is provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable display settings should not include additional display settings if onUpdateSampleSize is not provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable display settings should not include additional display settings if onUpdateSampleSize is not provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection Allows selection/deselection of multiple documents
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection Allows selection/deselection of multiple documents
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection copying selected columns to clipboard as text
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection copying selected columns to clipboard as text
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection copying selected documents to clipboard as JSON
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection copying selected documents to clipboard as JSON
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection copying selected documents to clipboard as text
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection copying selected documents to clipboard as text
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection deselection of all selected documents
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection deselection of all selected documents
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection no documents are selected initially
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection no documents are selected initially
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection showing only selected documents and remove filter deselecting each doc manually
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection showing only selected documents and remove filter deselecting each doc manually
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection showing only selected documents and undo selection
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection showing only selected documents and undo selection
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection showing selected documents, underlying data changes, all documents are displayed, selection is gone
  • [job] [logs] Jest Tests #18 / UnifiedDataTable Document selection showing selected documents, underlying data changes, all documents are displayed, selection is gone
  • [job] [logs] Jest Tests #18 / UnifiedDataTable edit field button should not render the edit field button if onFieldEdited is not provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable edit field button should not render the edit field button if onFieldEdited is not provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable edit field button should render the edit field button if onFieldEdited is provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable edit field button should render the edit field button if onFieldEdited is provided
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should apply client side sorting in ES|QL mode
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should apply client side sorting in ES|QL mode
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should apply sorting
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should apply sorting
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should not apply client side sorting if not in ES|QL mode
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should not apply client side sorting if not in ES|QL mode
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should not apply unknown sorting
  • [job] [logs] Jest Tests #18 / UnifiedDataTable sorting should not apply unknown sorting

Metrics [docs]

Async chunks

Total size of all lazy-loaded chunks that will be downloaded as the user navigates the app

id before after diff
kibanaReact 197.2KB 201.7KB +4.6KB
visTypeVega 1.9MB 1.9MB +4.6KB
visTypeVislib 371.4KB 376.0KB +4.6KB
total +13.7KB

History

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backport:all-open Backport to all branches that could still receive a release release_note:skip Skip the PR/issue when compiling release notes Team:Operations Team label for Operations Team
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants