Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@applitools/eyes-sdk-core

Package Overview
Dependencies
Maintainers
12
Versions
465
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 4.3.0 to 4.4.0

17

CHANGELOG.md

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

# [4.4.0](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@4.3.0...@applitools/eyes-sdk-core@4.4.0) (2018-11-29)
### Bug Fixes
* **eyes-sdk-core:** fix not working `setHostOSInfo` method ([24a301e](https://github.com/applitools/eyes.sdk.javascript1/commit/24a301e))
* **eyes-sdk-core:** update docs for return type of `abortIfNotClosed` ([7cd1f44](https://github.com/applitools/eyes.sdk.javascript1/commit/7cd1f44))
### Features
* **eyes-sdk-core:** add `isNotNull(value)` method to `TypeUtils` ([0d402bd](https://github.com/applitools/eyes.sdk.javascript1/commit/0d402bd))
# [4.3.0](https://github.com/applitools/eyes.sdk.javascript1/compare/@applitools/eyes-sdk-core@4.2.0...@applitools/eyes-sdk-core@4.3.0) (2018-11-26)

@@ -8,0 +25,0 @@

2

lib/events/RemoteSessionEventHandler.js

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

options.uri = `${autSessionId}/validations`;
options.data = validationInfo.toJSON();
options.data = validationInfo;
options.method = 'POST';

@@ -133,0 +133,0 @@ return axios(options);

@@ -22,2 +22,12 @@ 'use strict';

/**
* Checks if `value` is NOT `null` and NOT `undefined`.
*
* @param {*} value
* @return {boolean}
*/
static isNotNull(value) {
return !TypeUtils.isNull(value);
}
/**
* Checks if `value` has a type `string` or created by the `String` constructor

@@ -24,0 +34,0 @@ *

{
"name": "@applitools/eyes-sdk-core",
"version": "4.3.0",
"version": "4.4.0",
"description": "The core components of Eyes JavaScript SDK",

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

},
"gitHead": "7c8731cee53d073f25830ddf9a0c9971c09d807b"
"gitHead": "b4aa16541103b5b35a4b48f71a16eb888a0cd5e5"
}

Sorry, the diff of this file is too big to display

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