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.27 to 0.1.28

1

Engine/artifactEngine.d.ts

@@ -7,2 +7,3 @@ import * as models from '../Models';

processArtifactItemImplementation(sourceProvider: models.IArtifactProvider, item: models.ArtifactItem, destProvider: models.IArtifactProvider, artifactEngineOptions: ArtifactEngineOptions, resolve: any, reject: any, retryCount?: number): void;
private getRetryIntervalInSeconds(baseRetryInterval, retryCount);
createPatternList(artifactEngineOptions: ArtifactEngineOptions): void;

@@ -9,0 +10,0 @@ private artifactItemStore;

@@ -66,3 +66,3 @@ "use strict";

setTimeout(() => this
.processArtifactItemImplementation(sourceProvider, item, destProvider, artifactEngineOptions, resolve, reject, retryCount + 1), artifactEngineOptions.retryIntervalInSeconds * 1000);
.processArtifactItemImplementation(sourceProvider, item, destProvider, artifactEngineOptions, resolve, reject, retryCount + 1), this.getRetryIntervalInSeconds(artifactEngineOptions.retryIntervalInSeconds, retryCount) * 1000);
}

@@ -139,2 +139,7 @@ };

}
getRetryIntervalInSeconds(baseRetryInterval, retryCount) {
let MaxRetryLimitInSeconds = 360;
var exponentialBackOff = baseRetryInterval * (3 ^ (retryCount + 1));
return exponentialBackOff < MaxRetryLimitInSeconds ? exponentialBackOff : MaxRetryLimitInSeconds;
}
createPatternList(artifactEngineOptions) {

@@ -141,0 +146,0 @@ if (!artifactEngineOptions.itemPattern) {

4

package.json
{
"name": "artifact-engine",
"version": "0.1.27",
"version": "0.1.28",
"description": "Artifact Engine to download artifacts from jenkins, teamcity, vsts",

@@ -19,3 +19,3 @@ "repository": {

"dependencies": {
"handlebars": "4.0.10",
"handlebars": "4.0.14",
"minimatch": "3.0.2",

@@ -22,0 +22,0 @@ "azure-pipelines-task-lib": "2.8.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