Skip to content

Commit a1e10a7

Browse files
Merge pull request #233426 from dargilco/dargilco/release-notes-1.27
Speech SDK/Speech CLI release notes 1.27
2 parents e7c223d + 949878e commit a1e10a7

File tree

3 files changed

+45
-9
lines changed

3 files changed

+45
-9
lines changed

articles/cognitive-services/Speech-Service/includes/release-notes/release-notes-cli.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ ms.date: 01/08/2022
66
ms.author: eur
77
---
88

9+
### Speech CLI 1.27.0: April 2023 release
10+
11+
#### Updates
12+
13+
* Updated to use Speech SDK 1.27.0
14+
* Update default endpoint to use v3.1 REST APIs for Custom Speech Recognition and Batch Speech Recognition.
15+
16+
#### Bug fixes
17+
18+
* Fixes related to how query parameters are parsed/configured.
19+
920
### Speech CLI 1.26.0: March 2023 release
1021

1122
Updated to use Speech SDK 1.26.0.
@@ -35,15 +46,15 @@ Uses Speech SDK 1.23.0.
3546

3647
- Better caption (`--output vtt` and `--output srt`) large result splitting (37 char max, 3 lines)
3748
- Documented `spx synthesize` `--format` options (see `spx help synthesize format`)
38-
- Documented majority of `spx csr` commands/options (see `spx help csr`)
49+
- Documented most of `spx csr` commands/options (see `spx help csr`)
3950
- Added `spx csr model copy` command (see `spx help csr model copy`)
4051
- Added `--check result` option using JMES queries (see `spx help check result`)
4152
- Improved error messages when specifying invalid command options
42-
- Moved from .NET Core 3.1 to .NET 6.0. In order to run Speech CLI, you will need to install the [.NET 6.0 Runtime](https://dotnet.microsoft.com/download/dotnet/6.0/runtime) (or above).
53+
- Moved from .NET Core 3.1 to .NET 6.0. In order to run Speech CLI, you'll need to install the [.NET 6.0 Runtime](https://dotnet.microsoft.com/download/dotnet/6.0/runtime) (or above).
4354

4455
#### Bug fixes
4556

46-
- Updated all URLs to remove language (e.g. en-US)
57+
- Updated all URLs to remove language (for example, "en-US")
4758
- Fixed version info to report properly in all cases (previously it sometimes showed a blank)
4859

4960
### Speech CLI 1.22.0: June 2022 release
@@ -53,7 +64,7 @@ Uses Speech SDK 1.22.0.
5364
#### New features
5465

5566
- Added `spx init` command to guide users through the Speech resource key creation without going to Azure Web Portal.
56-
- Speech docker containers now have Azure CLI included, so the `spx init` command will work out of the box.
67+
- Speech docker containers now have Azure CLI included, so the `spx init` command works out of the box.
5768
- Added timestamp as an event output option, to make SPX more useful when calculating latencies.
5869

5970

@@ -66,12 +77,12 @@ Uses Speech SDK 1.21.0.
6677
- Added `--output vtt` support to `spx translate`
6778
- Supports `--output vtt file FILENAME` to override default VTT FILENAME
6879
- Supports `--output vtt file -` to write to standard output
69-
- Individual VTT files are created for each target language (e.g. `--target en;de;fr`)
80+
- Individual VTT files are created for each target language (for example `--target en;de;fr`)
7081
- SRT Caption generation
7182
- Added `--output srt` support to `spx recognize`, `spx intent`, and `spx translate`
7283
- Supports `--output srt file FILENAME` to override default SRT FILENAME
7384
- Supports `--output srt file -` to write to standard output
74-
- For `spx translate` individual SRT files are created for each target language (e.g. `--target en;de;fr`)
85+
- For `spx translate`, individual SRT files are created for each target language (for example `--target en;de;fr`)
7586

7687
#### Bug fixes
7788
- Corrected WEBVTT timespan output to properly use `hh:mm:ss.fff` format

articles/cognitive-services/Speech-Service/includes/release-notes/release-notes-sdk.md

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,36 @@ ms.date: 11/01/2022
66
ms.author: eur
77
---
88

9+
### Speech SDK 1.27.0: April 2023 release
10+
11+
#### Notification about upcoming changes
12+
13+
* We plan to remove Online Certificate Status Protocol (OCSP) in the next JavaScript SDK release. This allows clients to better conform to browser and Node standards for certificate handling. Version 1.27 is the last release that includes our custom OCSP module.
14+
15+
#### New Features
16+
17+
* **JavaScript** – Added support for microphone input from the browser with Speaker Identification and Verification.
18+
* **Embedded Speech Recognition** - Update support for `PropertyId::Speech_SegmentationSilenceTimeoutMs` setting.
19+
20+
#### Bug fixes
21+
22+
* **General** - Reliability updates in service reconnection logic (all programing languages except JavaScript).
23+
* **General** - Fix string conversions leaking memory on Windows (all relevant programing languages except JavaScript).
24+
* **Embedded Speech Recognition** - Fix crash in French Speech Recognition when using certain grammar list entries.
25+
* **Source code documentation** - Corrections to SDK reference documentation comments related to audio logging on the service.
26+
* **Intent recognition** - Fix Pattern Matcher priorities related to list entities.
27+
28+
#### Samples
29+
30+
* Properly handle authentication failure in C# Conversation Transcription (CTS) sample.
31+
* Added example of streaming pronunciation assessment for Python, JavaScript, Objective-C and Swift.
32+
33+
934
### Speech SDK 1.26.0: March 2023 release
1035

11-
### Breaking changes
36+
#### Breaking changes
1237

13-
* Bitcode has been disabled in all iOS targets in the following packages: Cocoapod with xcframework, Nuget (for Xamarin and MAUI) and Unity. The change is due to Apple's deprication of bitcode support from Xcode 14 and onwards. This change also means if you are using Xcode 13 version or you have explicitly enabled the bitcode on your application using the Speech SDK, you may encounter an error saying "framework does not contain bitcode and you must rebuild it". To resolve this issue, make sure your targets have bitcode disabled.
38+
* Bitcode has been disabled in all iOS targets in the following packages: Cocoapod with xcframework, Nuget (for Xamarin and MAUI) and Unity. The change is due to Apple's deprecation of bitcode support from Xcode 14 and onwards. This change also means if you are using Xcode 13 version or you have explicitly enabled the bitcode on your application using the Speech SDK, you may encounter an error saying "framework does not contain bitcode and you must rebuild it". To resolve this issue, make sure your targets have bitcode disabled.
1439
* Minimum iOS deployment target has been upgraded to 11.0 in this release, which means armv7 HW is no longer supported.
1540

1641
#### New features

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ Azure Cognitive Service for Speech is updated on an ongoing basis. To stay up-to
1919

2020
## Recent highlights
2121

22+
* Speech SDK 1.27.0 was released in April 2023.
2223
* Speech-to-text and text-to-speech container versions were updated in March 2023.
23-
* Speech SDK 1.26.0 was released in March 2023.
2424
* Some Speech Studio [scenarios](speech-studio-overview.md#speech-studio-scenarios) are available to try without an Azure subscription.
2525
* Custom Speech-to-Text container disconnected mode was released in January 2023.
2626
* Text-to-speech Batch synthesis API is available in public preview.

0 commit comments

Comments
 (0)