socketsecurity 0.0.79__tar.gz → 0.0.81__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {socketsecurity-0.0.79/socketsecurity.egg-info → socketsecurity-0.0.81}/PKG-INFO +1 -1
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/__init__.py +1 -1
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/github.py +1 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/gitlab.py +1 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/messages.py +2 -1
- {socketsecurity-0.0.79 → socketsecurity-0.0.81/socketsecurity.egg-info}/PKG-INFO +1 -1
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/LICENSE +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/README.md +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/pyproject.toml +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/setup.cfg +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/__init__.py +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/classes.py +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/exceptions.py +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/issues.py +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/core/licenses.py +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity/socketcli.py +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity.egg-info/SOURCES.txt +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity.egg-info/dependency_links.txt +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity.egg-info/entry_points.txt +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity.egg-info/requires.txt +0 -0
- {socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity.egg-info/top_level.txt +0 -0
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__author__ = 'socket.dev'
|
|
2
|
-
__version__ = '0.0.
|
|
2
|
+
__version__ = '0.0.81'
|
|
@@ -324,6 +324,7 @@ class Github:
|
|
|
324
324
|
line = line.strip()
|
|
325
325
|
if "start-socket-alerts-table" in line:
|
|
326
326
|
start = True
|
|
327
|
+
lines.append(line)
|
|
327
328
|
elif start and "end-socket-alerts-table" not in line and not Github.is_heading_line(line) and line != '':
|
|
328
329
|
title, package, introduced_by, manifest = line.strip("|").split("|")
|
|
329
330
|
details, _ = package.split("](")
|
|
@@ -303,6 +303,7 @@ class Gitlab:
|
|
|
303
303
|
line = line.strip()
|
|
304
304
|
if "start-socket-alerts-table" in line:
|
|
305
305
|
start = True
|
|
306
|
+
lines.append(line)
|
|
306
307
|
elif start and "end-socket-alerts-table" not in line and not Gitlab.is_heading_line(line) and line != '':
|
|
307
308
|
title, package, introduced_by, manifest = line.lstrip("|").rstrip("|").split("|")
|
|
308
309
|
details, _ = package.split("](")
|
|
@@ -153,7 +153,8 @@ class Messages:
|
|
|
153
153
|
", ".join(sources),
|
|
154
154
|
manifest_str
|
|
155
155
|
]
|
|
156
|
-
alert_table
|
|
156
|
+
if row not in alert_table:
|
|
157
|
+
alert_table.extend(row)
|
|
157
158
|
num_of_alert_rows = len(diff.new_alerts) + 1
|
|
158
159
|
md.new_table(
|
|
159
160
|
columns=num_of_alert_columns,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{socketsecurity-0.0.79 → socketsecurity-0.0.81}/socketsecurity.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|