chore(main): release 0.7.1#84
Merged
GregHolmes merged 1 commit intoJul 24, 2026
Merged
Conversation
github-actions
Bot
requested review from
deepgram-kiley and
dg-coreylweathers
as code owners
July 24, 2026 01:42
github-actions
Bot
force-pushed
the
release-please--branches--main--components--deepgram-java-sdk
branch
from
July 24, 2026 12:11
cc0e062 to
4b813d0
Compare
github-actions
Bot
force-pushed
the
release-please--branches--main--components--deepgram-java-sdk
branch
from
July 24, 2026 13:01
4b813d0 to
50a0b77
Compare
GregHolmes
approved these changes
Jul 24, 2026
Contributor
Author
|
🤖 Created releases: 🌻 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 I have created a release beep boop
0.7.1 (2026-07-24)
Bug Fixes
What's in this release
Three related fixes to streaming (WebSocket) query-parameter serialization on
listenandspeak. All are bug fixes — no API changes.Multi-keyterm streaming fix
keyterm(and other array-valued params): aList<String>was stringified into a single param (keyterm=[a, b]) instead of repeated params (keyterm=a&keyterm=b). The server treats the stringified list as one nonsense term, so multiple key terms were not boosted — recognition of them was actually degraded.listen:keyterm,keywords,replace,search,tag,extra,language_hint;speak:tag— by routing them through the same repeated-param serialization the REST path already uses (fix: emit repeated keyterm query params for multi-keyterm streaming #81, fix: emit repeated query params for all multi-value streaming options #82, fix: emit repeated tag query params for multi-value speak v2 streaming #85; closes [Bug]: ConnectOptions with multiple values do not get filled #77).List<String>(e.g.ListenV1Keyterm.of(List.of("a", "b"))) and each term is now sent as its ownkeyterm=param.Unmodeled streaming query params now work (e.g.
no_delay)connect(...)builders droppedadditionalProperties, so unmodeled params set via.additionalProperty("no_delay", true)never reached the URL — it was impossible to setno_delayon a streaming connection.listenv1/v2,speakv1/v2):additionalPropertiesare emitted as query params, so any not-yet-modeled param can be passed through until it gains a typed option (fix: emit additionalProperties as query params on streaming connect #86; closes Its impossible to set the no_delay=true #83).All four streaming clients remain frozen in
.fernignore; the durable fix belongs in the Fern generator's WebSocket template, tracked for the next generator upgrade.This PR was generated with Release Please. See documentation.