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

hypertune

Package Overview
Dependencies
Maintainers
3
Versions
156
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hypertune - npm Package Compare versions

Comparing version 1.7.0 to 1.7.1

2

CHANGELOG.md
# Changelog
## 1.7.0
## 1.7.1

@@ -5,0 +5,0 @@ ### Breaking changes

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

}
this.logger.info(`Initializing from ${initSourceName}...`);
try {

@@ -196,2 +195,10 @@ const newInitData = yield (0, p_retry_1.default)((attemptNumber) => {

});
if (this.initData) {
if (this.initData.commitId === newInitData.commitId) {
this.logger.debug(`Already have latest commit from ${initSourceName}.`);
return;
}
this.logger.info(`Commit hash (${this.initData.commitHash}) is not latest from ${initSourceName} (${newInitData.commitHash}).`);
}
this.logger.info(`Initializing from ${initSourceName}...`);
this.init("vercelEdgeConfig", newInitData);

@@ -198,0 +205,0 @@ }

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/** Replaced by the value in package.json on build */
exports.default = "1.7.0";
exports.default = "1.7.1";
//# sourceMappingURL=sdkVersion.js.map
{
"name": "hypertune",
"version": "1.7.0",
"version": "1.7.1",
"private": false,

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

@@ -291,4 +291,2 @@ import pRetry from "p-retry";

this.logger.info(`Initializing from ${initSourceName}...`);
try {

@@ -322,2 +320,16 @@ const newInitData = await pRetry(

if (this.initData) {
if (this.initData.commitId === newInitData.commitId) {
this.logger.debug(
`Already have latest commit from ${initSourceName}.`
);
return;
}
this.logger.info(
`Commit hash (${this.initData.commitHash}) is not latest from ${initSourceName} (${newInitData.commitHash}).`
);
}
this.logger.info(`Initializing from ${initSourceName}...`);
this.init("vercelEdgeConfig", newInitData);

@@ -324,0 +336,0 @@ } catch (error) {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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