Skip to content

Commit cb0a033

Browse files
committed
NLU service has updated mechanism of specifying the API version
1 parent 23824ac commit cb0a033

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Node-RED Watson Nodes for IBM Cloud
77

88
<a href="https://cla-assistant.io/watson-developer-cloud/node-red-node-watson"><img src="https://cla-assistant.io/readme/badge/watson-developer-cloud/node-red-node-watson" alt="CLA assistant" /></a>
99

10+
### New in version 0.6.7
11+
- Enable Opt-out option for Conversation Node.
12+
- Implement time out option for response from Conversation Node.
13+
- Bump to v 3.2.1 of watson-developer-cloud dependency.
14+
1015

1116
### New in version 0.6.6
1217
- Added Mute option for STT Node warning status when running in Streaming mode

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "node-red-node-watson",
3-
"version": "0.6.6",
3+
"version": "0.6.7",
44
"description": "A collection of Node-RED nodes for IBM Watson services",
55
"dependencies": {
66
"async": "^1.5.2",
@@ -10,7 +10,7 @@
1010
"temp": "^0.8.3",
1111
"qs": "6.x",
1212
"image-type": "^2.0.2",
13-
"watson-developer-cloud": "^3.0.6",
13+
"watson-developer-cloud": "^3.2.1",
1414
"kuromoji": "^0.1.1",
1515
"word-count": "^0.2.2",
1616
"is-docx": "^0.0.3",

services/natural_language_understanding/v1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ module.exports = function (RED) {
183183
serviceSettings = {
184184
username: username,
185185
password: password,
186-
version_date: NaturalLanguageUnderstandingV1.VERSION_DATE_2017_02_27,
186+
version: '2018-03-16',
187187
headers: {
188188
'User-Agent': pkg.name + '-' + pkg.version
189189
}

0 commit comments

Comments
 (0)