Skip to content

Commit ac0ad48

Browse files
authored
Merge pull request #101627 from oscholz/patch-8
Added JavaScript release notes to 1.9
2 parents ac9bbf8 + e37d0d9 commit ac0ad48

File tree

1 file changed

+13
-6
lines changed

1 file changed

+13
-6
lines changed

articles/cognitive-services/Speech-Service/releasenotes.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,36 +19,43 @@ ms.custom: seodec18
1919

2020
**New Features**
2121

22-
- Multi-device conversation: connect multiple devices in a speech or text-based conversation, and optionally translate messages sent between them. Learn more in [this article](multi-device-conversation.md).
22+
- Multi-device conversation: connect multiple devices to the same speech or text-based conversation, and optionally translate messages sent between them. Learn more in [this article](multi-device-conversation.md).
2323
- Keyword recognition support added for Android .aar package and added support for x86 and x64 flavors.
24-
- `SendMessage` and `SetMessageProperty` methods added to `Connection` object in Objective-C. See documentation [here](https://docs.microsoft.com/objectivec/cognitive-services/speech/).
24+
- Objective-C: `SendMessage` and `SetMessageProperty` methods added to `Connection` object. See documentation [here](https://docs.microsoft.com/objectivec/cognitive-services/speech/).
2525
- TTS C++ api now supports `std::wstring` as synthesis text input, removing the need to convert a wstring to string before passing it to the SDK. See details [here](https://docs.microsoft.com/cpp/cognitive-services/speech/speechsynthesizer#speaktextasync).
26-
- [Language id](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-automatic-language-detection?pivots=programming-language-csharp) and [source language config](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-specify-source-language?pivots=programming-language-csharp) are now available in C#.
26+
- C#: [Language id](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-automatic-language-detection?pivots=programming-language-csharp) and [source language config](https://docs.microsoft.com/azure/cognitive-services/speech-service/how-to-specify-source-language?pivots=programming-language-csharp) are now available.
27+
- JavaScript: Added a feature to `Connection` object to pass through custom messages from the Speech Service as callback `receivedServiceMessage`.
28+
- JavaScript: Added support for `FromHost API` to ease use with on-prem containers and sovereign clouds. See documentation [here](speech-container-howto.md).
29+
- JavaScript: We now honor `NODE_TLS_REJECT_UNAUTHORIZED` thanks to a contribution from [orgads](https://github.com/orgads). See details [here](https://github.com/microsoft/cognitive-services-speech-sdk-js/pull/75).
2730

2831

2932
**Breaking changes**
3033

3134
- `OpenSSL` has been updated to version 1.1.1b and is statically linked to the Speech SDK core library for Linux. This may cause a break if your inbox `OpenSSL` has not been installed to the `/usr/lib/ssl` directory in the system. Please check [our documentation](how-to-configure-openssl-linux.md) under Speech SDK docs to work around the issue.
3235
- We have changed the data type returned for C# `WordLevelTimingResult.Offset` from `int` to `long` to allow for access to `WordLevelTimingResults` when speech data is longer than 2 minutes.
36+
- `PushAudioInputStream` and `PullAudioInputStream` now send wav header information to the Speech Service based on `AudioStreamFormat`, optionally specified when they were created. Customers must now use the [supported audio input format](how-to-use-audio-input-streams.md). Any other formats will get sub-optimal recognition results or may cause other issues.
3337

3438

3539
**Bug fixes**
3640

3741
- See the `OpenSSL` update under Breaking changes above. We fixed both an intermittent crash and a performance issue (lock contention under high load) in Linux and Java.
38-
- Made improvements to Java object closure in high concurrency scenarios.
42+
- Java: Made improvements to object closure in high concurrency scenarios.
3943
- Restructured our Nuget package. We removed the three copies of `Microsoft.CognitiveServices.Speech.core.dll` and `Microsoft.CognitiveServices.Speech.extension.kws.dll` under lib folders, making the Nuget package smaller and faster to download, and we added headers needed to compile some C++ native apps.
4044
- Fixed quickstart samples [here](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/quickstart/cpp). These were exiting without displaying "microphone not found" exception on Linux, MacOS, Windows.
4145
- Fixed SDK crash with long speech recognition results on certain code paths like [this sample](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp/uwp/speechtotext-uwp).
4246
- Fixed SDK deployment error in Azure Web App environment to address [this customer issue](https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/396).
4347
- Fixed a TTS error while using multi `<voice>` tag or `<audio>` tag to address [this customer issue](https://github.com/Azure-Samples/cognitive-services-speech-sdk/issues/433).
4448
- Fixed a TTS 401 error when the SDK is recovered from suspended.
49+
- JavaScript: Fixed a circular import of audio data thanks to a contribution from [euirim](https://github.com/euirim).
50+
- JavaScript: added support for setting service properties, as added in 1.7.
51+
- JavaScript: fixed an issue where a connection error could result in continuous, unsuccessful websocket reconnect attempts.
4552

4653

4754
**Samples**
4855

4956
- Added keyword recognition sample for Android [here](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/java/android/sdkdemo).
50-
- Added TTS sample for server scenario [here](https://github.com/Azure-Samples/cognitive-services-speech-sdk/tree/master/samples/csharp).
51-
- Added Multi-device conversation quickstarts in C++ and C# .NET [here](multi-device-conversation.md).
57+
- Added TTS sample for the server scenario [here](https://github.com/Azure-Samples/cognitive-services-speech-sdk/blob/master/samples/csharp/sharedcontent/console/speech_synthesis_server_scenario_sample.cs).
58+
- Added Multi-device conversation quickstarts for C# and C++ [here](quickstarts/multi-device-conversation.md).
5259

5360

5461
**Other changes**

0 commit comments

Comments
 (0)