mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[Security Solution] Disable v2 transform names (#180383)
This commit is contained in:
parent
15dea75d52
commit
c3c9df690c
1 changed files with 3 additions and 3 deletions
|
@ -5,10 +5,10 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import semverLte from 'semver/functions/lte';
|
||||
// import semverLte from 'semver/functions/lte';
|
||||
|
||||
// switch to "v2" logic
|
||||
const MIN_ENDPOINT_PACKAGE_V2_VERSION = '8.14.0-prerelease.1';
|
||||
// const MIN_ENDPOINT_PACKAGE_V2_VERSION = '8.14.0-prerelease.1';
|
||||
export function isEndpointPackageV2(version: string) {
|
||||
return semverLte(MIN_ENDPOINT_PACKAGE_V2_VERSION, version);
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue