mirror of
https://github.com/jambonz/next-static-site.git
synced 2025-12-19 04:47:44 +00:00
0.9.1 release notes (#92)
* 0.9.1 release notes * update preact * wip * wip * typo
This commit is contained in:
21
.github/workflows/main.yml
vendored
21
.github/workflows/main.yml
vendored
@@ -12,14 +12,25 @@ on:
|
|||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
environment: Production
|
environment: Production
|
||||||
# Available tools on this machine:
|
|
||||||
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v4
|
||||||
- name: Setup and Install
|
- 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
|
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
|
- name: Build and Start Next.js
|
||||||
run: yarn build && (yarn start&) > /dev/null
|
run: yarn build && (yarn start&) > /dev/null
|
||||||
- name: Run Tests
|
- name: Run Tests
|
||||||
run: yarn test
|
run: yarn test
|
||||||
@@ -165,6 +165,9 @@ navi:
|
|||||||
path: release-notes
|
path: release-notes
|
||||||
title: Release Notes
|
title: Release Notes
|
||||||
pages:
|
pages:
|
||||||
|
-
|
||||||
|
path: 0.9.1
|
||||||
|
title: 0.9.1
|
||||||
-
|
-
|
||||||
path: 0.9.0
|
path: 0.9.0
|
||||||
title: 0.9.0
|
title: 0.9.0
|
||||||
@@ -186,9 +189,6 @@ navi:
|
|||||||
-
|
-
|
||||||
path: v0.8.0
|
path: v0.8.0
|
||||||
title: 0.8.0
|
title: 0.8.0
|
||||||
-
|
|
||||||
path: v0.7.9
|
|
||||||
title: 0.7.9
|
|
||||||
-
|
-
|
||||||
path: jambonz-ui
|
path: jambonz-ui
|
||||||
title: Jambonz UI
|
title: Jambonz UI
|
||||||
|
|||||||
45
markdown/docs/release-notes/0.9.1.md
Normal file
45
markdown/docs/release-notes/0.9.1.md
Normal 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>
|
||||||
@@ -35,6 +35,7 @@ It is an object containing the following properties:
|
|||||||
| outputFormat | (microsoft) simple or detailed. Default: simple| no |
|
| outputFormat | (microsoft) simple or detailed. Default: simple| no |
|
||||||
| requestSnr | (microsoft) Request signal to noise information| no |
|
| requestSnr | (microsoft) Request signal to noise information| no |
|
||||||
| initialSpeechTimeoutMs | (microsoft) Initial speech timeout in milliseconds| 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 |
|
| 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 |
|
| 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 |
|
| asrDtmfTerminationDigit|DMTF key that terminates [continuous ASR feature](/docs/supporting-articles/continuous-asr)| no |
|
||||||
|
|||||||
2870
package-lock.json
generated
2870
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -27,7 +27,7 @@
|
|||||||
"@jambonz/ui-kit": "^0.0.21",
|
"@jambonz/ui-kit": "^0.0.21",
|
||||||
"nanoid": "^3.1.22",
|
"nanoid": "^3.1.22",
|
||||||
"next": "^12.1.4",
|
"next": "^12.1.4",
|
||||||
"next-plugin-preact": "^3.0.6",
|
"next-plugin-preact": "^3.0.7",
|
||||||
"preact": "^10.7.2",
|
"preact": "^10.7.2",
|
||||||
"preact-render-to-string": "^5.2.0",
|
"preact-render-to-string": "^5.2.0",
|
||||||
"prismjs": "^1.23.0",
|
"prismjs": "^1.23.0",
|
||||||
|
|||||||
Reference in New Issue
Block a user