New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@applitools/eyes-sdk-core

Package Overview
Dependencies
Maintainers
19
Versions
466
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/eyes-sdk-core - npm Package Compare versions

Comparing version 5.20.1 to 5.20.2

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [5.20.2](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@5.20.1...@applitools/eyes-sdk-core@5.20.2) (2019-10-07)
### Bug Fixes
* **eyes-sdk-core:** don't close batch if APPLITOOLS_DONT_CLOSE_BATCHES=true ([e07344f](https://github.com/applitools/eyes.sdk.javascript1/commit/e07344f))
## [5.20.1](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@5.20.0...@applitools/eyes-sdk-core@5.20.1) (2019-10-07)

@@ -8,0 +19,0 @@

12

lib/EyesBase.js

@@ -5,3 +5,3 @@ 'use strict';

ArgumentGuard, TypeUtils, EyesError, Region, Location, RectangleSize, CoordinatesType, ImageDeltaCompressor,
SimplePropertyHandler, ReadOnlyPropertyHandler, FileDebugScreenshotsProvider, NullDebugScreenshotProvider,
SimplePropertyHandler, ReadOnlyPropertyHandler, FileDebugScreenshotsProvider, NullDebugScreenshotProvider, GeneralUtils
} = require('@applitools/eyes-common');

@@ -1205,2 +1205,10 @@

/**
* @return {boolean}
* @private
*/
_getDontCloseBatches() {
return GeneralUtils.getEnvValue('DONT_CLOSE_BATCHES', true) || false;
}
/**
* @package

@@ -1210,3 +1218,3 @@ * @return {Promise}

async closeBatch() {
if (this._configuration.getIsDisabled()) {
if (this._configuration.getIsDisabled() || this._getDontCloseBatches()) {
this._logger.verbose('closeBatch Ignored');

@@ -1213,0 +1221,0 @@ return;

6

package.json
{
"name": "@applitools/eyes-sdk-core",
"version": "5.20.1",
"version": "5.20.2",
"description": "The core components of Eyes JavaScript SDK",

@@ -34,3 +34,3 @@ "keywords": [

"dependencies": {
"@applitools/eyes-common": "^3.11.1",
"@applitools/eyes-common": "^3.11.2",
"axios": "^0.19.0",

@@ -50,3 +50,3 @@ "es6-promise-pool": "^2.5.0"

},
"gitHead": "eb76125b1a10f9054863b9b75f72c98c7aac439a"
"gitHead": "3c958a22c9341cc2642d0e839ef697e5e042967c"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc