Skip to content

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

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

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

Conversation

@shunkakinoki

@shunkakinoki shunkakinoki commented Aug 24, 2026

Copy link
Copy Markdown
Owner

This PR contains the following updates:

Package Change Age Confidence
agentsview >=0.37.3>=0.37.5 age confidence
graphifyy >=0.9.44>=0.9.47 age confidence

Release Notes

kenn-io/agentsview (agentsview)

v0.37.5

Compare Source

  • Prefer richer agy-reader trajectory sidecars when parsing Antigravity IDE sessions.

  • Remove recommended-plugin context injected into Codex sessions.

  • Include overnight session activity in date-filtered results.

v0.37.4

Compare Source

  • Add incremental HTTP remote sync with persistent per-host mirrors.

  • Include GPT-5.6 Sol, Terra, and Luna pricing.

  • Show hidden defaults in session list CLI output.

Graphify-Labs/graphify (graphifyy)

v0.9.47

Compare Source

  • Fix: extraction now bisects a file chunk on timeout instead of failing the whole chunk, so one slow file no longer drops its chunk-mates from the graph; recognized timeouts (subprocess, SDK, and botocore read/connect) route through the same bounded split-and-merge path as context-window-exceeded errors, and a single unsplittable file that times out is left unstamped and retried next run (#​2866, thanks @​hopstreax).
  • Fix: the cache no longer collapses symlinks when keying files, so a symlink alias and its target get distinct identities and one no longer displaces the other from the graph on a warm cache; the detect-layer containment guard that resolves paths to block symlink escape is unchanged (#​2832, thanks @​oleksii-tumanov).
  • Fix: graphify extract --out <dir> no longer writes converted Office/Google-Workspace sidecars back into the scanned source tree; sidecar writes go through the cache root while the content hash stays anchored to the scan root, so a read-only or pinned checkout stays clean (#​2787, thanks @​hopstreax).
  • Fix: the git-hook out-of-project read guard no longer misclassifies a rooted-but-driveless path (\foo\bar) as cwd-relative on Windows, where such a path resolves against the current drive root and is actually outside the project; POSIX behaviour is unchanged (#​2795, thanks @​abhay-codes07).
  • Fix: the partial-parse warning no longer ends with a hardcoded citation to the closed Kotlin-specific issue #​2551 (which misdirected reporters of unrelated failures); it now reports the surviving symbol count so a total-loss file reads differently from a partially-recovered one (#​2788, thanks @​abhay-codes07).
  • Fix: Obsidian export now keeps non-ASCII letters (Hangul, CJK, Cyrillic, accented Latin) in community tags instead of collapsing every non-Latin community to the same underscore tag, and the graph-view colour groups query the identical tag so colours match again (#​2862, thanks @​josh-leung-KR).
  • Feature: JavaScript/TypeScript factory functions that assign callable members to a local object literal (const api = {}; api.foo = fn) now keep those members in the graph — the API object is modeled beneath its factory and the assigned functions attach as methods, including arrow-function assignments and their intra-factory call edges. The owner is minted only for identifiers proven to be object-literal bindings in the enclosing function, so arbitrary receivers do not reintroduce the phantom-owner flood, and the factory's contains edge is emitted once no matter how many methods hang off the object (#​2745, thanks @​rajanpanth).
  • Fix: graph.json field order is now stable across a read-rebuild round-trip, so re-running graphify update on an unchanged graph produces a byte-identical file instead of reshuffling node and link keys (#​2582, thanks @​C0KERNEL).
  • Fix: graphify query now names the graph it opened and its node count at the head of the answer (relative to the CWD when the graph is underneath it, absolute otherwise), so a query run from a parent project no longer silently answers from the wrong corpus with no indication which graph was used (#​2789, thanks @​abhay-codes07).
  • Fix: the claude backend no longer crashes with AttributeError: 'ThinkingBlock' when an extended-thinking response leads with a thinking block; the first text block is read instead (#​2697, thanks @​mdshzb04).
  • Fix: graphify update / save_manifest no longer rewrites manifest.json timestamps on a no-op run, so graphify-out/ stops showing as dirty (and stops producing a trailing graph commit) when nothing changed; a genuine change still updates and persists (#​2838, thanks @​hopstreax).
  • Fix: a C# 12 primary constructor's parameters are now walked, so class Svc(IRepo repo) emits the references edge to IRepo and calls through repo resolve — previously the class silently dropped its dependency; built-in and type-parameter types are not fabricated (#​2829, thanks @​brobl2008).
  • Fix: AST-derived INFERRED edges now carry a rubric confidence_score keyed to the relation (uses 0.95, indirect_call/unresolved cross-file calls 0.85) instead of landing at the rubric-forbidden 0.5 or a flat 0.8; the INFERRED default moves 0.5→0.55 so every score-less INFERRED edge is on the discrete rubric set (#​2813, thanks @​abhay-codes07).
  • Fix: a legacy graph.json that stored a numeric edge confidence (from a pre-enum version) no longer warns once per edge on every incremental reload; the numeric value is normalized to the INFERRED tag with the original float preserved in confidence_score (thanks @​Trantor-develops).

v0.9.46

Compare Source

  • Fix: node-id normalization is now caseless-stable for combining-mark sequences — casefold and NFKC don't commute, so a single pass left normalize_id(s) != normalize_id(s.casefold()) for inputs like Greek ypogegrammeni followed by a combining accent; normalization now iterates casefold+NFKC to a fixpoint. Letter/digit-bearing ids are unchanged, so existing graphs are not re-keyed.

  • Fix: Java annotations now emit references edges to their type — including class-literal arguments (@Repeatable(Foo.class), @Uses({A.class, B.class})) and annotation-member return types — so a container annotation is no longer a disconnected island; string/enum arguments are not mistaken for type references (#​2426, thanks @​oleksii-tumanov).

  • Fix: graphify query treats _ as a token separator (like -), so an underscore-spelled query (user_service) matches a hyphenated label (user-service); coverage-scaling keeps the broader tokenization from surfacing unrelated single-token noise (#​2473, thanks @​nadiadatepe-eng).

  • Fix: the post-checkout hook skips its rebuild when HEAD is unchanged (e.g. git checkout -b with no start point), so creating a branch no longer triggers a full graph rebuild (#​2421, thanks @​nothariharan).

  • Feature: Markdown nodes now carry a node_kind (page vs heading) attribute so a docs corpus can be filtered by kind, and leading YAML frontmatter is parsed onto the page node as bounded, sanitized attributes; a # comment inside frontmatter is no longer mis-extracted as a heading (thanks @​evanthomasgelders). Node ids are unchanged, so existing markdown graphs are not re-keyed.

  • Feature: Common Lisp .lisp/.cl/.lsp/.asd extraction via tree-sitter-commonlisp (optional [commonlisp] extra) — packages, classes, functions, methods, generics, macros, variable definers, and same-file calls; opened/:used packages resolve cross-file (thanks @​fade).

  • Fix: a graphify query whose node set fits the budget but whose edges push the total over now prints an honest "complete answer over budget" notice with the real size, instead of silently returning a payload several times the requested budget (and no longer advises raising the budget, which was the exact trigger); edges are still never dropped from a complete answer (#​2784, thanks @​AromalBiju1).

  • Fix: a .gitignore/.graphifyignore saved in a non-UTF-8 encoding no longer silently drops its rules (which let an explicitly-excluded directory get scanned anyway); the file is decoded UTF-8-first, then by a UTF-16 BOM, then the host codepage/latin-1, so the rule survives intact with a warning instead of being truncated (#​2798, thanks @​abhay-codes07).

  • Fix: when node dedup merges two nodes, any hyperedge that listed the merged-away node as a member now rewires that member to the survivor instead of silently dropping it, so a grouping no longer loses participants on dedup (#​2805, thanks @​abhay-codes07).

  • Fix: pruning a source file now also sweeps the external-import placeholder nodes it strands at degree 0, instead of leaving them to accumulate in the node count, GRAPH_REPORT.md, and exports; genuinely-isolated real nodes (which carry a source_file) are never touched (#​2807, thanks @​abhay-codes07).

  • Fix: when two edges connect the same node pair with different relations, the graph builder now keeps the more specific relation (calls, imports, inherits, ...) instead of letting a generic references/uses/mentions overwrite it; previously a real calls could be downgraded to references and then dropped from the call graph (#​2803, thanks @​abhay-codes07).

v0.9.45

Compare Source

  • Fix: graphify install <platform> now advances the .graphify_version stamp only for the platform it actually (re)writes, instead of stamping every installed platform as current; a platform whose skill content was left untouched keeps its old stamp so its staleness warning stays truthful (#​2694, thanks @​ousamabenyounes). This completes #​2694 (the CLAUDE_CONFIG_DIR half shipped in 0.9.44).
  • Fix: an incremental rebuild no longer collapses the whole graph when the .graphify_root marker records a subfolder while stored source_file paths are relative to the repo root; the marker is validated against the stored paths before it is trusted as their anchor, so a mismatched marker can't make every unchanged source look deleted (#​2603, thanks @​catpotd). A genuinely deleted source is still evicted, and incremental ids stay identical to a cold build.
  • Fix: a Go file that declares both an exported and an unexported symbol differing only by case (e.g. Run and run, which are distinct in Go's case-sensitive visibility rules) no longer collapses them onto one node id and drops one; the exported symbol keeps its stable id and the unexported one is disambiguated, so an intra-file call to the unexported symbol resolves locally instead of phantoming to another package (#​2779, thanks @​catpotd). Only the Go extractor's id assignment is affected; the shared id normalization is unchanged, so no other language's ids move.
  • Fix: loading a graph.json that contains a hyperedge with no id field (the semantic extractor emits them and they persist verbatim) no longer crashes the incremental re-extract with KeyError: 'id'; id-less hyperedges are tolerated and retained (#​2775, thanks @​ousamabenyounes).

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) August 24, 2026 03:20
@indent

indent Bot commented Aug 24, 2026

Copy link
Copy Markdown

Warning

This organization's free trial has ended, so Indent couldn't start this review. Manage billing to resume reviews on this repository.

@coderabbitai

coderabbitai Bot commented Aug 24, 2026

Copy link
Copy Markdown

Warning

Review limit reached

Next included review available in 59 minutes.

View limit details

Limit details: You’ve used the included review currently available.

You've used all free OSS reviews for now. Wait for the free limit to reset to keep reviewing this public repository.

Learn how review limits work.

Review configuration:

⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 40be9788-6784-4705-95c4-10d2b3687f73

📥 Commits

Reviewing files that changed from the base of the PR and between bdc6419 and 27f3412.

📒 Files selected for processing (1)
  • pyproject.toml

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.

@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 1 file

Re-trigger cubic

@pullfrog pullfrog 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 new issues found.

Reviewed changes

  • Updated graphifyy dependency version from >=0.9.44 to >=0.9.45 in pyproject.toml

This is a straightforward dependency version bump with no code changes. The upgrade to graphifyy 0.9.45 includes several important fixes:

  • Incremental rebuilds now validate .graphify_root markers to prevent graph collapse
  • Go symbol IDs properly disambiguate Run vs run
  • ID-less hyperedges are now tolerated in graph.json

All fixes are defensive and backward-compatible - no migration required.

Pullfrog  | View workflow run | Using openrouter/openrouter/free𝕏

@shunkakinoki
shunkakinoki force-pushed the renovate/patch-all-minor-patch branch from b42606e to 31cee60 Compare August 25, 2026 03:18
@shunkakinoki shunkakinoki changed the title chore(deps): update dependency graphifyy to >=0.9.45 chore(deps): update dependency graphifyy to >=0.9.46 Aug 25, 2026
@shunkakinoki
shunkakinoki force-pushed the renovate/patch-all-minor-patch branch from 31cee60 to 3b3e5ce Compare August 26, 2026 03:22
@shunkakinoki shunkakinoki changed the title chore(deps): update dependency graphifyy to >=0.9.46 chore(deps): update all non-major dependencies (patch) Aug 26, 2026
@shunkakinoki
shunkakinoki force-pushed the renovate/patch-all-minor-patch branch from 3b3e5ce to 27f3412 Compare August 27, 2026 04:43
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