Skip to content

bumped version #70

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 4, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion socketsecurity/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__author__ = 'socket.dev'
__version__ = '2.0.38'
__version__ = '2.0.39'

2 changes: 2 additions & 0 deletions socketsecurity/core/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
Loading