Skip to content

Commit 4227ac4

Browse files
authored
Merge pull request #151 from watson-developer-cloud/master
Rebasing
2 parents f51a465 + f561843 commit 4227ac4

31 files changed

+1775
-434
lines changed

ChangeHistory.md

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,88 @@
1+
## 0.6.x
2+
3+
### New in version 0.6.14
4+
- Visual Recognition instances created post May 22 2018, have a new authentication mechanism
5+
6+
### New in version 0.6.13
7+
- Added opt-out option for collection parsing of strings in Natural Language Classifier Node.
8+
9+
### New in version 0.6.12
10+
- Fix to collection check in Natural Language Classification Node allowing for . in domain
11+
names.
12+
13+
### New in version 0.6.11
14+
- Fix to defaulting name for NLU Node.
15+
- Allow pre-check of audio format to be disabled in Speech to Text node.
16+
- Migrate from deprecated getModels and getCustomizations methods in Speech to Text nodes.
17+
- Implement update classifier in Visual Recognition Util node.
18+
- In Visual Recognition Util node append 'positive_' to zip name if neither 'positive' not 'negative' not already there.
19+
- Removed duplicated code in Visual Recognition Util node.
20+
21+
### New in version 0.6.10
22+
- Needed to stringify json before addDocument in Discovery node.
23+
- Using Node.js v 6 features, so will not run on Node.js v 4 anymore
24+
25+
### New in version 0.6.9
26+
- Implemented classify collection on Natural Language Classifier node. The collection can be
27+
in the form of multiple sentences, an array of strings, or an array of objects.
28+
29+
### New in version 0.6.8
30+
- Move all Discovery calls to latest API version - 2017-11-07
31+
- Updated calls to deprecated discovery methods addJsonDocument and getCollections
32+
- Correct implemetation of passages related options
33+
- Allow highlight option to be specified in Discovery overrides - msg.discoveryparams
34+
- Rename Conversation Nodes to Assistant
35+
- Use Assistant endpoint
36+
- Move all Assistant calls to latest API version - 2018-02-16
37+
- Move all Visual Recognition calls to lates API version - 2018-03-19
38+
- Add French as a Visual Recognition classification response language
39+
40+
### New in version 0.6.7
41+
- Enable Opt-out option for Conversation Node.
42+
- Implement time out option for response from Conversation Node.
43+
- Bump to v 3.2.1 of watson-developer-cloud dependency.
44+
- Fix to how API version is specified in Natural Language Understanding Node.
45+
- Add Korean to list of languages in Natural Language Classifier Node.
46+
47+
### New in version 0.6.6
48+
- Added Mute option for STT Node warning status when running in Streaming mode
49+
- Discard option for STT Node Streaming listening events.
50+
- Added Auto-Connect mode for STT Node - Will keep connection to service alive,
51+
else connection is restored on demand.
52+
- Fix to Discovery Query Builder Node to return schema options.
53+
54+
### New in version 0.6.5
55+
- Endpoint can now be specified in Natural Language Classifier Node
56+
57+
### New in version 0.6.4
58+
- Speech to Text node now reports all errors, including disconnects when running in stream mode.
59+
60+
### New in version 0.6.3
61+
- Allow input / output from Node-RED web-sockets for Speech to Text node. To
62+
enable select streaming mode. No token is needed as the Node handles this. Look
63+
out for sample flows and templates showing how to use this feature.
64+
- Three new languages for Language Translator, Polish, Russian and Turkish in Neural Translation mode.
65+
- Removed the code for the deprecated Language Translation Nodes.
66+
67+
### New in version 0.6.2
68+
- Visual Recognition fix for accept-language
69+
70+
### New in version 0.6.1
71+
- Allow STT Language to be dyamically configurable using msg.srclang
72+
73+
### New in version 0.6.0
74+
- Bump to watson-developer-cloud 3.0.4
75+
- Document link updates
76+
- IE fix
77+
- Option to set Conversation credentials though msg.params
78+
- Speech To Text fullresult now includes speaker_labels. Breaking change to any code that used fullresult due an extra level of indirection.
79+
- Allow Korean as an option for Personality Insights
80+
- Text Recognition option removed from Visual Recognition Node
81+
- Move Retrieve and Rank nodes to deprecated list
82+
- Removed Document Conversion, Alchemy, Concept Insights, Dialog, Tradeoff Analytics and Similarity Search Nodes
83+
- Nodes deprecated in 0.5.x will be removed in 0.6.x releases
84+
85+
186
## 0.5.x
287

388
### New in version 0.5.23

README.md

