From 0f9e655bb4598342bc9dcc44122d105debdb6a06 Mon Sep 17 00:00:00 2001 From: Douglas Coburn Date: Thu, 3 Apr 2025 16:42:02 -0700 Subject: [PATCH] bumped version --- socketsecurity/__init__.py | 2 +- socketsecurity/core/__init__.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/socketsecurity/__init__.py b/socketsecurity/__init__.py index ef8d284..541bbe6 100644 --- a/socketsecurity/__init__.py +++ b/socketsecurity/__init__.py @@ -1,3 +1,3 @@ __author__ = 'socket.dev' -__version__ = '2.0.38' +__version__ = '2.0.39' diff --git a/socketsecurity/core/__init__.py b/socketsecurity/core/__init__.py index 81cab93..e16b35d 100644 --- a/socketsecurity/core/__init__.py +++ b/socketsecurity/core/__init__.py @@ -427,6 +427,8 @@ def get_repo_info(self, repo_slug: str, default_branch: str = "socket-default-br Exception: If API request fails """ try: + # Need to switch to either standard logger or not call our module logging so that there isn't a conflict + # Also need to update the SDK to not emit log in a way that can't be trapped by try/except sdk_logger = logging_std.getLogger("socketdev") original_level = sdk_logger.level sdk_logger.setLevel(logging_std.CRITICAL)