diff --git a/verify_v2/CHANGES.md b/verify_v2/CHANGES.md index 71b83f4..85cc501 100644 --- a/verify_v2/CHANGES.md +++ b/verify_v2/CHANGES.md @@ -1,3 +1,6 @@ +# 1.1.2 +- Allow minimum `channel_timeout` value to be 15 seconds + # 1.1.1 - Update minimum dependency version diff --git a/verify_v2/pyproject.toml b/verify_v2/pyproject.toml index 4bca731..3d14664 100644 --- a/verify_v2/pyproject.toml +++ b/verify_v2/pyproject.toml @@ -1,13 +1,13 @@ [project] name = 'vonage-verify-v2' -version = '1.1.1' +version = '1.1.2' description = 'Vonage verify v2 package' readme = "README.md" authors = [{ name = "Vonage", email = "devrel@vonage.com" }] requires-python = ">=3.8" dependencies = [ - "vonage-http-client>=1.3.1", - "vonage-utils>=1.1.1", + "vonage-http-client>=1.4.0", + "vonage-utils>=1.1.2", "pydantic>=2.7.1", ] classifiers = [ diff --git a/verify_v2/src/vonage_verify_v2/requests.py b/verify_v2/src/vonage_verify_v2/requests.py index e4869d6..aa06760 100644 --- a/verify_v2/src/vonage_verify_v2/requests.py +++ b/verify_v2/src/vonage_verify_v2/requests.py @@ -79,7 +79,7 @@ class VerifyRequest(BaseModel): ] ] locale: Optional[Locale] = None - channel_timeout: Optional[int] = Field(None, ge=60, le=900) + channel_timeout: Optional[int] = Field(None, ge=15, le=900) client_ref: Optional[str] = Field(None, min_length=1, max_length=16) code_length: Optional[int] = Field(None, ge=4, le=10) code: Optional[str] = Field(None, pattern=r'^[a-zA-Z0-9]{4,10}$') diff --git a/vonage/CHANGES.md b/vonage/CHANGES.md index 9dcf11d..b9b1649 100644 --- a/vonage/CHANGES.md +++ b/vonage/CHANGES.md @@ -1,3 +1,7 @@ +# 3.99.0a11 +- Remove the Number Insight v2 beta which was not in use and is going to be deprecated +- Lower the VerifyV2 minimum channel timeout to 15s + # 3.99.1a10 - Migrate the Vonage JWT package - Internal refactoring diff --git a/vonage/pyproject.toml b/vonage/pyproject.toml index 7f745c3..b52e94d 100644 --- a/vonage/pyproject.toml +++ b/vonage/pyproject.toml @@ -6,15 +6,15 @@ readme = "README.md" authors = [{ name = "Vonage", email = "devrel@vonage.com" }] requires-python = ">=3.8" dependencies = [ - "vonage-utils>=1.1.1", - "vonage-http-client>=1.3.1", + "vonage-utils>=1.1.2", + "vonage-http-client>=1.4.0", "vonage-application>=1.0.0", "vonage-messages>=1.1.1", "vonage-number-insight>=1.0.0", "vonage-sms>=1.1.1", "vonage-users>=1.1.2", "vonage-verify>=1.1.1", - "vonage-verify-v2>=1.1.1", + "vonage-verify-v2>=1.1.2", "vonage-voice>=1.0.3", ] classifiers = [ diff --git a/vonage/src/vonage/_version.py b/vonage/src/vonage/_version.py index 2b24737..6806e89 100644 --- a/vonage/src/vonage/_version.py +++ b/vonage/src/vonage/_version.py @@ -1 +1 @@ -__version__ = '3.99.1a10' +__version__ = '3.99.0a11'