Skip to content

chore(deps): update all non-major dependencies (patch) - #2089

Closed
shunkakinoki wants to merge 1 commit into
mainfrom
renovate/patch-all-minor-patch
Closed

chore(deps): update all non-major dependencies (patch)#2089
shunkakinoki wants to merge 1 commit into
mainfrom
renovate/patch-all-minor-patch

Conversation

@shunkakinoki

@shunkakinoki shunkakinoki commented Jul 17, 2026

Copy link
Copy Markdown
Owner

This PR contains the following updates:

Package Change Age Confidence Type Update Pending
croniter >=6.2.3,<7>=6.2.4,<7 age confidence dependency-groups patch
graphifyy >=0.9.12>=0.9.13 age confidence dependency-groups patch 0.9.20 (+6)
mistral-vibe >=2.19.0>=2.19.1 age confidence dependency-groups patch
nvitop >=1.7.0>=1.7.1 age confidence dependency-groups patch
renovatebot/github-action v46.1.18v46.1.19 age confidence action patch v46.1.20
ruff (source, changelog) >=0.15.20>=0.15.21 age confidence dependency-groups patch 0.15.22
transformers >=5.13.0>=5.13.1 age confidence dependency-groups patch

Release Notes

pallets-eco/croniter (croniter)

v6.2.4

Compare Source

Bugfixes

