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.613
to
0.0.614
+1
-1
bugbug.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: bugbug
Version: 0.0.613
Version: 0.0.614
Summary: ML tools for Mozilla projects

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

amqp==5.3.1
beautifulsoup4==4.14.2
boto3==1.40.75
boto3==1.41.2
imbalanced-learn==0.14.0

@@ -8,6 +8,6 @@ langchain-anthropic==1.1.0

langchain-community==0.4.1
langchain-google-genai==3.0.3
langchain-google-genai==3.1.0
langchain-mistralai==1.0.1
langchain-openai==1.0.3
langchain==1.0.7
langchain==1.0.8
langgraph==1.0.3

@@ -41,7 +41,7 @@ libmozdata==0.2.12

tabulate==0.9.0
taskcluster==93.1.4
taskcluster==93.1.5
tenacity==9.1.2
tqdm==4.67.1
unidiff==0.7.5
xgboost==3.1.1
xgboost==3.1.2
zstandard==0.25.0

@@ -48,0 +48,0 @@

@@ -1006,2 +1006,36 @@ # -*- coding: utf-8 -*-

# If a web-platform test or meta is modified, run the relevant web-platform folder.
if not any(path.endswith(ignore) for ignore in ("/META.yml", "/README.md")):
for base in ("testing/web-platform/mozilla", "testing/web-platform"):
if path.startswith(f"{base}/meta/") or path.startswith(
f"{base}/tests/"
):
sub = "meta" if "/meta/" in path else "tests"
relative = Path(path).relative_to(f"{base}/{sub}")
test_root = repo_dir / base / "tests"
cur_dir = test_root / relative.parent
def is_wpt_file(p: Path) -> bool:
return any(
str(p).endswith(suffix)
for suffix in (".html", ".any.js", ".worker.js")
)
def has_wpt_files(d: Path) -> bool:
return any(is_wpt_file(p) for p in d.iterdir())
while cur_dir != test_root and not has_wpt_files(cur_dir):
cur_dir = cur_dir.parent
# Ignore files in top level "meta" or "tests".
if len(cur_dir.parts) == 1:
break
if has_wpt_files(cur_dir):
manifests.add(str(cur_dir.relative_to(repo_dir)))
break
return manifests
Metadata-Version: 2.1
Name: bugbug
Version: 0.0.613
Version: 0.0.614
Summary: ML tools for Mozilla projects

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

amqp==5.3.1
beautifulsoup4==4.14.2
boto3==1.40.75
boto3==1.41.2
imbalanced-learn==0.14.0
langchain==1.0.7
langchain==1.0.8
langchain-anthropic==1.1.0
langchain-classic==1.0.0
langchain-community==0.4.1
langchain-google-genai==3.0.3
langchain-google-genai==3.1.0
langchain-mistralai==1.0.1

@@ -40,7 +40,7 @@ langchain-openai==1.0.3

tabulate==0.9.0
taskcluster==93.1.4
taskcluster==93.1.5
tenacity==9.1.2
tqdm==4.67.1
unidiff==0.7.5
xgboost==3.1.1
xgboost==3.1.2
zstandard==0.25.0

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

# This is needed because sometimes v-c-t fails to identify backouts.
if not any(commit["backedoutby"] for commit in obj["commits"]):
elif not any(commit["backedoutby"] for commit in obj["commits"]):
no_backouts.add(bug_id)

@@ -179,0 +179,0 @@

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

0.0.613
0.0.614