Skip to content

Add changelog for 2025-06-03 #475

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions fern/changelog/2025-05-31.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# SIP Call Error Handling Updates

The following specific SIP error codes have been added to help identify call failures:

<CodeBlocks>
- `call.in-progress.error-sip-inbound-call-failed-to-connect`
- `call.in-progress.error-providerfault-outbound-sip-403-forbidden`
- `call.in-progress.error-providerfault-outbound-sip-407-proxy-authentication-required`
- `call.in-progress.error-providerfault-outbound-sip-503-service-unavailable`
- `call.in-progress.error-providerfault-outbound-sip-480-temporarily-unavailable`
- `call.in-progress.error-sip-outbound-call-failed-to-connect`
- `call.in-progress.error-vapifault-worker-died`
</CodeBlocks>

<Warning>
The generic error code `call.in-progress.error-sip-telephony-provider-failed-to-connect-call` has been removed. Update your error handling to use the new specific error codes instead.
</Warning>
6 changes: 6 additions & 0 deletions fern/changelog/2025-06-03.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Azure OpenAI Compatibility Mode and JSON Schema Updates

1. **`toolStrictCompatibilityMode` for Azure OpenAI Models**: Added a new option to handle Azure OpenAI's validation limitations. Set `toolStrictCompatibilityMode` in your `OpenAIModel` config to either:
- `strip-parameters-with-unsupported-validation`: Removes entire parameters that have unsupported validations
- `strip-unsupported-validation`: Keeps parameters but removes unsupported validation aspects
Default is `strip-unsupported-validation`.
Loading