Commit Graph
131 Commits
Author SHA1 Message Date
github-actions[bot] 67c943bd97 chore(staging): v0.54.10 2026-05-23 05:37:58 +00:00
github-actions[bot] 934546b2b3 chore(staging): v0.54.9 2026-05-23 03:47:43 +00:00
github-actions[bot] f346476552 chore(staging): v0.54.8 2026-05-23 02:43:38 +00:00
github-actions[bot] 0ad723595e chore(staging): v0.54.7 2026-05-22 08:55:46 +00:00
github-actions[bot] 7fe3dd06ba chore(staging): v0.54.6 2026-05-21 20:17:36 +00:00
github-actions[bot] f02543b80a chore(staging): v0.54.5 2026-05-21 18:41:18 +00:00
Mega MindandGitHub beba562df2 fix(windows): make pnpm dev:app:win work behind TLS-inspecting proxies (#2449) 2026-05-21 23:29:01 +05:30
a1462b088e fix(deps): bump lettre to 0.11.22 to clear RUSTSEC-2026-0141
## Summary

- Bumps `lettre` from `0.11.19` (resolved `0.11.21`) to `0.11.22` to clear [RUSTSEC-2026-0141](https://rustsec.org/advisories/RUSTSEC-2026-0141.html) on both `Cargo.lock` and `app/src-tauri/Cargo.lock`.
- The advisory affects only the `boring-tls` backend; OpenHuman builds with `rustls-tls`, so this is not exploitable at runtime — the bump just clears the `cargo-audit` warning the weekly code-review report (#2084) has been surfacing since 2026-05-18.

## Problem

- `cargo-audit` flags `lettre@0.11.21` for RUSTSEC-2026-0141 / [GHSA-4pj9-g833-qx53](https://github.com/lettre/lettre/security/advisories/GHSA-4pj9-g833-qx53): an inverted boolean disabled TLS hostname verification on the `boring-tls` backend across `0.10.1..0.11.21`.
- Fixed upstream in `0.11.22` (released 2026-05-14).
- Both lockfiles (root + `app/src-tauri/`) resolved `lettre` to the vulnerable `0.11.21`.

## Solution

- Root `Cargo.toml`: `lettre = "0.11.19"` -> `lettre = "0.11.22"`.
- `cargo update -p lettre` in both workspaces refreshed the resolved version to `0.11.22`.
- No call-site changes: the two consumer modules (`src/openhuman/audio_toolkit/ops.rs` and `src/openhuman/channels/providers/email_channel.rs`) only use stable surface (`Message`, `SmtpTransport`, `Transport`, `Credentials`, message-builder types). `0.11.20` raised MSRV to 1.85, but OpenHuman targets Rust 1.93 per `rust-toolchain.toml`, so the bump is compatible.

## Submission Checklist

- [x] N/A: Tests added or updated — pure dependency bump with no behavior change; existing `email_channel` and `audio_toolkit` unit tests cover the consumer sites.
- [x] N/A: Diff coverage >= 80% — `Cargo.toml` / `Cargo.lock` changes have no executable lines for `cargo-llvm-cov` to score.
- [x] N/A: Coverage matrix updated — no feature row added/removed/renamed.
- [x] N/A: All affected feature IDs from the matrix are listed — no matrix row affected.
- [x] No new external network dependencies introduced.
- [x] N/A: Manual smoke checklist updated — dependency-only change, no release-cut surface.
- [x] Linked issue closed via `Closes #2274` in `## Related`.

## Impact

- Runtime/platform impact: none in practice — `rustls-tls` backend is unaffected by RUSTSEC-2026-0141. Clears the `cargo-audit` advisory flag in the weekly code-review report.
- Compatibility impact: back-compatible patch-version bump within the same `0.11.x` line.
- Security impact: forward-looking — removes vulnerable version pin so a future build that ever toggles to `boring-tls` would not regress into the advisory.

## Related

- Closes #2274
- Surfaced by: #2084 (weekly code-review report — 2026-05-18)
- Upstream advisory: https://rustsec.org/advisories/RUSTSEC-2026-0141.html
- Upstream changelog: https://github.com/lettre/lettre/blob/v0.11.22/CHANGELOG.md

---

## AI Authored PR Metadata

### Linear Issue
- Key: N/A
- URL: N/A

### Commit & Branch
- Branch: `fix/lettre-rustsec-2026-0141`
- Commit SHA: 7d3dbdb0

### Validation Run
- [x] N/A: `pnpm --filter openhuman-app format:check` — Rust-only dependency change.
- [x] N/A: `pnpm typecheck` — Rust-only dependency change.
- [x] Focused tests: `cargo test --manifest-path Cargo.toml --lib email_channel` (50/50 pass) and `cargo test --manifest-path Cargo.toml --lib audio_toolkit` (10/10 pass).
- [x] Rust fmt/check: `cargo fmt --check` clean; `cargo check --manifest-path Cargo.toml` clean (pre-existing warnings only); `cargo clippy --lib --no-deps` no new warnings.
- [x] N/A: Tauri fmt/check — no `app/src-tauri/src/**` changes; only `app/src-tauri/Cargo.lock` updated to refresh the transitive `lettre` pin.

### Validation Blocked
- N/A

### Behavior Changes
- Intended behavior change: none in this codebase (build uses `rustls-tls` feature, not `boring-tls`).
- User-visible effect: weekly code-review report no longer flags `lettre@0.11.21` for RUSTSEC-2026-0141 after merge.

### Parity Contract
- Legacy behavior preserved: `Message`/`SmtpTransport`/`Transport`/`Credentials` and message-builder API surface unchanged in `0.11.22`.
- Guard/fallback/dispatch parity checks: not applicable — dependency-only bump.

### Duplicate / Superseded PR Handling
- Duplicate PR(s): none known (searched open and closed PRs touching `lettre`; the only prior hit was #1970 which introduced the dependency).
- Canonical PR: this PR.
- Resolution: N/A.

<!-- This is an auto-generated comment: release notes by coderabbit.ai -->

## Summary by CodeRabbit

* **Chores**
  * Updated the email service library to the latest patch version for improved stability and bug fixes.

<!-- review_stack_entry_start -->

[![Review Change Stack](https://storage.googleapis.com/coderabbit_public_assets/review-stack-in-coderabbit-ui.svg)](https://app.coderabbit.ai/change-stack/tinyhumansai/openhuman/pull/2275?utm_source=github_walkthrough&utm_medium=github&utm_campaign=change_stack)

<!-- review_stack_entry_end -->

<!-- end of auto-generated comment: release notes by coderabbit.ai -->

Co-authored-by: justin <justin80605@gmail.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
2026-05-20 15:07:04 -07:00
github-actions[bot] a3eb15c3a1 chore(staging): v0.54.4 2026-05-20 18:55:15 +00:00
github-actions[bot] ebd6457007 chore(staging): v0.54.3 2026-05-20 09:49:36 +00:00
9566f2c5a7 fix(tauri): forward hot-instance OAuth deep links (#2229)
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
2026-05-19 16:16:09 -07:00
github-actions[bot] 88b7fad34b chore(staging): v0.54.2 2026-05-19 11:37:28 +00:00
github-actions[bot] e2ce0f844c chore(staging): v0.54.1 2026-05-19 09:58:52 +00:00
github-actions[bot] c25fc8e5fd chore(release): v0.54.0 2026-05-19 06:30:30 +00:00
github-actions[bot] ce227c437a chore(release): v0.53.52 2026-05-19 06:06:06 +00:00
github-actions[bot] 94a407c0dd chore(staging): v0.53.51 2026-05-19 05:05:38 +00:00
github-actions[bot] 70fdedcdd4 chore(staging): v0.53.50 2026-05-18 10:35:44 +00:00
Steven EnamakelandGitHub 2e58438aa9 test(e2e): onboarding simple vs advanced mode spec (#1989) 2026-05-17 02:02:25 -07:00
Steven EnamakelandGitHub 40a384ed65 feat(wallet): add default rpc and EVM execution tools (#1964) 2026-05-16 15:12:09 -07:00
github-actions[bot] 36a0e73b39 chore(staging): v0.53.49 2026-05-16 18:38:32 +00:00
github-actions[bot] bcfecc34d8 chore(staging): v0.53.48 2026-05-16 18:21:08 +00:00
3165306bd1 feat(voice): fully-local STT + TTS via Whisper/Piper provider factory (#1755)
Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
2026-05-14 14:27:51 -07:00
github-actions[bot] 08b881350b chore(staging): v0.53.47 2026-05-14 19:00:05 +00:00
Steven EnamakelGitHubRafael Figuereodependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
4d5e0d5aad fix(orchestrator): prefer live integrations over memory_tree for inbox/doc queries (#1731)
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: Rafael Figuereo <rafaelfiguereod@gmail.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com>
2026-05-14 05:37:00 -07:00
github-actions[bot] 2aea60c208 chore(staging): v0.53.46 2026-05-14 12:10:27 +00:00
github-actions[bot] be214510e7 chore(staging): v0.53.45 2026-05-14 05:43:55 +00:00
github-actions[bot] 3e13adaab5 chore(staging): v0.53.44 2026-05-13 21:32:25 +00:00
github-actions[bot] 2b64ea8ac5 chore(release): v0.53.43 2026-05-13 19:24:19 +00:00
github-actions[bot] 6b992e1e65 chore(release): v0.53.42 2026-05-13 18:32:56 +00:00
github-actions[bot] 41813dba14 chore(staging): v0.53.41 2026-05-13 15:50:42 +00:00
github-actions[bot] 9160317e06 chore(release): v0.53.40 2026-05-13 13:02:39 +00:00
github-actions[bot] 84ffce7d54 chore(release): v0.53.39 2026-05-13 12:58:18 +00:00
github-actions[bot] 7beed3a47e chore(staging): v0.53.38 2026-05-13 12:25:06 +00:00
github-actions[bot] 4788b8cbea chore(release): v0.53.37 2026-05-13 12:20:45 +00:00
github-actions[bot] 7e44a5c8c0 chore(staging): v0.53.36 2026-05-13 11:23:16 +00:00
github-actions[bot] 6abf4a6e02 chore(staging): v0.53.35 2026-05-13 09:06:00 +00:00
github-actions[bot] de33b12980 chore(staging): v0.53.34 2026-05-13 07:38:19 +00:00
github-actions[bot] 86ea12f676 chore(staging): v0.53.33 2026-05-13 06:27:50 +00:00
github-actions[bot] c591d88982 chore(staging): v0.53.32 2026-05-13 05:04:52 +00:00
8e31b766a4 chore(deps): cargo update lockfiles to patch openssl + rand CVEs (#1581)
Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Co-authored-by: Steven Enamakel <enamakel@tinyhumans.ai>
2026-05-12 20:04:08 -07:00
github-actions[bot] 3966df4037 chore(staging): v0.53.31 2026-05-12 17:49:07 +00:00
github-actions[bot] 15c744296d chore(staging): v0.53.30 2026-05-12 12:21:31 +00:00
github-actions[bot] ef556f8835 chore(staging): v0.53.29 2026-05-12 09:25:51 +00:00
Steven EnamakelandGitHub e3749a0383 fix(tauri): prevent CEF init panic on second launch via single-instance plugin (#1510) 2026-05-11 19:35:03 -07:00
github-actions[bot] dbc536f8b0 chore(staging): v0.53.28 2026-05-11 19:17:47 +00:00
github-actions[bot] 09c55609ca chore(staging): v0.53.27 2026-05-11 08:40:31 +00:00
Steven EnamakelandGitHub 838e6fce90 fix(windows): stop terminal flood on app launch via GUI subsystem + AttachConsole (#1468) 2026-05-10 23:20:25 -07:00
Steven EnamakelandGitHub 81d24b4d74 fix(release): refresh Cargo.lock on bump, attach uid to core Sentry, hide debug settings (#1465) 2026-05-10 20:44:23 -07:00
Steven EnamakelandGitHub 065e198cf4 Support reliable self-update for server-side and headless core instances (#1458) 2026-05-09 23:55:25 -07:00
Steven EnamakelandGitHub fbed3b21f0 fix(learning): cloud fallback when local reflection gate is off (#1453) 2026-05-09 20:09:29 -07:00