You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixeselastic#58684.
In elastic#56957 we consolidated usage of various query string utils by using
the `query-string` dependency everywhere. Unfortunately, this introduced
a regression where Kibana failed in IE11 due to dropped IE support as of
`query-string` v6.0.0. Downgrading is not an easy option due to changed
APIs and lack of type definitions.
This POC experiments with the idea of requiring the original
`query-string` package, copying the files into this package, and running
them through babel.
As a result, plugins can use `@kbn/query-string` as a drop-in
replacement for `query-string`, the only difference being that the
upstream library has now been transpiled.
In #56957, query-string 6.x was added, which does not support IE11. This needs to be downgraded in master and 7.x before the next release.
The text was updated successfully, but these errors were encountered: