From 8d432af934625e6c79d611ff1b2b7a5b83b89381 Mon Sep 17 00:00:00 2001 From: Nikita Turchaninov <2010628+slowaner@users.noreply.github.com> Date: Thu, 10 Jul 2025 15:54:45 +0300 Subject: [PATCH 1/3] Fix passing embed_object_url for async client --- cybsi/api/client.py | 1 + 1 file changed, 1 insertion(+) diff --git a/cybsi/api/client.py b/cybsi/api/client.py index 9b50c3a..bbd1d9b 100644 --- a/cybsi/api/client.py +++ b/cybsi/api/client.py @@ -234,6 +234,7 @@ def __init__(self, config: Config): base_url=config.api_url, auth=config.auth, ssl_verify=config.ssl_verify, + embed_object_url=config.embed_object_url, timeouts=config.timeouts, limits=config.limits, ) From c0ce3fb2273e03dc6a1bb3a7eee73acbf6211929 Mon Sep 17 00:00:00 2001 From: Nikita Turchaninov <2010628+slowaner@users.noreply.github.com> Date: Thu, 10 Jul 2025 15:59:39 +0300 Subject: [PATCH 2/3] Bump to 2.14.3 --- HISTORY.md | 4 ++++ cybsi/__version__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 756de77..208f651 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,10 @@ Release History =============== +2.14.3 (2025-07-10) +--------------------- +- Fix passing embed_object_url for async client + 2.14.2 (2025-04-01) --------------------- - Replace cgi to email.message module diff --git a/cybsi/__version__.py b/cybsi/__version__.py index c9fe792..1b7a9d9 100644 --- a/cybsi/__version__.py +++ b/cybsi/__version__.py @@ -1,4 +1,4 @@ -__version__ = "2.14.2" +__version__ = "2.14.3" __title__ = "cybsi-python-sdk" __description__ = "Cybersecurity threat intelligence development kit" __license__ = "Apache License 2.0" diff --git a/pyproject.toml b/pyproject.toml index e306729..93143b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "cybsi-sdk" -version = "2.14.2" +version = "2.14.3" description = "Cybsi development kit" authors = ["Cybsi SDK developers"] license = "Apache License 2.0" @@ -42,7 +42,7 @@ extend_skip = ["__init__.py"] [tool.tbump] [tool.tbump.version] -current = "2.14.2" +current = "2.14.3" regex = ''' ^ From e8c343cf17e72d9705888d896dadbd053a891139 Mon Sep 17 00:00:00 2001 From: Nikita Turchaninov <2010628+slowaner@users.noreply.github.com> Date: Thu, 10 Jul 2025 16:41:32 +0300 Subject: [PATCH 3/3] Fix docs url --- docs/dev/contributing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/contributing.rst b/docs/dev/contributing.rst index 5f89a02..9fd4248 100644 --- a/docs/dev/contributing.rst +++ b/docs/dev/contributing.rst @@ -24,7 +24,7 @@ The documentation files live in the ``docs/`` directory. Docs are written in `reStructuredText`_, and use `Sphinx`_ to generate the full suite of documentation. -.. _reStructuredText: http://docutils.sourceforge.net/rst.html +.. _reStructuredText: https://docutils.sourceforge.io/rst.html .. _Sphinx: http://sphinx-doc.org Documentation tools update