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

@applitools/ufg-client

Package Overview
Dependencies
Maintainers
57
Versions
99
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/ufg-client - npm Package Compare versions

Comparing version 1.13.1 to 1.14.0

21

CHANGELOG.md
# Changelog
## [1.14.0](https://github.com/Applitools-Dev/sdk/compare/js/ufg-client@1.13.1...js/ufg-client@1.14.0) (2024-11-07)
### Features
* offline storybook ([#2596](https://github.com/Applitools-Dev/sdk/issues/2596)) ([c8edf80](https://github.com/Applitools-Dev/sdk/commit/c8edf80bc379d0cf5d94d798314bdad405d2f2b4))
### Dependencies
* @applitools/utils bumped to 1.7.5
#### Code Refactoring
* start linting "no-floating-promises" (wip) ([#2539](https://github.com/Applitools-Dev/sdk/issues/2539)) ([51b91cb](https://github.com/Applitools-Dev/sdk/commit/51b91cb15603f7d68e4bd6a16eb0f80e3f380295))
* @applitools/logger bumped to 2.0.19
* @applitools/req bumped to 1.7.3
* @applitools/image bumped to 1.1.14
## [1.13.1](https://github.com/Applitools-Dev/sdk/compare/js/ufg-client@1.13.0...js/ufg-client@1.13.1) (2024-10-03)

@@ -4,0 +25,0 @@

12

dist/offline/client-offline.js

@@ -42,3 +42,13 @@ "use strict";

const offlineResourcesLocationPath = path_1.default.resolve(offlineLocationPath, 'resources');
fs_1.default.mkdirSync(offlineResourcesLocationPath);
try {
fs_1.default.mkdirSync(offlineResourcesLocationPath);
}
catch (err) {
if (err.code === 'EEXIST') {
logger.log(`offline resources folder already exists: ${offlineResourcesLocationPath} (continuing...)`);
}
else {
throw err;
}
}
logger.log('offline ufg client created with path', offlineLocationPath);

@@ -45,0 +55,0 @@ const fetchResource = (0, fetch_resource_1.makeFetchResource)({

10

package.json
{
"name": "@applitools/ufg-client",
"version": "1.13.1",
"version": "1.14.0",
"homepage": "https://applitools.com",

@@ -44,6 +44,6 @@ "bugs": {

"@applitools/css-tree": "1.1.4",
"@applitools/image": "1.1.13",
"@applitools/logger": "2.0.18",
"@applitools/req": "1.7.2",
"@applitools/utils": "1.7.4",
"@applitools/image": "1.1.14",
"@applitools/logger": "2.0.19",
"@applitools/req": "1.7.3",
"@applitools/utils": "1.7.5",
"@xmldom/xmldom": "0.8.10",

@@ -50,0 +50,0 @@ "abort-controller": "3.0.0",

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