Lines changed: 9 additions & 81 deletions
Original file line numberDiff line numberDiff line change
@@ -7,87 +7,15 @@ 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.14
11-
- Visual Recognition instances created post May 22 2018, have a new authentication mechanism
12-
13-
### New in version 0.6.13
14-
- Added opt-out option for collection parsing of strings in Natural Language Classifier Node.
15-
16-
### New in version 0.6.12
17-
- Fix to collection check in Natural Language Classification Node allowing for . in domain
18-
names.
19-
20-
### New in version 0.6.11
21-
- Fix to defaulting name for NLU Node.
22-
- Allow pre-check of audio format to be disabled in Speech to Text node.
23-
- Migrate from deprecated getModels and getCustomizations methods in Speech to Text nodes.
24-
- Implement update classifier in Visual Recognition Util node.
25-
- In Visual Recognition Util node append 'positive_' to zip name if neither 'positive' not 'negative' not already there.
26-
- Removed duplicated code in Visual Recognition Util node.
27-
28-
### New in version 0.6.10
29-
- Needed to stringify json before addDocument in Discovery node.
30-
- Using Node.js v 6 features, so will not run on Node.js v 4 anymore
31-
32-
### New in version 0.6.9
33-
- Implemented classify collection on Natural Language Classifier node. The collection can be
34-
in the form of multiple sentences, an array of strings, or an array of objects.
35-
36-
### New in version 0.6.8
37-
- Move all Discovery calls to latest API version - 2017-11-07
38-
- Updated calls to deprecated discovery methods addJsonDocument and getCollections
39-
- Correct implemetation of passages related options
40-
- Allow highlight option to be specified in Discovery overrides - msg.discoveryparams
41-
- Rename Conversation Nodes to Assistant
42-
- Use Assistant endpoint
43-
- Move all Assistant calls to latest API version - 2018-02-16
44-
- Move all Visual Recognition calls to lates API version - 2018-03-19
45-
- Add French as a Visual Recognition classification response language
46-
47-
### New in version 0.6.7
48-
- Enable Opt-out option for Conversation Node.
49-
- Implement time out option for response from Conversation Node.
50-
- Bump to v 3.2.1 of watson-developer-cloud dependency.
51-
- Fix to how API version is specified in Natural Language Understanding Node.
52-
- Add Korean to list of languages in Natural Language Classifier Node.
53-
54-
### New in version 0.6.6
55-
- Added Mute option for STT Node warning status when running in Streaming mode
56-
- Discard option for STT Node Streaming listening events.
57-
- Added Auto-Connect mode for STT Node - Will keep connection to service alive,
58-
else connection is restored on demand.
59-
- Fix to Discovery Query Builder Node to return schema options.
60-
61-
### New in version 0.6.5
62-
- Endpoint can now be specified in Natural Language Classifier Node
63-
64-
### New in version 0.6.4
65-
- Speech to Text node now reports all errors, including disconnects when running in stream mode.
66-
67-
### New in version 0.6.3
68-
- Allow input / output from Node-RED web-sockets for Speech to Text node. To
69-
enable select streaming mode. No token is needed as the Node handles this. Look
70-
out for sample flows and templates showing how to use this feature.
71-
- Three new languages for Language Translator, Polish, Russian and Turkish in Neural Translation mode.
72-
- Removed the code for the deprecated Language Translation Nodes.
73-
74-
### New in version 0.6.2
75-
- Visual Recognition fix for accept-language
76-
77-
### New in version 0.6.1
78-
- Allow STT Language to be dyamically configurable using msg.srclang
79-
80-
### New in version 0.6.0
81-
- Bump to watson-developer-cloud 3.0.4
82-
- Document link updates
83-
- IE fix
84-
- Option to set Conversation credentials though msg.params
85-
- Speech To Text fullresult now includes speaker_labels. Breaking change to any code that used fullresult due an extra level of indirection.
86-
- Allow Korean as an option for Personality Insights
87-
- Text Recognition option removed from Visual Recognition Node
88-
- Move Retrieve and Rank nodes to deprecated list
89-
- Removed Document Conversion, Alchemy, Concept Insights, Dialog, Tradeoff Analytics and Similarity Search Nodes
90-
- Nodes deprecated in 0.5.x will be removed in 0.6.x releases
10+
### New in version 0.7.0
11+
- Assistant, Discovery, Natural Language Understanding, Speech to Text, Text to Speech, Tone Analyzer nodes updated
12+
to allow for use of iam key for authentication.
13+
- Migrated STT node off deprecated methods.
14+
- Fix to Tone Analyzer Node to preserve credentials on config reopen.
15+
- Fix to Tone Analyzer to allow json objects and arrays as payload.
16+
- Fix to STT where auto-connect was not being preserved when reopening configuration.
17+
- Bump to 2018-03-05 version date for Discovery service.
18+
- Migrated Discovery Nodes off deprecated methods.
9119

9220

9321
### Watson Nodes for Node-RED

0 commit comments

Comments
 (0)