🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@applitools/core-base

Package Overview
Dependencies
Maintainers
47
Versions
160
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/core-base - npm Package Compare versions

Comparing version
1.34.1
to
1.35.0
+7
-0
CHANGELOG.md
# Changelog
## [1.35.0](https://github.com/Applitools-Dev/sdk/compare/js/core-base@1.34.1...js/core-base@1.35.0) (2026-06-04)
### Features
* auto-accept UFG diffs from infra updates | AD-9583 ([#3797](https://github.com/Applitools-Dev/sdk/issues/3797)) ([fde553c](https://github.com/Applitools-Dev/sdk/commit/fde553c947aa3c040660ef5d07855fa4a1412399))
## [1.34.1](https://github.com/Applitools-Dev/sdk/compare/js/core-base@1.34.0...js/core-base@1.34.1) (2026-05-26)

@@ -4,0 +11,0 @@

+2
-0

@@ -122,2 +122,3 @@ "use strict";

trimmedBatchProps: result.trimmedBatchProps,
shouldRetryWithOldInfra: result.shouldRetryWithOldInfra,
};

@@ -1196,4 +1197,5 @@ });

replaceLast: settings.replaceLast,
oldInfraRetry: settings.oldInfraRetry,
},
};
}
+1
-1
{
"name": "@applitools/core-base",
"version": "1.34.1",
"version": "1.35.0",
"homepage": "https://applitools.com",

@@ -5,0 +5,0 @@ "bugs": {

@@ -37,2 +37,3 @@ import type { EyesServerSettings } from './types';

ecEnabled: boolean;
defaultMatchLevel?: import("./types").MatchLevel | undefined;
processKeepaliveIntervalSec: number;

@@ -39,0 +40,0 @@ batchPropertiesLimits: import("./types").BatchPropertiesLimits;

@@ -145,2 +145,3 @@ import type { MaybeArray, Region, Size, Location } from '@applitools/utils';

trimmedBatchProps?: boolean;
shouldRetryWithOldInfra?: boolean;
}

@@ -176,2 +177,3 @@ export interface FunctionalTest {

ecEnabled: boolean;
defaultMatchLevel?: MatchLevel;
processKeepaliveIntervalSec: number;

@@ -371,3 +373,3 @@ batchPropertiesLimits: BatchPropertiesLimits;

}
type MatchLevel = 'None' | 'Layout' | 'Layout1' | 'Layout2' | 'Content' | 'IgnoreColors' | 'Strict' | 'Exact' | 'Dynamic';
export type MatchLevel = 'None' | 'Layout' | 'Layout1' | 'Layout2' | 'Content' | 'IgnoreColors' | 'Strict' | 'Exact' | 'Dynamic';
export type AccessibilityRegionType = 'IgnoreContrast' | 'RegularText' | 'LargeText' | 'BoldText' | 'GraphicalObject';

@@ -440,2 +442,4 @@ type AccessibilityLevel = 'AA' | 'AAA';

httpVersion?: 1 | 2;
/** @internal */
oldInfraRetry?: boolean;
}

@@ -530,3 +534,4 @@ export interface ReportSettings {

readonly reason?: unknown;
readonly isAutoAcceptedInfraUpdate?: boolean;
}
export {};