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

@qawolf/ci-sdk

Package Overview
Dependencies
Maintainers
4
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@qawolf/ci-sdk - npm Package Compare versions

Comparing version 0.11.0 to 0.12.0

5

CHANGELOG.md

@@ -0,1 +1,6 @@

# v0.12.0
- Define a more restrictive `LogDriver` interface for easy integration with GHA
`core` interface.
# v0.11.0

@@ -2,0 +7,0 @@

4

dist/cjs/lib/sdk/log/default.js

@@ -11,5 +11,5 @@ "use strict";

},
error(message) {
console.error(message);
error(message, error) {
console.error(message, error);
},
};

@@ -8,5 +8,5 @@ export const defaultLogDriver = {

},
error(message) {
console.error(message);
error(message, error) {
console.error(message, error);
},
};
export interface LogDriver {
info(...messages: unknown[]): void;
warn(...messages: unknown[]): void;
error(...messages: unknown[]): void;
info(message: string): void;
warn(message: string): void;
error(message: string, error?: unknown): void;
}

@@ -6,0 +6,0 @@ export type FetchDriver = typeof fetch;

{
"name": "@qawolf/ci-sdk",
"version": "0.11.0",
"version": "0.12.0",
"description": "A simple SDK for interacting with QAWolf in CI scripts.",

@@ -17,3 +17,4 @@ "type": "module",

"test": "jest",
"prepare": "npm run build"
"prepare": "npm run build",
"publish": "./scripts/publish.sh"
},

@@ -20,0 +21,0 @@ "keywords": [],

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