Comparing version 3.6.5 to 3.7.0
3.7.0 / 2019-10-16 | ||
================== | ||
**features** | ||
* [[`3889a0e`](http://github.com/ali-sdk/ali-ons/commit/3889a0e03637fbb4ce8501abee3bd45d70000e1b)] - feat: support nameAddr as an array (#91) (zōng yǔ <<gxcsoccer@users.noreply.github.com>>) | ||
3.6.5 / 2019-05-10 | ||
@@ -3,0 +9,0 @@ ================== |
@@ -118,3 +118,3 @@ 'use strict'; | ||
if (this.options.nameSrv) { | ||
this._namesrvAddrList = [ this.options.nameSrv ]; | ||
this._namesrvAddrList = Array.isArray(this.options.nameSrv) ? this.options.nameSrv : [ this.options.nameSrv ]; | ||
return; | ||
@@ -121,0 +121,0 @@ } |
{ | ||
"name": "ali-ons", | ||
"version": "3.6.5", | ||
"version": "3.7.0", | ||
"description": "Aliyun Open Notification Service Client", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
154328