Skip to content

Commit 5ac050a

Browse files
v8.0.0 (#230)
Co-authored-by: @compulim <@compulim>
1 parent d98f6de commit 5ac050a

File tree

3 files changed

+61
-27
lines changed

3 files changed

+61
-27
lines changed

CHANGELOG.md

Lines changed: 58 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,11 @@
11
# Changelog
2+
23
All notable changes to this project will be documented in this file.
34

45
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
56
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
67

7-
## [Unreleased]
8-
9-
### Fixed
10-
11-
- Fixed [#218](https://github.com/compulim/web-speech-cognitive-services/issues/218). Speech recognition should stopping properly in some cases, in PR [#218](https://github.com/compulim/web-speech-cognitive-services/pull/219)
12-
- Interactive mode, muted microphone
13-
- Continuous and interactive mode, stop shortly after start
14-
- Fixed [#221](https://github.com/compulim/web-speech-cognitive-services/issues/221). Continuous mode with successful interims should stop without errors, in PR [#222](https://github.com/compulim/web-speech-cognitive-services/pull/222)
15-
- Fixed [#226](https://github.com/compulim/web-speech-cognitive-services/issues/226). `createSpeechServicesPonyfill` should return both `SpeechRecognition` and `SpeechSynthesis` ponyfill, in PR [#227](https://github.com/compulim/web-speech-cognitive-services/pull/227)
16-
- 💥 `createSpeechServicesPonyfill` will throw if the browser does not support Media Capture and Streams API, instead of warning and continue
8+
## [8.0.0] - 2024-11-26
179

1810
### Changed
1911

@@ -47,6 +39,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
4739
- [`redux@5.0.1`](https://npmjs.com/package/redux)
4840
- [`typescript@5.4.5`](https://npmjs.com/package/typescript)
4941

42+
### Fixed
43+
44+
- Fixed [#218](https://github.com/compulim/web-speech-cognitive-services/issues/218). Speech recognition should stopping properly in some cases, in PR [#218](https://github.com/compulim/web-speech-cognitive-services/pull/219)
45+
- Interactive mode, muted microphone
46+
- Continuous and interactive mode, stop shortly after start
47+
- Fixed [#221](https://github.com/compulim/web-speech-cognitive-services/issues/221). Continuous mode with successful interims should stop without errors, in PR [#222](https://github.com/compulim/web-speech-cognitive-services/pull/222)
48+
- Fixed [#226](https://github.com/compulim/web-speech-cognitive-services/issues/226). `createSpeechServicesPonyfill` should return both `SpeechRecognition` and `SpeechSynthesis` ponyfill, in PR [#227](https://github.com/compulim/web-speech-cognitive-services/pull/227)
49+
- 💥 `createSpeechServicesPonyfill` will throw if the browser does not support Media Capture and Streams API, instead of warning and continue
50+
5051
## [7.1.3] - 2022-11-29
5152

5253
### Changed
@@ -197,13 +198,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
197198

198199
- Resolves [#88](https://github.com/compulim/web-speech-cognitive-services/issues/88). Support sovereign cloud, by [@compulim](https://github.com/compulim) in PR [#89](https://github.com/compulim/web-speech-cognitive-services/pull/89)
199200

200-
### Removed
201-
202-
- 💥 ~Bing Speech support is removed, by [@compulim](https://github.com/compulim), in PR [#87](https://github.com/compulim/web-speech-cognitive-services/pull/87).~
203-
- ~As Bing Speech has deprecated and removed from Azure. Bing Speech support has been removed.~
204-
- 💥 ~`fetchAuthorizationToken` is removed, by [@compulim](https://github.com/compulim), in PR [#89](https://github.com/compulim/web-speech-cognitive-services/pull/89).~
205-
- ~`fetchAuthorizationToken` is removed, please refer to [this documentation on how to get an access token](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/rest-speech-to-text#how-to-get-an-access-token).~
206-
207201
### Changed
208202

209203
- Bumped dependencies, in PR [#87](https://github.com/compulim/web-speech-cognitive-services/pull/87), by [@compulim](https://github.com/compulim)
@@ -231,15 +225,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
231225
- [`webpack@4.42.0`](https://npmjs.com/package/webpack)
232226
- Use [`p-defer-es5`](https://npmjs.com/package/p-defer-es5) instead of adopted `createDeferred.js`, in PR [#89](https://github.com/compulim/web-speech-cognitive-services/pull/89).
233227

234-
## [6.0.0] - 2019-12-03
235-
236-
### Fixed
237-
238-
- Speech recognition: Removed extraneous finalized `result` event in continuous mode, by [@compulim](https://github.com/compulim), in PR [#79](https://github.com/compulim/web-speech-cognitive-services/pull/79)
239-
240228
### Removed
241229

242-
- 🔥 `authorizationToken`, `region`, and `subscriptionKey` are being deprecated in favor of `credentials` options, by [@compulim](https://github.com/compulim) in PR [#80](https://github.com/compulim/web-speech-cognitive-services/pull/80)
230+
- 💥 ~Bing Speech support is removed, by [@compulim](https://github.com/compulim), in PR [#87](https://github.com/compulim/web-speech-cognitive-services/pull/87).~
231+
- ~As Bing Speech has deprecated and removed from Azure. Bing Speech support has been removed.~
232+
- 💥 ~`fetchAuthorizationToken` is removed, by [@compulim](https://github.com/compulim), in PR [#89](https://github.com/compulim/web-speech-cognitive-services/pull/89).~
233+
- ~`fetchAuthorizationToken` is removed, please refer to [this documentation on how to get an access token](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/rest-speech-to-text#how-to-get-an-access-token).~
234+
235+
## [6.0.0] - 2019-12-03
243236

244237
### Added
245238

@@ -268,6 +261,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
268261
- [jest@^24.9.0](https://www.npmjs.com/package/jest)
269262
- [rimraf@^3.0.0](https://www.npmjs.com/package/rimraf)
270263

264+
### Removed
265+
266+
- 🔥 `authorizationToken`, `region`, and `subscriptionKey` are being deprecated in favor of `credentials` options, by [@compulim](https://github.com/compulim) in PR [#80](https://github.com/compulim/web-speech-cognitive-services/pull/80)
267+
268+
### Fixed
269+
270+
- Speech recognition: Removed extraneous finalized `result` event in continuous mode, by [@compulim](https://github.com/compulim), in PR [#79](https://github.com/compulim/web-speech-cognitive-services/pull/79)
271+
271272
## [5.0.1] - 2019-10-25
272273

273274
### Changed
@@ -344,7 +345,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
344345
- Fix [#45](https://github.com/compulim/web-speech-cognitive-services/issues/45). Speech synthesize should emit "start" and "error" if the synthesized audio clip cannot be fetch over the network, in PR [#46](https://github.com/compulim/web-speech-cognitive-services/issues/46)
345346

346347
## [4.0.0] - 2018-12-10
348+
347349
### Added
350+
348351
- New playground for better debuggability
349352
- Support of Speech Services SDK, with automated unit tests for speech recognition
350353
- See [`SPEC-RECOGNITION.md`](SPEC-RECOGNITION.md) and [`SPEC-SYNTHESIS.md`](SPEC-SYNTHESIS.md) for quirks
@@ -353,17 +356,22 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
353356
- Speech synthesis: Support `speaking` property
354357

355358
### Changed
359+
356360
- Ponyfill are now constructed based on options (authorization token, region, and subscription key)
357361
- A new set of ponyfill will be created every time an option has changed
358362

359363
### Fixed
364+
360365
- Fix [#13](https://github.com/compulim/web-speech-cognitive-services/issues/13) Speech recognition: `SpeechRecognitionResult` should be iterable
361366

362367
## [3.0.0] - 2018-10-31
368+
363369
### Added
370+
364371
- Speech Synthesis: Will async fetch speech token instead of throwing exception
365372

366373
### Changed
374+
367375
- Use `@babel/runtime` and `@babel/plugin-tranform-runtime`, in favor of `babel-polyfill`
368376
- Better error handling on `null` token
369377
- Updated voice list from [https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/supported-languages](https://docs.microsoft.com/en-us/azure/cognitive-services/speech-service/supported-languages)
@@ -379,14 +387,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
379387
- Bump to [`event-as-promise@1.0.5`](https://npmjs.com/package/event-as-promise/v/1.0.5)
380388

381389
## [2.1.0] - 2018-07-09
390+
382391
### Added
392+
383393
- Speech priming via custom `SpeechGrammarList`
384394

385395
## [2.0.0] - 2018-07-09
396+
386397
### Added
398+
387399
- SpeechSynthesis polyfill with Cognitive Services
388400

389401
### Changed
402+
390403
- Removed `CognitiveServices` prefix
391404
- Renamed `CognitiveServicesSpeechGrammarList` to `SpeechGrammarList`
392405
- Renamed `CognitiveServicesSpeechRecognition` to `SpeechRecognition`
@@ -395,6 +408,27 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
395408
- `recognition.speechToken = new SubscriptionKey('your subscription key');`
396409

397410
## [1.0.0] - 2018-06-29
411+
398412
### Added
413+
399414
- Initial release
400415
- SpeechRecognition polyfill with Cognitive Services
416+
417+
[8.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v7.1.3...v8.0.0
418+
[7.1.3]: https://github.com/compulim/web-speech-cognitive-services/compare/v7.1.2...v7.1.3
419+
[7.1.2]: https://github.com/compulim/web-speech-cognitive-services/compare/v7.1.1...v7.1.2
420+
[7.1.1]: https://github.com/compulim/web-speech-cognitive-services/compare/v7.1.0...v7.1.1
421+
[7.1.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v7.0.1...v7.1.0
422+
[7.0.1]: https://github.com/compulim/web-speech-cognitive-services/compare/v7.0.0...v7.0.1
423+
[7.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v6.3.0...v7.0.0
424+
[6.3.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v6.2.0...v6.3.0
425+
[6.2.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v6.1.0...v6.2.0
426+
[6.1.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v6.0.0...v6.1.0
427+
[6.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v5.0.1...v6.0.0
428+
[5.0.1]: https://github.com/compulim/web-speech-cognitive-services/compare/v5.0.0...v5.0.1
429+
[5.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v4.0.0...v5.0.0
430+
[4.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v3.0.0...v4.0.0
431+
[3.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v2.1.0...v3.0.0
432+
[2.1.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v2.0.0...v2.1.0
433+
[2.0.0]: https://github.com/compulim/web-speech-cognitive-services/compare/v1.0.0...v2.0.0
434+
[1.0.0]: https://github.com/compulim/web-speech-cognitive-services/releases/tag/v1.0.0

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-speech-cognitive-services-root",
3-
"version": "8.0.0-0",
3+
"version": "8.0.0",
44
"description": "",
55
"private": true,
66
"author": "William Wong (https://github.com/compulim)",

0 commit comments

Comments
 (0)