Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

bugbug

Package Overview
Dependencies
Maintainers
2
Versions
543
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bugbug - npm Package Compare versions

Comparing version
0.0.612
to
0.0.613
+1
-1
bugbug.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: bugbug
Version: 0.0.612
Version: 0.0.613
Summary: ML tools for Mozilla projects

@@ -5,0 +5,0 @@ Author: Marco Castelluccio

@@ -919,3 +919,3 @@ # -*- coding: utf-8 -*-

if (
toml_path.name == "Cargo.toml"
toml_path.name in ("Cargo.toml", "pyproject.toml")
or toml_path.parent.name == "test-manifest-toml"

@@ -931,3 +931,3 @@ or "third_party" in toml_path.parts

if "DEFAULT" not in data and not any(
key.startswith("test") for key in data.values()
key.startswith("test") for key in data.keys()
):

@@ -934,0 +934,0 @@ continue

Metadata-Version: 2.1
Name: bugbug
Version: 0.0.612
Version: 0.0.613
Summary: ML tools for Mozilla projects

@@ -5,0 +5,0 @@ Author: Marco Castelluccio

@@ -171,6 +171,10 @@ # -*- coding: utf-8 -*-

no_backouts = set()
for bug_id in fixed_by_commit_pushes.keys():
for bug_id, obj in fixed_by_commit_pushes.items():
if bug_id not in backouts_by_bug_id:
no_backouts.add(bug_id)
# This is needed because sometimes v-c-t fails to identify backouts.
if not any(commit["backedoutby"] for commit in obj["commits"]):
no_backouts.add(bug_id)
logger.info(

@@ -177,0 +181,0 @@ f"{len(no_backouts)} cases to be removed because there were no backouts in the bug."

@@ -1,1 +0,1 @@

0.0.612
0.0.613