bugbug
bugbug copied to clipboard
Platform for Machine Learning projects on Software Engineering
Bumps [coverage](https://github.com/coveragepy/coveragepy) from 7.12.0 to 7.13.0. Changelog Sourced from coverage's changelog. Version 7.13.0 — 2025-12-08 Feature: coverage.py now supports :file:.coveragerc.toml configuration files. These files use TOML syntax and take priority...
Bumps [flask-cors](https://github.com/corydolphin/flask-cors) from 6.0.1 to 6.0.2. Release notes Sourced from flask-cors's releases. 6.0.2 What's Changed Update license pyproject.toml by @wagenrace in corydolphin/flask-cors#395 New Contributors @wagenrace made their first contribution in...
Bumps [matplotlib](https://github.com/matplotlib/matplotlib) from 3.10.7 to 3.10.8. Release notes Sourced from matplotlib's releases. REL: v3.10.8 This is a bugfix release in the 3.10.x series. The primary highlights of this release are:...
Bumps [marshmallow](https://github.com/marshmallow-code/marshmallow) from 3.26.1 to 4.1.1. Changelog Sourced from marshmallow's changelog. 4.1.1 (2025-11-05) ++++++++++++++++++ Bug fixes: Ensure URL validator is case-insensitive when using custom schemes (:pr:2874). Thanks :user:T90REAL for the...
Bumps [pytest](https://github.com/pytest-dev/pytest) from 9.0.1 to 9.0.2. Release notes Sourced from pytest's releases. 9.0.2 pytest 9.0.2 (2025-12-06) Bug fixes #13896: The terminal progress feature added in pytest 9.0.0 has been disabled...
I feel like this used to work, but recently the helper has been giving me review comments about code that is being removed by the patch. It's hard to find...
# Description I added threading to generate diff to make it run concurrently,. The design is same retrieve_logs. The only difference is that we returen a tuple (mapping_erros, diff_errors) and...
Bumps [hypothesis](https://github.com/HypothesisWorks/hypothesis) from 6.148.2 to 6.148.7. Release notes Sourced from hypothesis's releases. Hypothesis for Python - version 6.148.7 When multiple explicit "@example" decorators fail with the same error, Hypothesis now...
Bumps python from 3.12.7-slim to 3.14.1-slim. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a...
We are currently generating diffs one by one sequentially, https://github.com/mozilla/bugbug/blob/c0dd7c97f1ff1d1649d33a495119fb72bcf745a7/scripts/retrieve_ci_failures.py#L234. We should instead generate them in parallel using threads (the workload is I/O bound, so there's no need to use...