Skip to content

Commit 642401d

Browse files
committed
remove max length constraint in Voice API for webhook URIs
1 parent 658049e commit 642401d

File tree

6 files changed

+10
-4
lines changed

6 files changed

+10
-4
lines changed

voice/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 1.1.1
2+
- Remove maximum webhook uri length constraint
3+
14
# 1.1.0
25
- Add `Voice.get_recording` method to get call recordings
36
- Add `Voice.verify_signature` method to expose the verification functionality from `vonage-jwt`

voice/src/vonage_voice/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '1.1.0'
1+
__version__ = '1.1.1'

voice/src/vonage_voice/models/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ class Websocket(BaseModel):
3737
headers (Optional[dict]): The headers to include with the WebSocket connection.
3838
"""
3939

40-
uri: str = Field(..., min_length=1, max_length=50)
40+
uri: str = Field(..., min_length=1)
4141
content_type: Literal['audio/l16;rate=8000', 'audio/l16;rate=16000'] = Field(
4242
'audio/l16;rate=16000', serialization_alias='content-type'
4343
)

vonage/CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 4.1.2
2+
- Remove max length constraint in Voice API for webhook URIs
3+
14
# 4.1.1
25
- Include new package versions
36

vonage/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies = [
2121
"vonage-verify>=2.1.0",
2222
"vonage-verify-legacy>=1.0.1",
2323
"vonage-video>=1.0.4",
24-
"vonage-voice>=1.1.0",
24+
"vonage-voice>=1.1.1",
2525
]
2626
classifiers = [
2727
"Programming Language :: Python",

vonage/src/vonage/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = '4.1.1'
1+
__version__ = '4.1.2'

0 commit comments

Comments
 (0)