Commit Graph

2183 Commits

Author SHA1 Message Date
dependabot[bot] dbffeb4d6c Chore(deps): Bump actions/setup-python from 6 to 7
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 6 to 7.
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](https://github.com/actions/setup-python/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/setup-python
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-07-20 13:53:40 +00:00
Anas Khan 3ea751c087 fix: map multimodal subset to sb-cli's swe-bench-m (#1458)
Pytest / test (3.12) (push) Has been cancelled
Pytest / test (3.11) (push) Has been cancelled
build-docs / deploy (push) Has been cancelled
Check Markdown links / markdown-link-check (push) Has been cancelled
SweBenchEvaluate._SUBSET_MAP mapped the "multimodal" subset to
"swe-bench_multimodal", but sb-cli's Subset enum only accepts
swe-bench_lite, swe-bench_verified and swe-bench-m. Submitting
"swe-bench_multimodal" is rejected at the sb-cli argument boundary, so
--evaluate=True on a multimodal run always failed.

Map "multimodal" to "swe-bench-m" instead. The "full" and
"multilingual" subsets are valid for loading instances but have no
sb-cli equivalent, so building the call now raises a clear ValueError
naming the supported subsets rather than a bare KeyError.

Add regression tests covering the subset mapping and the unsupported
subsets.

Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
2026-07-16 11:21:18 -04:00
Taksh Kothari 1dd50afb58 fix: strip query/fragment from repo URLs; correct parse error text (#1463)
* fix: strip query/fragment from repo URLs; correct parse error text

Co-authored-by: Cursor <cursoragent@cursor.com>

* ci: pin docs deploy to Python 3.12

Co-authored-by: Cursor <cursoragent@cursor.com>

* fix: pin ghapi<2 so sync GhApi calls do not return coroutines

Co-authored-by: Cursor <cursoragent@cursor.com>

---------

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-16 11:20:33 -04:00
Anas Khan 1132b3e80a docs: fix removed problem_statement flags in command line tutorial (#1447)
The "Problem statements and union types" section of the command line
tutorial listed `--problem_statement.data_path` and
`--problem_statement.repo_path` as examples of how to specify the problem
to solve. Neither flag exists: the problem statement types only expose
`text`, `path`, and `github_url`, and `data_path`/`repo_path` are the
pre-1.0 names that the CLI now explicitly rejects (see the auto-correct
entries in run_single.py). Running either flag fails with an
"unrecognized arguments" error, and `repo_path` also belonged to the
environment, not the problem statement.

Replace them with the three flags that map to the union members shown
right below (GithubIssue, FileProblemStatement, TextProblemStatement):
`--problem_statement.github_url`, `--problem_statement.path`, and
`--problem_statement.text`.

Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
2026-07-07 11:57:06 -04:00
Anas Khan 7506615844 docs: fix traj-to-demo command in demonstrations guide (#1448)
The demonstrations guide documents the conversion command as
`sweagent traj-to-demo --traj_path<path to trajectory file.traj>`, but
copying it verbatim fails argument parsing:

    sweagent: error: the following arguments are required: traj_path

`traj-to-demo` is argparse-based and declares `traj_path` as a positional
argument (sweagent/run/run_traj_to_demo.py), not a `--traj_path` option, so
the `--traj_path` form is unrecognized. The documented string also glues the
flag to the placeholder with no space.

Use the positional form `sweagent traj-to-demo <path to trajectory file.traj>`
so the command runs as written. The following run-replay step is left
unchanged: run-replay is pydantic-settings based and does expose a real
`--traj_path` field.

Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
2026-07-07 11:56:44 -04:00
Anas Khan 10ab1a9789 fix: normalize Content-Type parameters in multimodal image processing (#1446)
SWEBenchMultimodalProblemStatement._download_and_convert_image compared the
full lowercased Content-Type header against VALID_IMAGE_MIME_TYPES. When a
server returns a valid image with media type parameters (for example
"Content-Type: image/png; charset=utf-8", which is legal per RFC 9110), the
string "image/png; charset=utf-8" is not in the allowed set, so the image is
logged as an unsupported MIME type and silently dropped from the problem
statement.

Strip the media type parameters (split on ";", strip, lowercase) before the
existing image/jpg -> image/jpeg normalization and the membership check, so the
bare media type is validated and used in the encoded data URI. Behavior for
unsupported types, size limits, empty images, and network failures is
unchanged.

Add a regression test covering a Content-Type header with a charset parameter.

Closes #1441

Signed-off-by: Anas Khan <83116240+anxkhn@users.noreply.github.com>
2026-07-07 10:34:16 -04:00
Anas Khan 0363b9ef78 docs: fix multimodal disable-image-processing flag hierarchy (#1445)
The multimodal docs told users to run
`--templates.disable_image_processing=true` to disable image processing.
That flag is rejected by the CLI: `disable_image_processing` lives on
TemplateConfig, which is only reachable under `agent.templates`, and the
top-level run config sets `extra="forbid"`, so the unprefixed flag fails
parsing with `unrecognized arguments`.

Add the missing `agent.` prefix so the documented command matches the
config hierarchy (and the correct YAML shown earlier on the same page):
`--agent.templates.disable_image_processing=true`.
2026-07-06 12:03:08 -04:00
Anas Khan 5f40e63360 fix: strip .git suffix when parsing github repo url (#1442)
_parse_gh_repo_url left a trailing .git on the repo name, so a clone
URL like https://github.com/SWE-agent/SWE-agent.git produced
repo_name SWE-agent__SWE-agent.git, polluting instance ids and output
dir names. Strip it off the repo group and extend the test.
2026-07-01 11:40:12 -04:00
pre-commit-ci[bot] d336402e7f chore: update pre-commit hooks (#1438)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.18 → v0.15.20](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.18...v0.15.20)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-06-30 13:32:38 -04:00
pre-commit-ci[bot] 088b5f1c18 chore: update pre-commit hooks (#1427)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.17 → v0.15.18](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.17...v0.15.18)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-06-29 12:01:06 -04:00
Taksh Kothari 6cd876a84a Fix NameError when tool call arguments are already a dict (#1430)
LiteLLM sometimes delivers parsed arguments as a dict instead of a
JSON string; assign values in that branch before validation.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 11:58:34 -04:00
dependabot[bot] eb9441e774 Chore(deps): Bump actions/cache from 5 to 6 (#1437)
Bumps [actions/cache](https://github.com/actions/cache) from 5 to 6.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-29 11:57:26 -04:00
dependabot[bot] 8474ecaad1 Chore(deps): Bump actions/checkout from 6 to 7 (#1426)
Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-29 11:57:10 -04:00
Taksh Kothari 5582913786 fix(tools): omit empty parameters.properties for Gemini (#1431)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 11:56:46 -04:00
Taksh Kothari 0fbd4837c8 Pin litellm to a minimum safe version. (#1432)
Require litellm>=1.44.12 to avoid resolving to versions with known
CVEs while keeping existing exclusions for broken releases.

Fixes #1429.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-29 11:56:35 -04:00
pre-commit-ci[bot] abd7d69724 chore: update pre-commit hooks (#1424)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.16 → v0.15.17](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.16...v0.15.17)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-06-16 18:02:16 -07:00
Taksh Kothari c53556f61b fix: stop printing full patch in submit to avoid pexpect timeouts (#1423)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-10 15:08:27 -07:00
dependabot[bot] a3d018f345 Chore(deps): Bump codecov/codecov-action from 6.0.1 to 7.0.0 (#1421)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 6.0.1 to 7.0.0.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v6.0.1...v7.0.0)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-09 19:52:25 -07:00
pre-commit-ci[bot] f05382f254 chore: update pre-commit hooks (#1422)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.15 → v0.15.16](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.15...v0.15.16)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-06-09 18:09:06 -07:00
Taksh Kothari 10e3e76e62 fix: insert after target line instead of before it (#1416)
Stop subtracting 1 from the 1-indexed line argument before calling
WindowedFile.insert().

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-05 21:23:40 -04:00
yanzz df63c382ab Fix Python 3.5 compatibility in edit_anthropic tool (#1345)
* Fix Python 3.5 compatibility in edit_anthropic tool

- Convert variable type annotations (PEP 526) to comment-style annotations
- Convert f-strings (PEP 498) to .format() calls for Python 3.5 compatibility
- Maintain all existing functionality while supporting older Python versions
- Fixes issue where edit_anthropic tool fails with SyntaxError on Python 3.5

Addresses #1313

* Fix syntax in debug print statements for Python 3.5 compatibility

- Fix invalid format() syntax in commented-out debug statements
- Change from format(var=) to "var={}".format(var) for valid Python syntax

---------

Co-authored-by: paipeng-quiver <pai@quiver.ai>
Co-authored-by: Kilian Adriano Lieret <klieret@meta.com>
2026-06-05 20:50:53 -04:00
pre-commit-ci[bot] 4c96ef8cf3 chore: update pre-commit hooks (#1377)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.7 → v0.15.15](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.7...v0.15.15)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-06-05 20:50:39 -04:00
dependabot[bot] 62a67038d9 Chore(deps): Bump codecov/codecov-action from 5.5.2 to 6.0.1 (#1405)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.5.2 to 6.0.1.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v5.5.2...v6.0.1)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-version: 6.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-06-05 20:50:30 -04:00
Yijin Zhou 5eb4100df5 Fix batch repo names containing github (#1406)
Co-authored-by: zhouyijin <zhouyijin@meituan.com>
2026-06-05 20:42:24 -04:00
飘落叶 da31587839 fix: replace expired Slack invite link with workspace URL (#1413)
The shared_invite link (zt-36pj9bu5s) expired — Slack kills these
after 30 days. Pointed all three occurrences at the workspace URL
instead, which doesn't expire.

Fixes #1383
2026-05-31 12:11:13 -04:00
Kilian Adriano Lieret 0f4f3bba99 fix(deps): exclude compromised litellm versions 1.82.7 and 1.82.8 2026-03-24 13:18:30 -04:00
pre-commit-ci[bot] 0a8063075e chore: update pre-commit hooks (#1374)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.6 → v0.15.7](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.6...v0.15.7)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-03-23 22:48:12 -04:00
pre-commit-ci[bot] bfdcfa5f6c chore: update pre-commit hooks (#1368)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.5 → v0.15.6](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.5...v0.15.6)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-03-16 18:42:48 -04:00
Kilian Lieret 63297682db Doc: Migration in readme links to gh, not website 2026-03-16 13:42:49 -04:00
Shivam Tiwari 78c1a06fdf fix(run): use Fix: threading.local() in SaveApplyPatchHook to prevent race condition in multi-worker batch runs (fixes #1284) (#1366)
Root cause: on_instance_start stored env and problem_statement as plain instance attributes. With ThreadPoolExecutor, a shared hook instance was written by worker B before worker A's on_instance_completed ran, causing the wrong instance_id to be used and patches saved to the wrong directory.

Fix: store per-instance state in threading.local() so each worker thread gets an isolated copy.
2026-03-16 13:36:16 -04:00
pre-commit-ci[bot] e72a7e4660 chore: update pre-commit hooks (#1358)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.4 → v0.15.5](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.4...v0.15.5)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-03-09 19:08:35 -04:00
pre-commit-ci[bot] 21b5a6a453 chore: update pre-commit hooks (#1354)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.2 → v0.15.4](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.2...v0.15.4)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-03-02 17:43:29 -05:00
dependabot[bot] 428666690a Chore(deps): Bump actions/upload-artifact from 6 to 7 (#1353)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-03-02 11:10:23 -05:00
Ofir Press 602b8accb8 Update README.md (#1351) 2026-02-27 17:51:46 -05:00
Ofir Press 9e568d6791 Add files via upload (#1350) 2026-02-27 16:52:30 -05:00
Ofir Press 0171eb4467 Update README.md (#1349) 2026-02-27 12:24:22 -05:00
Kilian Adriano Lieret c1a9b34df5 Doc: Add more forwarding to mini-swe-agent 2026-02-26 10:58:45 -05:00
Kilian Adriano Lieret e877f6270b Doc: Add popup referring to mini-swe-agent 2026-02-26 10:54:09 -05:00
pre-commit-ci[bot] 824bd883fb chore: update pre-commit hooks (#1347)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.1 → v0.15.2](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.1...v0.15.2)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-02-23 20:02:56 -05:00
Mike Lambert ed7dd55cbc feat: add User-Agent header for LLM API calls (#1346)
Adds a `User-Agent: swe-agent/<version>` header to all LLM API calls
made via litellm. This helps API providers identify traffic from
SWE-agent for analytics and debugging.

- Uses copy.deepcopy() for completion_kwargs to avoid mutating the
  original config when extra_headers are present
- Respects user-provided User-Agent headers (no override)
- Adds tests for default header, preserved custom header, and
  coexistence with other extra_headers
2026-02-23 13:43:59 -05:00
Muhammed Karamuk bb81cc9901 feat: add private repository support for SWE-smith instances (#1343)
* feat: add private repository support for SWE-smith instances

Co-authored-by: reisepass <1474408+reisepass@users.noreply.github.com>

* refactor: replace SSH key auth with GITHUB_TOKEN for private SWE-smith repos

---------

Co-authored-by: reisepass <1474408+reisepass@users.noreply.github.com>
Co-authored-by: Rb <rubenwolff@gmail.com>
2026-02-23 10:45:37 -05:00
pre-commit-ci[bot] 39e2931a81 chore: update pre-commit hooks (#1342)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.15.0 → v0.15.1](https://github.com/astral-sh/ruff-pre-commit/compare/v0.15.0...v0.15.1)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-02-16 20:52:53 -05:00
pre-commit-ci[bot] 77f0a5ea88 chore: update pre-commit hooks (#1340)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.14.14 → v0.15.0](https://github.com/astral-sh/ruff-pre-commit/compare/v0.14.14...v0.15.0)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-02-09 21:33:51 -05:00
dependabot[bot] 6d21f3de1c Chore(deps): Bump actions/upload-artifact from 5 to 6 (#1339)
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 5 to 6.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-09 11:43:48 -05:00
dependabot[bot] 32fde4ec79 Chore(deps): Bump actions/cache from 4 to 5 (#1320)
Bumps [actions/cache](https://github.com/actions/cache) from 4 to 5.
- [Release notes](https://github.com/actions/cache/releases)
- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)
- [Commits](https://github.com/actions/cache/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 22:53:33 -08:00
dependabot[bot] 9921271472 Chore(deps): Bump actions/upload-artifact from 4 to 5 (#1312)
* Chore(deps): Bump actions/upload-artifact from 4 to 5

Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-02-06 22:53:15 -08:00
Joshua Shanks 7edbd19bd6 Doc: Improve reference documentation with descriptions and fix links (#1222)
* Doc: Improve reference documentation with descriptions and fix links

- Add page titles and descriptions to reference docs
- Document ShellAgentConfig in agent configuration
- Add missing model configuration classes
- Fix relative link syntax in bundle and tools config
- Improve documentation consistency across reference pages

Signed-off-by: Joshua Shanks <jjshanks@gmail.com>

* Doc: Address review comments on reference documentation

- Update ShellAgent description to clarify it's invoked with `sweagent sh` for interactive workflows
- Move model config classes (HumanModelConfig, HumanThoughtModelConfig, ReplayModelConfig, InstantEmptySubmitModelConfig) from API LMs section to group with their corresponding model classes in testing sections
- Simplify parsers.md description to concisely explain action parser functionality
- Update template_config.md to better describe how templates format inputs/outputs for LM queries

---------

Signed-off-by: Joshua Shanks <jjshanks@gmail.com>
2026-02-06 22:49:46 -08:00
dependabot[bot] c9b40de2d4 Chore(deps): Bump codecov/codecov-action from 5.5.1 to 5.5.2 (#1321)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 5.5.1 to 5.5.2.
- [Release notes](https://github.com/codecov/codecov-action/releases)
- [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md)
- [Commits](https://github.com/codecov/codecov-action/compare/v5.5.1...v5.5.2)

---
updated-dependencies:
- dependency-name: codecov/codecov-action
  dependency-version: 5.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-02-06 22:39:00 -08:00
Rens ba5dd9ccf6 Doc: fix typo in docs (#1328) 2026-02-06 22:38:42 -08:00
pre-commit-ci[bot] 729961c1aa chore: update pre-commit hooks (#1305)
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.13.0 → v0.14.14](https://github.com/astral-sh/ruff-pre-commit/compare/v0.13.0...v0.14.14)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
2026-02-06 22:35:33 -08:00