Skip to content

build(deps): bump urllib3 from 2.2.1 to 2.6.3 in /meeseeks-chat in the pip group across 1 directory - #12

Merged
bearlike merged 1 commit into
mainfrom
dependabot/pip/meeseeks-chat/pip-8177a8837a
Feb 4, 2026
Merged

bearlike merged 1 commit into
mainfrom
dependabot/pip/meeseeks-chat/pip-8177a8837a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Feb 4, 2026

Copy link
Copy Markdown
Contributor

Bumps the pip group with 1 update in the /meeseeks-chat directory: urllib3.

Updates urllib3 from 2.2.1 to 2.6.3

Release notes

Sourced from urllib3's releases.

2.6.3

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Changes

2.6.2

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Changes

  • Fixed HTTPResponse.read_chunked() to properly handle leftover data in the decoder's buffer when reading compressed chunked responses. (urllib3/urllib3#3734)

2.6.1

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Changes

  • Restore previously removed HTTPResponse.getheaders() and HTTPResponse.getheader() methods. (#3731)

2.6.0

🚀 urllib3 is fundraising for HTTP/2 support

urllib3 is raising ~$40,000 USD to release HTTP/2 support and ensure long-term sustainable maintenance of the project after a sharp decline in financial support. If your company or organization uses Python and would benefit from HTTP/2 support in Requests, pip, cloud SDKs, and thousands of other projects please consider contributing financially to ensure HTTP/2 support is developed sustainably and maintained for the long-haul.

Thank you for your support.

Security

  • Fixed a security issue where streaming API could improperly handle highly compressed HTTP content ("decompression bombs") leading to excessive resource consumption even when a small amount of data was requested. Reading small chunks of compressed data is safer and much more efficient now. (CVE-2025-66471 reported by @​Cycloctane, 8.9 High, GHSA-2xpw-w6gg-jr37)
  • Fixed a security issue where an attacker could compose an HTTP response with virtually unlimited links in the Content-Encoding header, potentially leading to a denial of service (DoS) attack by exhausting system resources during decoding. The number of allowed chained encodings is now limited to 5. (CVE-2025-66418 reported by @​illia-v, 8.9 High, GHSA-gm62-xv2j-4w53)

[!IMPORTANT]

  • If urllib3 is not installed with the optional urllib3[brotli] extra, but your environment contains a Brotli/brotlicffi/brotlipy package anyway, make sure to upgrade it to at least Brotli 1.2.0 or brotlicffi 1.2.0.0 to benefit from the security fixes and avoid warnings. Prefer using urllib3[brotli] to install a compatible Brotli package automatically.

... (truncated)

Changelog

Sourced from urllib3's changelog.

2.6.3 (2026-01-07)

  • Fixed a high-severity security issue where decompression-bomb safeguards of the streaming API were bypassed when HTTP redirects were followed. (GHSA-38jv-5279-wg99 <https://github.com/urllib3/urllib3/security/advisories/GHSA-38jv-5279-wg99>__)
  • Started treating Retry-After times greater than 6 hours as 6 hours by default. ([#3743](https://github.com/urllib3/urllib3/issues/3743) <https://github.com/urllib3/urllib3/issues/3743>__)
  • Fixed urllib3.connection.VerifiedHTTPSConnection on Emscripten. ([#3752](https://github.com/urllib3/urllib3/issues/3752) <https://github.com/urllib3/urllib3/issues/3752>__)

2.6.2 (2025-12-11)

  • Fixed HTTPResponse.read_chunked() to properly handle leftover data in the decoder's buffer when reading compressed chunked responses. ([#3734](https://github.com/urllib3/urllib3/issues/3734) <https://github.com/urllib3/urllib3/issues/3734>__)

2.6.1 (2025-12-08)

  • Restore previously removed HTTPResponse.getheaders() and HTTPResponse.getheader() methods. ([#3731](https://github.com/urllib3/urllib3/issues/3731) <https://github.com/urllib3/urllib3/issues/3731>__)

2.6.0 (2025-12-05)

Security

  • Fixed a security issue where streaming API could improperly handle highly compressed HTTP content ("decompression bombs") leading to excessive resource consumption even when a small amount of data was requested. Reading small chunks of compressed data is safer and much more efficient now. (GHSA-2xpw-w6gg-jr37 <https://github.com/urllib3/urllib3/security/advisories/GHSA-2xpw-w6gg-jr37>__)
  • Fixed a security issue where an attacker could compose an HTTP response with virtually unlimited links in the Content-Encoding header, potentially leading to a denial of service (DoS) attack by exhausting system resources during decoding. The number of allowed chained encodings is now limited to 5. (GHSA-gm62-xv2j-4w53 <https://github.com/urllib3/urllib3/security/advisories/GHSA-gm62-xv2j-4w53>__)

.. caution::

  • If urllib3 is not installed with the optional urllib3[brotli] extra, but your environment contains a Brotli/brotlicffi/brotlipy package anyway, make sure to upgrade it to at least Brotli 1.2.0 or brotlicffi 1.2.0.0 to benefit from the security fixes and avoid warnings. Prefer using

... (truncated)

Commits
  • 0248277 Release 2.6.3
  • 8864ac4 Merge commit from fork
  • 70cecb2 Fix Scorecard issues related to vulnerable dev dependencies (#3755)
  • 41f249a Move "v2.0 Migration Guide" to the end of the table of contents (#3747)
  • fd4dffd Patch VerifiedHTTPSConnection for Emscripten (#3752)
  • 13f0bfd Handle massive values in Retry-After when calculating time to sleep for (#3743)
  • 8c480bf Bump actions/upload-artifact from 5.0.0 to 6.0.0 (#3748)
  • 4b40616 Bump actions/cache from 4.3.0 to 5.0.1 (#3750)
  • 82b8479 Bump actions/download-artifact from 6.0.0 to 7.0.0 (#3749)
  • 34284cb Mention experimental features in the security policy (#3746)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
    You can disable automated security fix PRs for this repo from the Security Alerts page.

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Feb 4, 2026
@codecov

codecov Bot commented Feb 4, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
⚠️ Please upload report for BASE (main@b0ad78d). Learn more about missing BASE report.

Additional details and impacted files
@@           Coverage Diff           @@
##             main      #12   +/-   ##
=======================================
  Coverage        ?   82.15%           
=======================================
  Files           ?       21           
  Lines           ?     1737           
  Branches        ?        0           
=======================================
  Hits            ?     1427           
  Misses          ?      310           
  Partials        ?        0           
Flag Coverage Δ
unit 82.15% <ø> (?)

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Bumps the pip group with 1 update in the /meeseeks-chat directory: [urllib3](https://github.com/urllib3/urllib3).


Updates `urllib3` from 2.2.1 to 2.6.3
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.2.1...2.6.3)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-version: 2.6.3
  dependency-type: indirect
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot changed the base branch from main to master February 4, 2026 04:24
@dependabot
dependabot Bot force-pushed the dependabot/pip/meeseeks-chat/pip-8177a8837a branch from c3a28e4 to fec2636 Compare February 4, 2026 04:24
@bearlike
bearlike merged commit f33ca89 into main Feb 4, 2026
4 checks passed
@dependabot
dependabot Bot deleted the dependabot/pip/meeseeks-chat/pip-8177a8837a branch February 4, 2026 09:20
bearlike pushed a commit that referenced this pull request Apr 10, 2026
Bumps the pip group with 1 update in the /meeseeks-chat directory: [urllib3](https://github.com/urllib3/urllib3).


Updates `urllib3` from 2.2.1 to 2.6.3
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.2.1...2.6.3)

---
updated-dependencies:
- dependency-name: urllib3
  dependency-version: 2.6.3
  dependency-type: indirect
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
bearlike added a commit that referenced this pull request Jun 7, 2026
…ndalone MCP server, retry resilience & schema-driven Settings

Integrates a new optional capability library, a new product surface, and feature/fix updates across core, the API, and the console.

### `packages/mewbo_graph` — new optional capability library (#23)
- Extracts the reusable graph / embedding / memory + SCG substrate out of `apps/mewbo_api` into an extras-gated library, making the monorepo dependency DAG acyclic (`core ← {tools, graph} ← apps`).
- `mewbo_graph.wiki` (graph, memory, retriever, embedder, store, structure provider) and `mewbo_graph.scg` (types, store, providers, parser, router, entity resolution, memory bridge).
- `mewbo_graph.plugins.{wiki,scg}` — the wiki/scg plugin suites (tools + AgentDefs) now ship with the substrate they wrap.
- Upward imports replaced by four down-only seams: wiki store singleton, `CloneTokenCache`, `MapPhaseSink` DI, and `register_builtin_root` (push-on-import). Every API→graph import is guarded so a base install boots graph-less.

### `apps/mewbo_mcp` — new standalone MCP server (#11)
- FastMCP (Streamable HTTP) server at `/mcp` (~12 tools): session create/follow-up/interrupt, tiered `get_session_history`, `list_sessions`, `get_agent_tree`, wiki read/ask, and `list_integrations`.
- Shares the API's `KeyStore` via token pass-through; `docker/Dockerfile.mcp` + a `mewbo-mcp` compose service.

### `packages/mewbo_core` (#16, #11, #22, #23)
- LLM resilience: `llm_resilience.py` (`RetryStrategy`, 3-way error classification, full-jitter backoff, `RetryBudget`, `CircuitBreaker`, doom-loop halt, `repair_tool_pairing`), driven by `tool_use_loop`; typed `agent.retry` + opt-in `llm.fallback`.
- `KeyStore` (file + Mongo) for revocable `mk_` API keys.
- `ConfigSchemaView` + `x-group` / `x-order` / `x-advanced` / `x-secret` config annotations.
- `register_builtin_root` for down-only library plugin discovery.

### `apps/mewbo_api` (#18, #23, #17, #22, #11, #16)
- Agentic Search: typed contracts, dual-backend (JSON + Mongo) run/event-log store, run-lifecycle + SSE endpoints, and the `SearchRunner` seam (default `EchoSearchRunner`).
- SCG glue: `MapSourceJob`, `OrchestratedSearchRunner`, routes, and the `ScgConfig` gate (flag-gated on `scg.enabled`).
- Wiki: multiplex code–memory–docs graph + on-demand incremental refresh control plane; insight ingestion via SessionTool / REST / MCP.
- Config API: `GET /api/config` `{config, secrets}`, `x-secret` PATCH writes, schema endpoint; `/api/keys` CRUD; per-run `fallback_models` threading.

### `apps/mewbo_console` (#22, #18, #16, #12, #11)
- Faceted, schema-driven Settings & Configuration UI (`SettingsModel`, `facets.ts`, per-section save/reset, secret + repositories fields, Security & Access facet with API Keys panel).
- Agentic Search: SSE-driven reveal via `useRunStream`, shared `api/sse.ts`, run rehydration.
- LLM fallback control + retry/fallback/halt timeline events.
- Multi-model session navbar (`<ModelSummary>`).

### `apps/mewbo_cli` (#16)
- Retry/fallback/halt notices; `--fallback-model(s)` / `--no-fallback` flags.

### Plugins, packaging & docs (#14, #23)
- Host-agnostic marketplace catalog resolution (`_resolve_git_url`, `marketplace_dir_name`, `plugins.marketplace_default_host`); per-host git auth in `docker/init.d`.
- Workspace wiring for `mewbo-graph` + `mewbo-mcp`, new `mcp` extra, and `mewbo-api[wiki]` → `mewbo-graph[treesitter,retrieval]` forwarding; regenerated `configs/app.schema.json`; CI matrix, docker-compose, and CLAUDE.md / docs updates.

Bundled PRs: #11, #12, #14, #16, #17, #18, #22, #23.

### Maintenance (folded into this squash)
- Upgraded all uv-managed dependencies to their latest compatible versions and refreshed `uv.lock` (96 packages bumped, incl. langchain 1.3.x, langgraph 1.2.x, litellm 1.88.0, openai 2.41.0, pydantic 2.13.x, starlette/uvicorn, mkdocstrings); deliberate `==` dev-tool pins (ruff/mypy/pytest/…) left intact. ruff, mypy, the full pytest suite, and a `--strict` docs build all pass against the refreshed lock.
- Bumped the docs brand theme `mkdocs-shadcn-mewbo` 1.0.0 → 1.2.1 (the moving `latest-master` wheel filename tracks the version, so the prior pinned URL had begun returning 404 — the docs build was broken until this refresh).
- Docs: adopted the theme's built-in `theme.carousel` for the hero product tour — dropped the local `docs/assets/carousel.{css,js}` and the Swiper CDN `extra_css` / `extra_javascript` plumbing (the theme now emits Swiper + its SRI-pinned init script and styles `.ms-shots`; the landing page keeps only the `.swiper.ms-shots` markup), and removed the redundant `theme.pygments_style` block (it equals the theme default). Closes #33. Also converted the back-to-back image pairs atop the Home Assistant and Web Console + API pages to the same `.swiper.ms-shots` carousel, and demoted the landing-page hero heading from `#` (H1) to `###` so it no longer renders at oversized page-title scale.

Co-authored-by: mewbo-ai[bot] <268600793+mewbo-ai[bot]@users.noreply.github.com>
bearlike added a commit that referenced this pull request Jun 20, 2026
…ndalone MCP server, retry resilience & schema-driven Settings

Integrates a new optional capability library, a new product surface, and feature/fix updates across core, the API, and the console.

### `packages/mewbo_graph` — new optional capability library (#23)
- Extracts the reusable graph / embedding / memory + SCG substrate out of `apps/mewbo_api` into an extras-gated library, making the monorepo dependency DAG acyclic (`core ← {tools, graph} ← apps`).
- `mewbo_graph.wiki` (graph, memory, retriever, embedder, store, structure provider) and `mewbo_graph.scg` (types, store, providers, parser, router, entity resolution, memory bridge).
- `mewbo_graph.plugins.{wiki,scg}` — the wiki/scg plugin suites (tools + AgentDefs) now ship with the substrate they wrap.
- Upward imports replaced by four down-only seams: wiki store singleton, `CloneTokenCache`, `MapPhaseSink` DI, and `register_builtin_root` (push-on-import). Every API→graph import is guarded so a base install boots graph-less.

### `apps/mewbo_mcp` — new standalone MCP server (#11)
- FastMCP (Streamable HTTP) server at `/mcp` (~12 tools): session create/follow-up/interrupt, tiered `get_session_history`, `list_sessions`, `get_agent_tree`, wiki read/ask, and `list_integrations`.
- Shares the API's `KeyStore` via token pass-through; `docker/Dockerfile.mcp` + a `mewbo-mcp` compose service.

### `packages/mewbo_core` (#16, #11, #22, #23)
- LLM resilience: `llm_resilience.py` (`RetryStrategy`, 3-way error classification, full-jitter backoff, `RetryBudget`, `CircuitBreaker`, doom-loop halt, `repair_tool_pairing`), driven by `tool_use_loop`; typed `agent.retry` + opt-in `llm.fallback`.
- `KeyStore` (file + Mongo) for revocable `mk_` API keys.
- `ConfigSchemaView` + `x-group` / `x-order` / `x-advanced` / `x-secret` config annotations.
- `register_builtin_root` for down-only library plugin discovery.

### `apps/mewbo_api` (#18, #23, #17, #22, #11, #16)
- Agentic Search: typed contracts, dual-backend (JSON + Mongo) run/event-log store, run-lifecycle + SSE endpoints, and the `SearchRunner` seam (default `EchoSearchRunner`).
- SCG glue: `MapSourceJob`, `OrchestratedSearchRunner`, routes, and the `ScgConfig` gate (flag-gated on `scg.enabled`).
- Wiki: multiplex code–memory–docs graph + on-demand incremental refresh control plane; insight ingestion via SessionTool / REST / MCP.
- Config API: `GET /api/config` `{config, secrets}`, `x-secret` PATCH writes, schema endpoint; `/api/keys` CRUD; per-run `fallback_models` threading.

### `apps/mewbo_console` (#22, #18, #16, #12, #11)
- Faceted, schema-driven Settings & Configuration UI (`SettingsModel`, `facets.ts`, per-section save/reset, secret + repositories fields, Security & Access facet with API Keys panel).
- Agentic Search: SSE-driven reveal via `useRunStream`, shared `api/sse.ts`, run rehydration.
- LLM fallback control + retry/fallback/halt timeline events.
- Multi-model session navbar (`<ModelSummary>`).

### `apps/mewbo_cli` (#16)
- Retry/fallback/halt notices; `--fallback-model(s)` / `--no-fallback` flags.

### Plugins, packaging & docs (#14, #23)
- Host-agnostic marketplace catalog resolution (`_resolve_git_url`, `marketplace_dir_name`, `plugins.marketplace_default_host`); per-host git auth in `docker/init.d`.
- Workspace wiring for `mewbo-graph` + `mewbo-mcp`, new `mcp` extra, and `mewbo-api[wiki]` → `mewbo-graph[treesitter,retrieval]` forwarding; regenerated `configs/app.schema.json`; CI matrix, docker-compose, and CLAUDE.md / docs updates.

Bundled PRs: #11, #12, #14, #16, #17, #18, #22, #23.

### Maintenance (folded into this squash)
- Upgraded all uv-managed dependencies to their latest compatible versions and refreshed `uv.lock` (96 packages bumped, incl. langchain 1.3.x, langgraph 1.2.x, litellm 1.88.0, openai 2.41.0, pydantic 2.13.x, starlette/uvicorn, mkdocstrings); deliberate `==` dev-tool pins (ruff/mypy/pytest/…) left intact. ruff, mypy, the full pytest suite, and a `--strict` docs build all pass against the refreshed lock.
- Bumped the docs brand theme `mkdocs-shadcn-mewbo` 1.0.0 → 1.2.1 (the moving `latest-master` wheel filename tracks the version, so the prior pinned URL had begun returning 404 — the docs build was broken until this refresh).
- Docs: adopted the theme's built-in `theme.carousel` for the hero product tour — dropped the local `docs/assets/carousel.{css,js}` and the Swiper CDN `extra_css` / `extra_javascript` plumbing (the theme now emits Swiper + its SRI-pinned init script and styles `.ms-shots`; the landing page keeps only the `.swiper.ms-shots` markup), and removed the redundant `theme.pygments_style` block (it equals the theme default). Closes #33. Also converted the back-to-back image pairs atop the Home Assistant and Web Console + API pages to the same `.swiper.ms-shots` carousel, and demoted the landing-page hero heading from `#` (H1) to `###` so it no longer renders at oversized page-title scale.

Co-authored-by: mewbo-ai[bot] <268600793+mewbo-ai[bot]@users.noreply.github.com>
bearlike added a commit that referenced this pull request Jun 20, 2026
…ndalone MCP server, retry resilience & schema-driven Settings

Integrates a new optional capability library, a new product surface, and feature/fix updates across core, the API, and the console.

### `packages/mewbo_graph` — new optional capability library (#23)
- Extracts the reusable graph / embedding / memory + SCG substrate out of `apps/mewbo_api` into an extras-gated library, making the monorepo dependency DAG acyclic (`core ← {tools, graph} ← apps`).
- `mewbo_graph.wiki` (graph, memory, retriever, embedder, store, structure provider) and `mewbo_graph.scg` (types, store, providers, parser, router, entity resolution, memory bridge).
- `mewbo_graph.plugins.{wiki,scg}` — the wiki/scg plugin suites (tools + AgentDefs) now ship with the substrate they wrap.
- Upward imports replaced by four down-only seams: wiki store singleton, `CloneTokenCache`, `MapPhaseSink` DI, and `register_builtin_root` (push-on-import). Every API→graph import is guarded so a base install boots graph-less.

### `apps/mewbo_mcp` — new standalone MCP server (#11)
- FastMCP (Streamable HTTP) server at `/mcp` (~12 tools): session create/follow-up/interrupt, tiered `get_session_history`, `list_sessions`, `get_agent_tree`, wiki read/ask, and `list_integrations`.
- Shares the API's `KeyStore` via token pass-through; `docker/Dockerfile.mcp` + a `mewbo-mcp` compose service.

### `packages/mewbo_core` (#16, #11, #22, #23)
- LLM resilience: `llm_resilience.py` (`RetryStrategy`, 3-way error classification, full-jitter backoff, `RetryBudget`, `CircuitBreaker`, doom-loop halt, `repair_tool_pairing`), driven by `tool_use_loop`; typed `agent.retry` + opt-in `llm.fallback`.
- `KeyStore` (file + Mongo) for revocable `mk_` API keys.
- `ConfigSchemaView` + `x-group` / `x-order` / `x-advanced` / `x-secret` config annotations.
- `register_builtin_root` for down-only library plugin discovery.

### `apps/mewbo_api` (#18, #23, #17, #22, #11, #16)
- Agentic Search: typed contracts, dual-backend (JSON + Mongo) run/event-log store, run-lifecycle + SSE endpoints, and the `SearchRunner` seam (default `EchoSearchRunner`).
- SCG glue: `MapSourceJob`, `OrchestratedSearchRunner`, routes, and the `ScgConfig` gate (flag-gated on `scg.enabled`).
- Wiki: multiplex code–memory–docs graph + on-demand incremental refresh control plane; insight ingestion via SessionTool / REST / MCP.
- Config API: `GET /api/config` `{config, secrets}`, `x-secret` PATCH writes, schema endpoint; `/api/keys` CRUD; per-run `fallback_models` threading.

### `apps/mewbo_console` (#22, #18, #16, #12, #11)
- Faceted, schema-driven Settings & Configuration UI (`SettingsModel`, `facets.ts`, per-section save/reset, secret + repositories fields, Security & Access facet with API Keys panel).
- Agentic Search: SSE-driven reveal via `useRunStream`, shared `api/sse.ts`, run rehydration.
- LLM fallback control + retry/fallback/halt timeline events.
- Multi-model session navbar (`<ModelSummary>`).

### `apps/mewbo_cli` (#16)
- Retry/fallback/halt notices; `--fallback-model(s)` / `--no-fallback` flags.

### Plugins, packaging & docs (#14, #23)
- Host-agnostic marketplace catalog resolution (`_resolve_git_url`, `marketplace_dir_name`, `plugins.marketplace_default_host`); per-host git auth in `docker/init.d`.
- Workspace wiring for `mewbo-graph` + `mewbo-mcp`, new `mcp` extra, and `mewbo-api[wiki]` → `mewbo-graph[treesitter,retrieval]` forwarding; regenerated `configs/app.schema.json`; CI matrix, docker-compose, and CLAUDE.md / docs updates.

Bundled PRs: #11, #12, #14, #16, #17, #18, #22, #23.

### Maintenance (folded into this squash)
- Upgraded all uv-managed dependencies to their latest compatible versions and refreshed `uv.lock` (96 packages bumped, incl. langchain 1.3.x, langgraph 1.2.x, litellm 1.88.0, openai 2.41.0, pydantic 2.13.x, starlette/uvicorn, mkdocstrings); deliberate `==` dev-tool pins (ruff/mypy/pytest/…) left intact. ruff, mypy, the full pytest suite, and a `--strict` docs build all pass against the refreshed lock.
- Bumped the docs brand theme `mkdocs-shadcn-mewbo` 1.0.0 → 1.2.1 (the moving `latest-master` wheel filename tracks the version, so the prior pinned URL had begun returning 404 — the docs build was broken until this refresh).
- Docs: adopted the theme's built-in `theme.carousel` for the hero product tour — dropped the local `docs/assets/carousel.{css,js}` and the Swiper CDN `extra_css` / `extra_javascript` plumbing (the theme now emits Swiper + its SRI-pinned init script and styles `.ms-shots`; the landing page keeps only the `.swiper.ms-shots` markup), and removed the redundant `theme.pygments_style` block (it equals the theme default). Closes #33. Also converted the back-to-back image pairs atop the Home Assistant and Web Console + API pages to the same `.swiper.ms-shots` carousel, and demoted the landing-page hero heading from `#` (H1) to `###` so it no longer renders at oversized page-title scale.

Co-authored-by: mewbo-ai[bot] <268600793+mewbo-ai[bot]@users.noreply.github.com>
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