Skip to content

Commit

Permalink
[Security Solution] Disable v2 transform names (#180383)
Browse files Browse the repository at this point in the history
  • Loading branch information
pzl authored Apr 9, 2024
1 parent 15dea75 commit c3c9df6
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

0 comments on commit c3c9df6

Please sign in to comment.