Skip to content

⬆️(deps): Update langfuse requirement from <4.0.0,>=3.8.0 to >=3.8.0,<5.0.0 in /packages/meeseeks_core - #74

Merged
bearlike merged 1 commit into
mainfrom
dependabot/pip/packages/meeseeks_core/langfuse-gte-3.8.0-and-lt-5.0.0
Mar 24, 2026
Merged

bearlike merged 1 commit into
mainfrom
dependabot/pip/packages/meeseeks_core/langfuse-gte-3.8.0-and-lt-5.0.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Mar 16, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on langfuse to permit the latest version.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Updates the requirements on [langfuse](https://github.com/langfuse/langfuse) to permit the latest version.
- [Release notes](https://github.com/langfuse/langfuse/releases)
- [Commits](https://github.com/langfuse/langfuse/commits)

---
updated-dependencies:
- dependency-name: langfuse
  dependency-version: 4.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Mar 16, 2026
@codecov

codecov Bot commented Mar 16, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 90.51%. Comparing base (6bae573) to head (1e62b57).
⚠️ Report is 15 commits behind head on main.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #74   +/-   ##
=======================================
  Coverage   90.51%   90.51%           
=======================================
  Files          49       49           
  Lines        7055     7055           
=======================================
  Hits         6386     6386           
  Misses        669      669           
Components Coverage Δ
core 94.72% <ø> (ø)
tools 84.41% <ø> (ø)
cli 85.19% <ø> (ø)
api 96.06% <ø> (ø)
chat 93.64% <ø> (ø)
ha 93.88% <ø> (ø)
🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

@bearlike
bearlike merged commit 8001fc3 into main Mar 24, 2026
15 checks passed
@bearlike
bearlike deleted the dependabot/pip/packages/meeseeks_core/langfuse-gte-3.8.0-and-lt-5.0.0 branch March 24, 2026 08:16
bearlike pushed a commit that referenced this pull request Jun 20, 2026
…workspace-scoped SCG — virtual MCP configs, memory-biased routing, scg_observe, live run streaming, session-full realtime, workspace graph view

## New features
- Workspace virtual MCP config (#75): a workspace = name + instructions + MCP
  servers selected from the system-wide catalog, persisted as a DB-backed
  WorkspaceMcpConfig (CredentialStore sibling: one encode seam, secrets
  redacted outward). SearchRun grants resolve from it; WorkspaceSourceSync
  auto-maps newly-enabled live sources on save (idempotent, re-maps after a
  URL fix). Per-workspace graph = ScgScope, a scoped VIEW over the shared
  multiplex (sources allowlist on a ContextVar the router/tools respect) —
  not a store partition, per docs/features-search.md.
- Memory-aware routing (#76): ScgRouter.route_with_memory blends polarity-
  weighted connector-corpus insights (ScgMemoryBias; +boost/-damp, zero-LLM)
  into recipe ranking; scg_route results carry capped memory_hints
  ("how to call this right"); deposits take polarity + workspace attribution.
- scg_observe (Search-on-Graph, arXiv:2510.08825): the agent itself reads
  typed hops (SUPPORTS_QUERY/PRODUCES/CONSUMES/RESOLVES_TO), direction-aware,
  survey-then-filter on large nodes — engine ranks entries, agent navigates.
- Graph-first structured runs (#77): workspace binding = ONE seam
  (WorkspaceGraphBinding) granting scg capability + graph tools to ANY run
  type. POST /v1/structured with a mapped workspace routes via the SCG,
  fans out scg-path-probe leaves, terminates at the schema-validated emit
  (scg-search-structured playbook); pathway/probe provenance on the run.
- Live run streaming (#77, fixes the "Starting search…" wedge): RunEventStreamer
  projects session events onto the run event log AS they happen via core
  SessionEventBus; _settle reduced to terminal reconcile. Probe trace lanes
  carry real reasoning detail.
- Session-full realtime (#78): /v1/structured/fast + /v1/draft/stream mint
  sessions with write-behind persistence (RealtimeSessionRecorder; TTFT
  never blocks on store writes), Langfuse traces, structured:/draft: origin
  tags; /v1/structured stamps provenance + X-Mewbo-Surface in _prepare.
  Console gains structured/draft origins behind the filter (hidden by default).
- Workspace graph view (#79): GET /api/agentic_search/workspaces/<id>/graph
  projects the ScgGraphView multiplex (schema+memory+entity layers, redacted,
  ghost nodes for unmapped sources); console WorkspaceGraphDialog reuses the
  wiki graph renderer via injected GraphRenderConfig (3 layers + toggles).
- Landing-page inertness (#80): /search never auto-executes — past-query
  chips/suggestions REPLAY stored runs (GET snapshot), localStorage run
  restore removed (?run= deep-link only), stale snapshots render by status,
  explicit "Run again" affordance.

## Stability
- Search runs stamp surface + correct Langfuse session_type (search_run vs
  scg_map vs structured_run; named root traces, real done_reason) — runs now
  audit as one session: route -> spawn -> probes -> aggregate -> emit.
- MCP tools: structured_query workspace param engages the graph-first path;
  get_structured_run carries pathway/probe provenance; projections typed.

## Docs
- CLAUDE.md tree refreshed across api/agentic_search/scg/graph/core/console
  (decisions + seams, no bloat); plugin manifest gains scg_observe.

Workstream tracker: #74 (umbrella) -> #75 #76 #77 #78 #79 #80; consumer side
bearlike/SideStage#47.
bearlike added a commit that referenced this pull request Jun 20, 2026
…workspace-scoped SCG — virtual MCP configs, memory-biased routing, scg_observe, live run streaming, session-full realtime, workspace graph view

## New features
- Workspace virtual MCP config (#75): a workspace = name + instructions + MCP
  servers selected from the system-wide catalog, persisted as a DB-backed
  WorkspaceMcpConfig (CredentialStore sibling: one encode seam, secrets
  redacted outward). SearchRun grants resolve from it; WorkspaceSourceSync
  auto-maps newly-enabled live sources on save (idempotent, re-maps after a
  URL fix). Per-workspace graph = ScgScope, a scoped VIEW over the shared
  multiplex (sources allowlist on a ContextVar the router/tools respect) —
  not a store partition, per docs/features-search.md.
- Memory-aware routing (#76): ScgRouter.route_with_memory blends polarity-
  weighted connector-corpus insights (ScgMemoryBias; +boost/-damp, zero-LLM)
  into recipe ranking; scg_route results carry capped memory_hints
  ("how to call this right"); deposits take polarity + workspace attribution.
- scg_observe (Search-on-Graph, arXiv:2510.08825): the agent itself reads
  typed hops (SUPPORTS_QUERY/PRODUCES/CONSUMES/RESOLVES_TO), direction-aware,
  survey-then-filter on large nodes — engine ranks entries, agent navigates.
- Graph-first structured runs (#77): workspace binding = ONE seam
  (WorkspaceGraphBinding) granting scg capability + graph tools to ANY run
  type. POST /v1/structured with a mapped workspace routes via the SCG,
  fans out scg-path-probe leaves, terminates at the schema-validated emit
  (scg-search-structured playbook); pathway/probe provenance on the run.
- Live run streaming (#77, fixes the "Starting search…" wedge): RunEventStreamer
  projects session events onto the run event log AS they happen via core
  SessionEventBus; _settle reduced to terminal reconcile. Probe trace lanes
  carry real reasoning detail.
- Session-full realtime (#78): /v1/structured/fast + /v1/draft/stream mint
  sessions with write-behind persistence (RealtimeSessionRecorder; TTFT
  never blocks on store writes), Langfuse traces, structured:/draft: origin
  tags; /v1/structured stamps provenance + X-Mewbo-Surface in _prepare.
  Console gains structured/draft origins behind the filter (hidden by default).
- Workspace graph view (#79): GET /api/agentic_search/workspaces/<id>/graph
  projects the ScgGraphView multiplex (schema+memory+entity layers, redacted,
  ghost nodes for unmapped sources); console WorkspaceGraphDialog reuses the
  wiki graph renderer via injected GraphRenderConfig (3 layers + toggles).
- Landing-page inertness (#80): /search never auto-executes — past-query
  chips/suggestions REPLAY stored runs (GET snapshot), localStorage run
  restore removed (?run= deep-link only), stale snapshots render by status,
  explicit "Run again" affordance.

## Stability
- Search runs stamp surface + correct Langfuse session_type (search_run vs
  scg_map vs structured_run; named root traces, real done_reason) — runs now
  audit as one session: route -> spawn -> probes -> aggregate -> emit.
- MCP tools: structured_query workspace param engages the graph-first path;
  get_structured_run carries pathway/probe provenance; projections typed.

## Docs
- CLAUDE.md tree refreshed across api/agentic_search/scg/graph/core/console
  (decisions + seams, no bloat); plugin manifest gains scg_observe.

Workstream tracker: #74 (umbrella) -> #75 #76 #77 #78 #79 #80; consumer side
bearlike/SideStage#47.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant