diff --git a/fern/changelog/2025-05-31.mdx b/fern/changelog/2025-05-31.mdx new file mode 100644 index 00000000..225e2129 --- /dev/null +++ b/fern/changelog/2025-05-31.mdx @@ -0,0 +1,17 @@ +# SIP Call Error Handling Updates + +The following specific SIP error codes have been added to help identify call failures: + + +- `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` + + + + 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. + diff --git a/fern/changelog/2025-06-03.mdx b/fern/changelog/2025-06-03.mdx new file mode 100644 index 00000000..19a5dbc6 --- /dev/null +++ b/fern/changelog/2025-06-03.mdx @@ -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`.