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

artifact-engine

Package Overview
Dependencies
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

artifact-engine - npm Package Compare versions

Comparing version 0.1.11 to 0.1.12

7

Engine/cilogger.js

@@ -7,7 +7,8 @@ "use strict";

var hostType = (tl.getVariable('SYSTEM.HOSTTYPE') || "").toLowerCase();
var isReleaseHost = hostType === 'release' || hostType === "deployment";
return {
hostType: hostType,
definitionName: hostType === 'release' ? tl.getVariable('RELEASE.DEFINITIONNAME') : tl.getVariable('BUILD.DEFINITIONNAME'),
processId: hostType === 'release' ? tl.getVariable('RELEASE.RELEASEID') : tl.getVariable('BUILD.BUILDID'),
processUrl: hostType === 'release' ? tl.getVariable('RELEASE.RELEASEWEBURL') : (tl.getVariable('SYSTEM.TEAMFOUNDATIONSERVERURI') + tl.getVariable('SYSTEM.TEAMPROJECT') + '/_build?buildId=' + tl.getVariable('BUILD.BUILDID')),
definitionName: isReleaseHost ? tl.getVariable('RELEASE.DEFINITIONNAME') : tl.getVariable('BUILD.DEFINITIONNAME'),
processId: isReleaseHost ? tl.getVariable('RELEASE.RELEASEID') : tl.getVariable('BUILD.BUILDID'),
processUrl: isReleaseHost ? tl.getVariable('RELEASE.RELEASEWEBURL') : (tl.getVariable('SYSTEM.TEAMFOUNDATIONSERVERURI') + tl.getVariable('SYSTEM.TEAMPROJECT') + '/_build?buildId=' + tl.getVariable('BUILD.BUILDID')),
taskDisplayName: tl.getVariable('TASK.DISPLAYNAME'),

@@ -14,0 +15,0 @@ jobid: tl.getVariable('SYSTEM.JOBID'),

{
"name": "artifact-engine",
"version": "0.1.11",
"version": "0.1.12",
"description": "Artifact Engine to download artifacts from jenkins, teamcity, vsts",

@@ -5,0 +5,0 @@ "repository": {

@@ -20,2 +20,3 @@ "use strict";

this.options.keepAlive = true;
this.options.ignoreSslError = true;
this.initializeProxy();

@@ -22,0 +23,0 @@ this.httpc = new httpm.HttpClient('artifact-engine ' + packagejson.version, [handler], this.options);

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