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

netlify-plugin-qawolf

Package Overview
Dependencies
Maintainers
1
Versions
17
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

netlify-plugin-qawolf - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

2

package.json
{
"name": "netlify-plugin-qawolf",
"version": "1.1.0",
"version": "1.2.0",
"description": "Netlify Build plugin to run QA Wolf tests on deployments",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -7,7 +7,10 @@ const retry = require('async-retry')

const buildCommittedAt = (commits) => {
const buildCommitFields = (commits) => {
const commit = commits.find((c) => c.sha === process.env.COMMIT_REF)
if (!commit) return null
if (!commit) return {}
return commit.committer.date || commit.author.date
return {
committed_at: commit.committer.date || commit.author.date,
message: commit.message,
}
}

@@ -28,3 +31,2 @@

{
committed_at: buildCommittedAt(commits),
deployment_environment: process.env.CONTEXT,

@@ -38,2 +40,3 @@ deployment_url: process.env.DEPLOY_PRIME_URL,

unique_deployment_url: process.env.DEPLOY_URL,
...buildCommitFields(commits),
},

@@ -40,0 +43,0 @@ { headers: { authorization: process.env.QAWOLF_API_KEY } },

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