Releases: compulim/web-speech-cognitive-services
Releases · compulim/web-speech-cognitive-services
[7.1.2] - 2022-09-27
Changed
- Bumped dependencies, in PR #196
- Production dependencies
- Development dependencies
@babel/cli@7.18.10
@babel/core@7.19.1
@babel/plugin-proposal-object-rest-spread@7.18.9
@babel/plugin-transform-runtime@7.19.1
@babel/preset-env@7.19.1
@babel/preset-react@7.18.6
babel-jest@29.0.3
babel-plugin-transform-inline-environment-variables@0.4.4
classnames@2.3.2
concurrently@7.4.0
dotenv@16.0.2
eslint@8.24.0
global-agent@3.0.0
jest@29.0.3
microsoft-cognitiveservices-speech-sdk@1.23.0
node-fetch@2.6.7
p-defer-es5@2.0.1
prettier@2.7.1
react-dom@18.2.0
react-redux@8.0.4
react-say@2.1.0
react-scripts@5.0.1
react@18.2.0
redux-saga@1.2.1
redux@4.2.0
webpack-cli@4.10.0
webpack-stats-plugin@1.1.0
webpack@5.74.0
[7.1.1] - 2021-07-20
Changed
- Bumped dependencies, in PR #151, PR #152 and PR #153
@babel/cli@7.14.5
@babel/core@7.14.6
@babel/plugin-proposal-object-rest-spread@7.14.7
@babel/plugin-transform-runtime@7.14.5
@babel/preset-env@7.14.7
@babel/preset-react@7.14.5
@babel/runtime@7.14.6
babel-jest@27.0.6
classnames@2.3.1
concurrently@6.2.0
dotenv@10.0.0
eslint@7.30.0
event-target-shim@6.0.2
global-agent@2.2.0
jest@27.0.6
lerna@4.0.0
memoize-one@5.2.1
microsoft-cognitiveservices-speech-sdk@1.17.0
p-defer-es5@2.0.0
p-defer@4.0.0
prettier@2.3.2
react-dictate-button@2.0.1
react-dom@17.0.2
react-redux@7.2.4
react-scripts@4.0.3
react@17.0.2
redux@4.1.0
webpack-cli@4.7.2
webpack-stats-plugin@1.0.3
webpack@5.44.0
[7.1.0] - 2021-02-01
This release bumped microsoft-cognitiveservices-speech-sdk
to 1.15.0
.
When installing this version, you will need to bump your microsoft-cognitiveservices-speech-sdk
to versions in range of ~1.15.0
.
Changed
- Moved from
webpack-visualizer-plugin
towebpack-stats-plugin
- Bumped production dependencies
- Bumped development dependencies
@babel/cli@7.12.10
@babel/core@7.12.10
@babel/plugin-proposal-object-rest-spread@7.12.1
@babel/plugin-transform-runtime@7.12.10
@babel/preset-env@7.12.11
babel-jest@26.6.3
eslint@7.18.0
global-agent@2.1.12
jest@26.6.3
microsoft-cognitiveservices-speech-sdk@1.15.0
node-fetch@2.6.1
p-defer-es5@1.2.1
prettier@2.2.1
react-dom@17.0.1
react-redux@7.2.2
react-say@2.0.1
react-scripts@4.0.1
react@17.0.1
simple-update-in@2.2.0
[7.0.1] - 2020-08-06
Changed
- Bumped dependencies
[7.0.0] - 2020-05-27
Breaking changes
- To enable developers to select their version of Cognitive Services Speech SDK and use newer features, we are moving
microsoft-cognitiveservices-speech-sdk
topeerDependencies
.- When you install
web-speech-cognitive-services
, you will also need to install a compatible version ofmicrosoft-cognitiveservices-speech-sdk
.
- When you install
Changed
- Fixes #96, move
microsoft-cognitiveservices-speech-sdk
topeerDependencies
, by @compulim, in PR #97
[6.3.0] - 2020-03-28
Changed
- Debumped
microsoft-cognitiveservices-speech-sdk@1.9.1
, by @compulim in PR #94
[6.2.0] - 2020-03-27
[6.1.0] - 2020-03-26
Breaking changes
As Bing Speech has deprecated and removed from Azure. Bing Speech support has been removed.fetchAuthorizationToken
is removed, please refer to this documentation on how to get an access token.
Added
Removed
Bing Speech support is removed, by @compulim, in PR #87.fetchAuthorizationToken
is removed, by @compulim, in PR #89.
Changed
- Bumped dependencies, in PR #87, by @compulim
- Production dependencies
- Development dependencies
- Use
p-defer-es5
instead of adoptedcreateDeferred.js
, in PR #89.
[6.0.0] - 2019-12-03
NPM
npm install web-speech-cognitive-services@6.0.0
Bundle
<script
crossorigin="anonymous"
integrity="sha384-p+vce8dK8+ckVaudTLbnVh71UsDK/WtVEpMjK9yuf5O1ZErYBBEbL8QNMj0g269w"
src="https://unpkg.com/web-speech-cognitive-services@6.0.0/umd/web-speech-cognitive-services.production.min.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-FDinSg51BwwaXTjCgK2K3wu1xPcK0NNxFU1rtKR4g/3GQDLCTG7KOSu5YD46YWjw"
src="https://unpkg.com/web-speech-cognitive-services@6.0.0/umd/web-speech-cognitive-services.development.js"
></script>
Changelog
Breaking changes
Unifying options to pass credentials
authorizationToken
, region
, and subscriptionKey
are being deprecated in favor of credentials
options. credentials
can be one of the following types:
{ authorizationToken: string, region: string? }
{ region: string?, subscriptionKey: string }
Promise<{ authorizationToken: string, region: string? }>
Promise<{ region: string?, subscriptionKey: string }>
() => { authorizationToken: string, region: string? }
() => { region: string?, subscriptionKey: string }
() => Promise<{ authorizationToken: string, region: string? }>
() => Promise<{ region: string?, subscriptionKey: string }>
If credentials
is a function, it will be called just before the credentials is needed and may be called very frequently. This behavior matches the deprecating authorizationToken
. The result of the call is also expected to be cached.
If region
is not returned, the default value of "westus"
will be used.
Fixed
- Speech recognition: Removed extraneous finalized
result
event in continuous mode, by @compulim, in PR #79
Removed
- 🔥
authorizationToken
,region
, andsubscriptionKey
are being deprecated in favor ofcredentials
options, by @compulim in PR #80
Added
playground
: Add delayed start to playground for testing speech recognition initiated outside of user gestures, in PR #78- Speech recognition: New
looseEvents
option, default isfalse
. When enabled, we will no longer follow observed browser event order. We will send finalizedresult
event as early as possible. This will not break conformance to W3C specifications. By @compulim, in PR #79 - Speech recognition: Create ponyfill using
SpeechRecognizer
object frommicrosoft-cognitiveservices-speech-sdk
, by @compulim, in PR #73 credentials
option is added for obtaining authorization token and region, or subscription key and region, in a single object or function call, by @compulim in PR #80- Speech recognition: Polyfill will have
abort
/stop
function set toundefined
if the underlying recognizer from Cognitive Services SDK does not support stop/abort, in PR #81
Changed
- Bumped dependencies, in PR #73
[5.0.1] - 2019-10-25
NPM
npm install web-speech-cognitive-services@5.0.1
Bundle
<script
crossorigin="anonymous"
integrity="sha384-P+Oqr4qjejIgT3DIhyBMMVk4bjp1V037+DDjEAjnFKJTkWvcthxbix3QtZk+tKlf"
src="https://unpkg.com/web-speech-cognitive-services@5.0.1/umd/web-speech-cognitive-services.production.min.js"
></script>
<script
crossorigin="anonymous"
integrity="sha384-DWOFKFk0KHdy/8DSwihYyP5EVrMDhfsmwo39fU0T1KBRTK7gsOsz7Ar1qcMaEidP"
src="https://unpkg.com/web-speech-cognitive-services@5.0.1/umd/web-speech-cognitive-services.development.js"
></script>
Changelog
Changed
- Fixed dependences in PR #76
bundle
packagedependencies
: Movedeslint
to development dependencies
component
packagepeerDependencies
: No longer requiresreact
dependencies
- Moved
eslint
to development dependencies - Removed
event-target-shim
because incompatibility with ES5
- Moved
devDependencies
: Removedreact
- Removed
import '@babel/runtime'
explicitly