Socket
Socket
Sign inDemoInstall

ibm-cloud-sdk-core

Package Overview
Dependencies
Maintainers
1
Versions
143
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ibm-cloud-sdk-core - npm Package Compare versions

Comparing version 0.3.2 to 0.3.3

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## [0.3.3](https://github.com/IBM/node-sdk-core/compare/v0.3.2...v0.3.3) (2019-07-17)
### Bug Fixes
* add deprecation notice for node versions 6 and 8 ([#32](https://github.com/IBM/node-sdk-core/issues/32)) ([9e3c667](https://github.com/IBM/node-sdk-core/commit/9e3c667))
## [0.3.2](https://github.com/IBM/node-sdk-core/compare/v0.3.1...v0.3.2) (2019-06-23)

@@ -2,0 +9,0 @@

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

var extend = require("extend");
var semver = require("semver");
var vcapServices = require("vcap_services");

@@ -102,2 +103,12 @@ var auth_1 = require("../auth");

}
// deprecate node versions 6 and 8
// these will be removed in v5
var isNodeSix = semver.satisfies(process.version, '6.x');
var isNodeEight = semver.satisfies(process.version, '8.x');
if (isNodeSix) {
console.warn('Node v6 will not be supported in the SDK in the next major release (09/2019). Version 6 reached end of life in April 2019.');
}
if (isNodeEight) {
console.warn('Node v8 will not be supported in the SDK in the next major release (09/2019). Version 8 reaches end of life on 31 December 2019.');
}
var options = extend({}, userOptions);

@@ -104,0 +115,0 @@ var _options = this.initCredentials(options);

3

package.json
{
"name": "ibm-cloud-sdk-core",
"version": "0.3.2",
"version": "0.3.3",
"description": "Core functionality to support SDKs generated with IBM's OpenAPI 3 SDK Generator.",

@@ -68,2 +68,3 @@ "main": "./index",

"object.pick": "~1.3.0",
"semver": "^6.2.0",
"vcap_services": "~0.3.4"

@@ -70,0 +71,0 @@ },

@@ -10,2 +10,5 @@ [![Build Status](https://travis-ci.com/IBM/node-sdk-core.svg?branch=master)](https://travis-ci.com/IBM/node-sdk-core)

## Notice
Support for Node versions **6** and **8** is deprecated and will be officially dropped in the next major release, which is expected to be in September, 2019. Version 6 reached end of life in April 2019 and Version 8 reaches end of life on 31 December 2019.
## Installation

@@ -12,0 +15,0 @@ `npm install ibm-cloud-sdk-core`

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