From 21db1d5e403b281b801464fb8ae4b9dc242117a9 Mon Sep 17 00:00:00 2001 From: Quantstruct Bot Date: Tue, 3 Jun 2025 10:55:59 -0700 Subject: [PATCH] Add changelog for 2025-06-03 --- fern/changelog/2025-05-31.mdx | 17 +++++++++++++++++ fern/changelog/2025-06-03.mdx | 6 ++++++ 2 files changed, 23 insertions(+) create mode 100644 fern/changelog/2025-05-31.mdx create mode 100644 fern/changelog/2025-06-03.mdx 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`.