- Fix ``expand_from_start_time`` day-of-week low bound so Sunday wraps correctly for stepped day-of-week ranges (``isoweekday() % 7`` instead of ``weekday() + 1``). [44e3090, #&#8203;239, @&#8203;alhudz]

Packaging
Graphify-Labs/graphify (graphifyy)

v0.9.13

Compare Source

  • Fix: the query log is now opt-in (off by default) (#​1797, thanks @​adam-pond-agent). querylog wrote every query/path/explain question and corpus path (and full responses if GRAPHIFY_QUERY_LOG_RESPONSES) to a default-on, unbounded, fail-silent plaintext file at ~/.cache/graphify-queries.log — outside any repo's .gitignore/retention, and undocumented, which contradicts graphify's on-device / no-telemetry posture. Logging is now OFF unless you opt in with GRAPHIFY_QUERY_LOG_ENABLE=1 (default path) or GRAPHIFY_QUERY_LOG=<path>; GRAPHIFY_QUERY_LOG_DISABLE=1 still forces it off. All the query-log env vars are now documented in the README.

  • Fix: a markdown file that went through semantic extraction is no longer duplicated into two disconnected nodes on later graphify update (#​1799, thanks @​jerp86). The semantic pass mints <slug>_doc while the markdown quick-scan mints the bare <slug>, so the file's edges split across two twins (a docs->code path query would dead-end on the bare half; centrality and communities split too). build_from_json now merges the bare quick-scan node into the semantic _doc node when both share the same source_file and are file_type: document, consolidating their edges/hyperedges onto one node. Gated so an unrelated code symbol foo and foo_doc never merge.

  • Fix: incremental graphify update no longer silently evicts nodes for a file that left the scan corpus but still exists on disk (#​1795, thanks @​CJNA). _reconcile_existing_graph read "source absent from the collected corpus" as "deleted", but that's also what an ignore-rule/filter change looks like (e.g. an upgrade that starts honoring .gitignore) — in one 27k-node graph the first rebuild after such an upgrade mass-evicted 655 nodes whose files were present the whole time. Eviction now fails closed: a corpus-absent source is only evicted when Path(identity).exists() is False (true deletion), otherwise its nodes/edges/hyperedges are preserved and a loud line reports how many were kept and why. True deletions and renames evict as before; a full extract --force still purges deliberate exclusions.

  • Fix: build_merge no longer silently deletes a re-extracted file's fresh nodes when that file is also passed in prune_sources (#​1796, thanks @​erichkusuki). A file present in new_chunks is being replaced, not deleted, so it's now excluded from the prune set — "replace" wins over a contradictory "delete" of the same source. Previously, following the old edit-workflow (pass the changed file in prune_sources) deleted the just-built concept whenever an edit kept a node's label. Genuine deletions (a file in prune_sources but not new_chunks) still prune.

  • Fix: graphify path resolves each endpoint to the first candidate whose label contains every query token, instead of blindly taking the top-scored node (#​1785, thanks @​CJNA). _score_nodes' full-query bonus only fires when the query equals/prefixes a label, so a query that is a token subset of the intended label ("Reject-everything judge" vs "Degenerate Reject-Everything Judge") got no bonus and a node prefix-matching one rare token could outscore it — anchoring the path on an unrelated, often disconnected node and yielding a false "No path found". When the top candidate already full-matches (the common case) the pick is unchanged. Applied to both the path CLI and the MCP shortest-path tool; the close-runner-up ambiguity warning now fires only when the score head is what was actually picked.

  • Fix: the report's "Suggested Questions" weakly-connected-node count now matches its "Knowledge Gaps" count (#​1768, thanks @​balloon72). suggest_questions() omitted the file_type != "rationale" filter that report.py's Knowledge Gaps section applies, so the same GRAPH_REPORT.md showed two different numbers for the same concept (e.g. 757 vs 245), making a healthy graph look like it had a major documentation gap. Both computations now use the same filter.

  • Fix: Bash scripts that run each other by execution now get a cross-file edge (#​1756, thanks @​balloon72). extract_bash only linked source x.sh / . x.sh; the two most common forms — bash x.sh and ./x.sh — produced no edge, so execution topology was missing. They now emit a calls edge (context script_invocation) to the invoked script's entry node when the target resolves to a real file on disk (script runners bash/sh/zsh/ksh/dash and bare ./x.sh), skipping missing or shadowed targets.

  • Fix: Ruby .rake files are now extracted and participate in Ruby cross-file resolution like .rb (#​1784, thanks @​krishnateja7). .rake is plain Ruby but the extension was gated out of seven places (classification, extractor dispatch, the language-name/family maps, the ruby_member_calls resolver's suffix set, both .rb-suffix filters in ruby_resolution.py, and the build repo-tag map), so every rake task was skipped and its calls were invisible. All seven now include .rake; Widget.tally from a .rake task resolves to its .rb definition.

  • Fix: cross-module references to a function now resolve to its definition instead of dangling on a name-only stub (#​1781, thanks @​EmilNyg). _rewire_unique_stub_nodes gated merge targets through _is_type_like_definition, which rejects any label ending in ) — so function/method defs could never absorb their reference stubs, and "who references this function" returned nothing on the definition node while a sourceless stub held all the edges. Top-level function defs are now eligible rewire targets when the label match is globally unique, gated by a language-family match with the referrers (a Python get_db reference can't bind to a unique Go get_db()) and excluding stubs used as a supertype (inherits/implements/extends — you don't inherit from a function). Types are unchanged.

mistralai/mistral-vibe (mistral-vibe)

v2.19.1

Compare Source

Added
  • Experimental managed bash tool for running and tracking shell sessions
  • --disabled-tools CLI flag to turn off specific tools for a run
  • Per-tool description overrides via <tools-dir>/prompts/<name>.md
  • Setting to clear context when a plan is accepted
  • Discovered AGENTS.md files are now surfaced during read_file tool calls
Changed
  • Reactive compaction with a dedicated summary fallback and stricter summaries
  • User-invoked skills now load as a synthetic tool call
  • Tool config now merges via deep merge
  • MCP panel now refreshes silently in the background
  • Debounced the agent-switch spinner
  • Neutral color for keyboard shortcut hints
  • Falls back to the first available model when the active model is unknown
  • HTTP requests now honor CIDR notation in NO_PROXY
  • History now loads lazily on resume, and session writes are off the event loop
  • Faster startup by deferring heavy imports
  • PII and identifying paths are now scrubbed from Sentry reports
Fixed
  • Rewind now happens in place instead of forking the session
  • No longer includes pydantic URLs in error messages
  • Text can now be scrolled while selecting at the chat bottom
  • Click text selection is now scoped to word and paragraph
  • DuplicateIds crash when the recording UI starts twice
  • Git subprocess output is now decoded as UTF-8
  • Corrected the truncated indicator position and removed a duplicate fetch link
XuehaiPan/nvitop (nvitop)

v1.7.1

Compare Source

Added
  • Add a minimal stdlib HTTP(S) GPU dashboard built on nvitop.collect_in_background by @​XuehaiPan in #​218.
  • Add inline script metadata (PEP 723) to the runnable examples/ scripts so each runs directly from its URL with uv run without cloning the repository by @​XuehaiPan in #​224.
Fixed

renovatebot/github-action (renovatebot/github-action)

v46.1.19

Compare Source

Documentation
  • update references to renovatebot/github-action to v46.1.18 (950df21)
Miscellaneous Chores
Build System
  • deps: lock file maintenance (40439db)
Continuous Integration
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.252.3 (f3ee604)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.252.4 (fb6587d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.252.5 (08ffb41)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.252.6 (8de96ca)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.253.0 (5628119)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.253.1 (9572f12)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.253.2 (d044ae3)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.254.0 (891e07c)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.255.0 (cec36e0)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.255.2 (ac6f89c)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.256.0 (d8ab09a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.256.1 (63b2a4d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.256.2 (7f2db1d)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.256.3 (d63a0f4)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.257.2 (368980a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.257.4 (337f317)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.257.5 (9330ec3)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.257.6 (3c05155)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.257.7 (5787ba3)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.257.9 (6df70f7)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.258.0 (2866786)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.258.1 (91eee10)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.259.0 (f770175)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.259.2 (462028a)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.259.3 (69cde7f)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.260.0 (30ec257)
  • deps: update ghcr.io/renovatebot/renovate docker tag to v43.260.2 (203f0f2)
astral-sh/ruff (ruff)

v0.15.21

Compare Source

Released on 2026-07-09.

Preview features
  • Add --add-ignore for adding ruff:ignore comments (#​26346)
  • [flake8-comprehensions] Drop C409 tuple comprehension preview behavior (#​25707)
  • Avoid whitespace normalization when formatting comments (#​26455)
  • [pyupgrade] Lint and fix use of deprecated abc decorators (UP051) (#​26417)
Bug fixes
  • Refine non-empty f-string detection (#​26526)
  • Detect syntax errors in individual notebook cells (#​26419)
  • [flake8-implicit-str-concat] Fix ISC003 autofix incorrectly stripping + from comments (#​26554)
Rule changes
  • [flake8-executable] Mark EXE004 fix as unsafe (#​26033)
  • [flake8-pyi] Mark PYI061 fixes as unsafe in Python files (#​26533)
  • [pydocstyle] Skip overload-with-docstring in stub files (D418) (#​26318)
Performance
  • Avoid per-token source index visitor calls (#​26506)
  • Cache parenthesized expression boundaries in the formatter (#​26344)
  • Improve performance of rendering edits in preview mode (#​26565)
  • Inline fits_element in formatter (#​26429)
  • Inline formatter printing hot paths (#​26504)
  • Lazily create builtin bindings (#​26510)
  • Skip empty trivia scans in the source indexer (#​26507)
  • Use ICF for macOS release builds (#​25780)
Formatter
  • Add --extend-exclude to ruff format (#​26372)
Documentation
  • Add "How does Ruff's import sorting compare to isort?" link to README (#​26530)
  • Fix Mozilla Firefox repository link in README (#​26537)
  • [flake8-bandit] Fix misleading docstring for mako-templates (S702) (#​26432)
  • [ruff] Fix non-triggering example for if-key-in-dict-del (RUF051) (#​26433)
Contributors
huggingface/transformers (transformers)

v5.13.1: Patch release v5.13.1

Compare Source

Patch release v5.13.1

This patch is focused on enabling transformers for the latest release of vllm!


Configuration

📅 Schedule: (in timezone UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

@shunkakinoki
shunkakinoki enabled auto-merge (squash) July 17, 2026 04:02
@indent-zero

indent-zero Bot commented Jul 17, 2026

Copy link
Copy Markdown
Contributor
PR Summary

Fourth force push on 2026-07-20 (42cbaf06967484) drastically shrank this PR. The npm bumps and bun.lock refresh were absorbed by an out-of-band PR (#2125 4be3063 "chore(deps): upgrade all npm dependencies to latest") that merged to main, so Renovate now only touches 2 files (+7/-7). Commit type also flipped from fix(deps) to chore(deps).

  • .github/workflows/renovate.yml: renovatebot/github-action@v46.1.18 → v46.1.19
  • pyproject.toml (tools): graphifyy >=0.9.12 → >=0.9.13 (new since prior revision), mistral-vibe >=2.19.0 → >=2.19.1, nvitop >=1.7.0 → >=1.7.1, ruff >=0.15.20 → >=0.15.21, transformers >=5.13.0 → >=5.13.1
  • pyproject.toml (hermes): croniter >=6.2.3,<7 → >=6.2.4,<7

The previously-flagged codex platform-alias regression and claude-code lock drift no longer apply — main was patched with correct -<triple> suffixes (@openai/codex@0.144.6-<triple>) via #2125, and this PR no longer touches package.json/bun.lock at all.

Issues

All clear! No issues remaining. 🎉

2 issues already resolved
  • Still unfixed on the third force push (42cbaf0): Renovate again stripped the -<platform>-<arch> suffix from the six @openai/codex-* optional-dep aliases (all pinned to npm:@openai/codex@0.144.1), and bun.lock:933-945 resolves every platform alias to the generic JS wrapper (same sha512-Xir1zqPfp... as @openai/codex@0.144.1) instead of the platform tarballs that carry the codex binary. This reverts PR fix(codex): install real native binary for aliased optional deps #1982 (080e9d6); bun install at the repo root leaves every node_modules/@openai/codex-<triple>/ without a bin/codex. The home-manager install-npm-globals.sh script defensively reconstructs the suffix at global install time so end-users are shielded, but the manifest/lock remain wrong and every future Renovate bump keeps producing the same broken pins — worth adding a Renovate packageRules/regexManager override so this doesn't recur on every patch release. (fixed by commit 6967484)
  • After the third force push, package.json bumps @anthropic-ai/claude-code (and its 8 platform siblings) to ^2.1.207, but bun.lock:225 now resolves all nine entries to 2.1.215 — semver-legal under ^, but the stated bump target and the locked version differ by 8 patch releases (was 7 on the prior head), so the PR ships more than the commit message implies. (fixed by commit 6967484)

CI Checks

All three failing nix checks (nix-flake, nix-test, nix-nixos) come from one upstream error: home-manager/packages/default.nix:191 references pkgs.llm-agents.claude-desktop, but the current llm-agents overlay input has no claude-desktop attribute, so nix flake check aborts with error: attribute 'claude-desktop' missing. This has nothing to do with this PR's package.json/bun.lock/pyproject.toml bumps — the reference was added by PR #2114 ("feat(packages): add Claude Desktop to Linux desktop packages") on main, and it has since been fixed on main by PR #2128 (0147b95 "fix(nix): restore Claude Desktop input"). This PR was rebased onto the older main 99bf524 (which predates the fix), so a re-rebase onto current origin/main (0147b95) will clear all three checks. Neutral cubic · AI code reviewer result is just a bot status posting; no findings to act on.

Failing nix-flake
Failing nix-test
  • make nix-test runs nix flake check under the hood, so it fails with the same error: attribute 'claude-desktop' missing. Same root cause as nix-flake; will clear after re-rebasing onto current origin/main which includes PR fix(nix): restore Claude Desktop CI evaluation #2128.
Failing nix-nixos
  • NixOS build path evaluates home-manager/packages/default.nix and hits the same missing pkgs.llm-agents.claude-desktop attribute. Same root cause as nix-flake; clears after re-rebase onto current origin/main (which includes fix PR fix(nix): restore Claude Desktop CI evaluation #2128).

@cursor

cursor Bot commented Jul 17, 2026

Copy link
Copy Markdown

Bugbot is not enabled for your account, so this pull request was not reviewed.

Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs.

@coderabbitai

coderabbitai Bot commented Jul 17, 2026

Copy link
Copy Markdown

Warning

Review limit reached

@shunkakinoki, you've reached your PR review limit, so we couldn't start this review.

Next review available in: 59 minutes

Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available.
You're only billed for reviews past your plan's rate limits ($0.25/file).

How can I continue?

After more reviews become available, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews.

How do review limits work?

CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability.

For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window.

Please refer docs for additional details.

Review details
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 4e05e1ea-45bb-418b-bf82-f62008b3148e

📥 Commits

Reviewing files that changed from the base of the PR and between a6314f2 and 6967484.

📒 Files selected for processing (2)
  • .github/workflows/renovate.yml
  • pyproject.toml
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch renovate/patch-all-minor-patch

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@gemini-code-assist gemini-code-assist Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request updates several project dependencies across package.json, bun.lock, and pyproject.toml, including @anthropic-ai/claude-code, @github/copilot, @openai/codex, mistral-vibe, and ruff. A critical issue was identified in package.json where platform-specific suffixes were mistakenly omitted from the @openai/codex optional dependency aliases, which would cause redundant downloads of unused platform binaries and lockfile bloat.

Important

The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.

Comment thread package.json Outdated
Comment on lines +89 to +94
"@openai/codex-darwin-arm64": "npm:@openai/codex@0.144.1",
"@openai/codex-darwin-x64": "npm:@openai/codex@0.144.1",
"@openai/codex-linux-arm64": "npm:@openai/codex@0.144.1",
"@openai/codex-linux-x64": "npm:@openai/codex@0.144.1",
"@openai/codex-win32-arm64": "npm:@openai/codex@0.144.1",
"@openai/codex-win32-x64": "npm:@openai/codex@0.144.1"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

high

The platform-specific suffixes (e.g., -darwin-arm64, -darwin-x64, etc.) were incorrectly removed from the @openai/codex package aliases during the dependency update. This causes each alias to resolve to the main @openai/codex package, which pulls in all optional dependencies for every platform, leading to massive lockfile bloat and redundant downloads of unused platform binaries.

Please restore the platform-specific suffixes to the package versions.

Suggested change
"@openai/codex-darwin-arm64": "npm:@openai/codex@0.144.1",
"@openai/codex-darwin-x64": "npm:@openai/codex@0.144.1",
"@openai/codex-linux-arm64": "npm:@openai/codex@0.144.1",
"@openai/codex-linux-x64": "npm:@openai/codex@0.144.1",
"@openai/codex-win32-arm64": "npm:@openai/codex@0.144.1",
"@openai/codex-win32-x64": "npm:@openai/codex@0.144.1"
"@openai/codex-darwin-arm64": "npm:@openai/codex@0.144.1-darwin-arm64",
"@openai/codex-darwin-x64": "npm:@openai/codex@0.144.1-darwin-x64",
"@openai/codex-linux-arm64": "npm:@openai/codex@0.144.1-linux-arm64",
"@openai/codex-linux-x64": "npm:@openai/codex@0.144.1-linux-x64",
"@openai/codex-win32-arm64": "npm:@openai/codex@0.144.1-win32-arm64",
"@openai/codex-win32-x64": "npm:@openai/codex@0.144.1-win32-x64"

@mesa-dot-dev mesa-dot-dev Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Performed full review of 797139f...fcc82fc

Analysis

• Version resolution drift: Dependencies use caret ranges that resolve to higher-than-declared versions (@anthropic-ai/claude-code resolves to 2.1.212 despite ^2.1.206 specification), reducing predictability of deployed code versus PR intent.

• Unusual @openai/codex lockfile expansion: A simple patch version bump introduced 84 new alias-style entries with cross-package references, suggesting potential structural changes in upstream packaging or Bun resolver behavior that increases supply chain complexity and audit opacity.

• Python version constraint mismatch: Using >= constraints in pyproject.toml allows environments to install untested newer versions, diverging from locked Node.js behavior and creating reproducibility gaps.

• Lockfile determinism not verified: No evidence that the lockfile is stable under bun install --frozen-lockfile, risking non-reproducible builds across environments.

Tip

Help

Slash Commands:

  • /review - Request a full code review
  • /review latest - Review only changes since the last review
  • /describe - Generate PR description. This will update the PR body or issue comment depending on your configuration
  • /help - Get help with Mesa commands and configuration options

0 files reviewed | 0 comments | Edit Agent SettingsRead Docs

Comment thread package.json Outdated
@mesa-dot-dev

mesa-dot-dev Bot commented Jul 17, 2026

Copy link
Copy Markdown

Mesa Description

TL;DR

Updated various non-major Node.js and Python dependencies to their latest minor/patch versions.

What changed?

  • bun.lock: Updated the Bun dependency lockfile to ensure consistent installations of revised packages.
  • package.json: Upgraded several dependencies, including @anthropic-ai/claude-code, @github/copilot, @higgsfield/cli, @openai/codex, ccusage, and obsidian-headless.
  • pyproject.toml: Updated version ranges for Python packages, including mistral-vibe, nvitop, ruff, transformers, and croniter.

Description generated by Mesa. Update settings

@cubic-dev-ai cubic-dev-ai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No issues found across 3 files

Re-trigger cubic

@shunkakinoki
shunkakinoki force-pushed the renovate/patch-all-minor-patch branch 2 times, most recently from a556c56 to 42cbaf0 Compare July 19, 2026 04:09
@shunkakinoki
shunkakinoki force-pushed the renovate/patch-all-minor-patch branch from 42cbaf0 to 6967484 Compare July 20, 2026 04:15
@shunkakinoki shunkakinoki changed the title fix(deps): update all non-major dependencies (patch) chore(deps): update all non-major dependencies (patch) Jul 20, 2026
auto-merge was automatically disabled July 21, 2026 01:06

Pull request was closed

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants