0.9.1 release notes (#92)

* 0.9.1 release notes

* update preact

* wip

* wip

* typo
This commit is contained in:
Dave Horton
2024-07-30 21:18:57 -04:00
committed by GitHub
parent e9ef13073a
commit 2c9655c93a
6 changed files with 1346 additions and 1599 deletions

View File

@@ -12,14 +12,25 @@ on:
jobs:
test:
environment: Production
# Available tools on this machine:
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup and Install
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- name: Cache node modules
uses: actions/cache@v3
with:
path: node_modules
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- name: Install Dependencies
run: yarn install
- name: Update Preact Render to String
run: yarn add preact-render-to-string@^6.5.0
- name: Build and Start Next.js
run: yarn build && (yarn start&) > /dev/null
- name: Run Tests
run: yarn test
run: yarn test

View File

@@ -165,6 +165,9 @@ navi:
path: release-notes
title: Release Notes
pages:
-
path: 0.9.1
title: 0.9.1
-
path: 0.9.0
title: 0.9.0
@@ -186,9 +189,6 @@ navi:
-
path: v0.8.0
title: 0.8.0
-
path: v0.7.9
title: 0.7.9
-
path: jambonz-ui
title: Jambonz UI

View File

@@ -0,0 +1,45 @@
# Release 0.9.1
#### Info
- Release Date: July 30, 2024
#### New Features
- add support for elevenlabs 2.5-turbo
- add support verbio speech provider
- add support for recognizer.minConfidence
- support use sips scheme for outbound tls gateway
- support direct call to conference [#746](https://github.com/jambonz/jambonz-feature-server/pull/746)
- log endpoint uuid for cross referencing with freeswitch logs
- support mod_custom_tts [#731](https://github.com/jambonz/jambonz-feature-server/pull/731)
- fix race condition with filler noise and also play filler noise when idle and waiting for commands [#763](https://github.com/jambonz/jambonz-feature-server/pull/763)
- support mod_vad_detect [#762](https://github.com/jambonz/jambonz-feature-server/pull/762)
- support restDial.referhook
- discover local ip address based on authentication response from drachtio-server
- add option to transcode incoming g729 calls to pcmu
#### Bug fixes
- fix fs keep looping forever if there is no fallback TTS [#749](https://github.com/jambonz/jambonz-feature-server/pull/749)
- per email from microsoft, do not restart STT connection when we get a no audio event [#754](https://github.com/jambonz/jambonz-feature-server/pull/754)
- say verb should not print speech credentials in log when tts stream API is used [#756](https://github.com/jambonz/jambonz-feature-server/pull/756)
- fix gather race condition [#759](https://github.com/jambonz/jambonz-feature-server/pull/759)
- Update example-voicemail-greetings.json [#761](https://github.com/jambonz/jambonz-feature-server/pull/761)
- set valid terminatedBy for rest call [#779](https://github.com/jambonz/jambonz-feature-server/pull/779)
- send end of utterance events if using deepgram, interim events are enabled, and utterance_end_ms option is set
- add support for JAMBONES_DISABLE_AZURE_TTS_STREAMING to enable or disable azure tts streaming
- fix bug where play incorrectly plays again after response received [#786](https://github.com/jambonz/jambonz-feature-server/pull/786)
- Aws polly engine fix [#789](https://github.com/jambonz/jambonz-feature-server/pull/789)
- add support for persistent connection for custom stt vendors in transcribe
- clear asr timer when gather resolves with timeout [#788](https://github.com/jambonz/jambonz-feature-server/pull/788)
- support disable/enable listen DTMF in prompt
- fix conference in feature server cluster join, leave, end events
- allow joining conference as muted
#### SQL changes
```
'ALTER TABLE sip_gateways ADD COLUMN use_sips_scheme BOOLEAN NOT NULL DEFAULT 0'
```
#### Availability
- Available now on jambonz.cloud
- devops scripts (packer, cloudformation, helm) available now for subscription customers
**Questions?** Contact us at <a href="mailto:support@jambonz.org">support@jambonz.org</a>

View File

@@ -35,6 +35,7 @@ It is an object containing the following properties:
| outputFormat | (microsoft) simple or detailed. Default: simple| no |
| requestSnr | (microsoft) Request signal to noise information| no |
| initialSpeechTimeoutMs | (microsoft) Initial speech timeout in milliseconds| no |
| minConfidence | If provided, final transcripts with confidence less than this value return a reason of 'stt-low-confidence' in webhook | no |
| transcriptionHook | Webhook to receive an HTPP POST when an interim or final transcription is received. | yes |
| asrTimeout|timeout value for [continuous ASR feature](/docs/supporting-articles/continuous-asr)| no |
| asrDtmfTerminationDigit|DMTF key that terminates [continuous ASR feature](/docs/supporting-articles/continuous-asr)| no |

2870
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -27,7 +27,7 @@
"@jambonz/ui-kit": "^0.0.21",
"nanoid": "^3.1.22",
"next": "^12.1.4",
"next-plugin-preact": "^3.0.6",
"next-plugin-preact": "^3.0.7",
"preact": "^10.7.2",
"preact-render-to-string": "^5.2.0",
"prismjs": "^1.23.0",