Skip to content

Commit d28537d

Browse files
Update Python SDK (#130)
[bot](2026-01-22 12:08:48) Sync SDK with OpenAPI spec Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 61eb05d commit d28537d

File tree

10 files changed

+12
-12
lines changed

10 files changed

+12
-12
lines changed

poetry.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "vulncheck_sdk"
3-
version = "0.0.37"
3+
version = "0.0.38"
44
description = "VulnCheck API"
55
authors = [
66
{name = "VulnCheck API Support",email = "[email protected]"},

python-generator-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ additionalProperties:
22
projectName: "vulncheck-sdk"
33
packageName: "vulncheck_sdk"
44
packageUrl: "https://github.com/vulncheck-oss/sdk-python/tree/main"
5-
packageVersion: "0.0.37"
5+
packageVersion: "0.0.38"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "vulncheck-sdk"
25-
VERSION = "0.0.37"
25+
VERSION = "0.0.38"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"aiohttp_retry >= 2.9.1",

vulncheck_sdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.0.37"
18+
__version__ = "0.0.38"
1919

2020
# Define package exports
2121
__all__ = [

vulncheck_sdk/aio/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "0.0.37"
18+
__version__ = "0.0.38"
1919

2020
# Define package exports
2121
__all__ = [

vulncheck_sdk/aio/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/0.0.37/python'
95+
self.user_agent = 'OpenAPI-Generator/0.0.38/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
async def __aenter__(self):

vulncheck_sdk/aio/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def to_debug_report(self) -> str:
532532
"OS: {env}\n"\
533533
"Python Version: {pyversion}\n"\
534534
"Version of the API: 3.0\n"\
535-
"SDK Package Version: 0.0.37".\
535+
"SDK Package Version: 0.0.38".\
536536
format(env=sys.platform, pyversion=sys.version)
537537

538538
def get_host_settings(self) -> List[HostSetting]:

vulncheck_sdk/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/0.0.37/python'
95+
self.user_agent = 'OpenAPI-Generator/0.0.38/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

vulncheck_sdk/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,7 @@ def to_debug_report(self) -> str:
537537
"OS: {env}\n"\
538538
"Python Version: {pyversion}\n"\
539539
"Version of the API: 3.0\n"\
540-
"SDK Package Version: 0.0.37".\
540+
"SDK Package Version: 0.0.38".\
541541
format(env=sys.platform, pyversion=sys.version)
542542

543543
def get_host_settings(self) -> List[HostSetting]:

0 commit comments

Comments
 (0)