diff --git a/voice/CHANGES.md b/voice/CHANGES.md index 045bb534..cd6008ea 100644 --- a/voice/CHANGES.md +++ b/voice/CHANGES.md @@ -1,3 +1,6 @@ +# 1.1.1 +- Remove maximum webhook uri length constraint + # 1.1.0 - Add `Voice.get_recording` method to get call recordings - Add `Voice.verify_signature` method to expose the verification functionality from `vonage-jwt` diff --git a/voice/src/vonage_voice/_version.py b/voice/src/vonage_voice/_version.py index 1a72d32e..b3ddbc41 100644 --- a/voice/src/vonage_voice/_version.py +++ b/voice/src/vonage_voice/_version.py @@ -1 +1 @@ -__version__ = '1.1.0' +__version__ = '1.1.1' diff --git a/voice/src/vonage_voice/models/common.py b/voice/src/vonage_voice/models/common.py index ef6d75ed..c1f2741f 100644 --- a/voice/src/vonage_voice/models/common.py +++ b/voice/src/vonage_voice/models/common.py @@ -37,7 +37,7 @@ class Websocket(BaseModel): headers (Optional[dict]): The headers to include with the WebSocket connection. """ - uri: str = Field(..., min_length=1, max_length=50) + uri: str = Field(..., min_length=1) content_type: Literal['audio/l16;rate=8000', 'audio/l16;rate=16000'] = Field( 'audio/l16;rate=16000', serialization_alias='content-type' ) diff --git a/vonage/CHANGES.md b/vonage/CHANGES.md index 5ab33d35..b0e35979 100644 --- a/vonage/CHANGES.md +++ b/vonage/CHANGES.md @@ -1,3 +1,6 @@ +# 4.1.2 +- Remove max length constraint in Voice API for webhook URIs + # 4.1.1 - Include new package versions diff --git a/vonage/pyproject.toml b/vonage/pyproject.toml index f76ceddb..11232827 100644 --- a/vonage/pyproject.toml +++ b/vonage/pyproject.toml @@ -21,7 +21,7 @@ dependencies = [ "vonage-verify>=2.1.0", "vonage-verify-legacy>=1.0.1", "vonage-video>=1.0.4", - "vonage-voice>=1.1.0", + "vonage-voice>=1.1.1", ] classifiers = [ "Programming Language :: Python", diff --git a/vonage/src/vonage/_version.py b/vonage/src/vonage/_version.py index 47cbba72..96e55858 100644 --- a/vonage/src/vonage/_version.py +++ b/vonage/src/vonage/_version.py @@ -1 +1 @@ -__version__ = '4.1.1' +__version__ = '4.1.2'