[PR #327] [MERGED] Store and show request body in UI #249

Closed
opened 2025-12-29 07:20:03 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/327
Author: @gschier
Created: 12/22/2025
Status: Merged
Merged: 12/28/2025
Merged by: @gschier

Base: mainHead: request-body


📝 Commits (10+)

📊 Changes

33 files changed (+1215 additions, -331 deletions)

View changed files

📝 .gitattributes (+2 -0)
.github/workflows/claude-code-review.yml (+0 -57)
📝 packages/plugin-runtime-types/src/bindings/gen_models.ts (+1 -1)
📝 src-tauri/src/http_request.rs (+318 -101)
📝 src-tauri/src/lib.rs (+24 -21)
📝 src-tauri/src/plugin_events.rs (+3 -0)
📝 src-tauri/yaak-http/src/lib.rs (+1 -0)
📝 src-tauri/yaak-http/src/sender.rs (+9 -8)
src-tauri/yaak-http/src/tee_reader.rs (+171 -0)
📝 src-tauri/yaak-http/src/transaction.rs (+7 -7)
📝 src-tauri/yaak-models/bindings/gen_models.ts (+2 -2)
src-tauri/yaak-models/blob_migrations/00000000000000_init.sql (+12 -0)
src-tauri/yaak-models/migrations/20251221100000_request-content-length.sql (+2 -0)
src-tauri/yaak-models/src/blob_manager.rs (+372 -0)
📝 src-tauri/yaak-models/src/commands.rs (+5 -2)
📝 src-tauri/yaak-models/src/db_context.rs (+3 -3)
📝 src-tauri/yaak-models/src/lib.rs (+23 -0)
📝 src-tauri/yaak-models/src/models.rs (+6 -2)
src-tauri/yaak-models/src/queries/http_response_events.rs (+18 -0)
📝 src-tauri/yaak-models/src/queries/http_responses.rs (+11 -1)

...and 13 more files

📄 Description

CleanShot 2025-12-22 at 08 11 58@2x

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/mountain-loop/yaak/pull/327 **Author:** [@gschier](https://github.com/gschier) **Created:** 12/22/2025 **Status:** ✅ Merged **Merged:** 12/28/2025 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `main` ← **Head:** `request-body` --- ### 📝 Commits (10+) - [`b03ea11`](https://github.com/mountain-loop/yaak/commit/b03ea11509918ab358a51c9a01b90c7d4b7dee3d) Add blob database for storing body chunks - [`7828af7`](https://github.com/mountain-loop/yaak/commit/7828af752212df3f83044541746fa4160ef2fe5a) Capture and store request bodies in blob DB - [`b1e0cfe`](https://github.com/mountain-loop/yaak/commit/b1e0cfec9178940986404ca0494125509d61701c) Show sent request body - [`11f4604`](https://github.com/mountain-loop/yaak/commit/11f46047583e68bee2eb1e0f747677782d1c4162) Some minor fixes - [`07a9d03`](https://github.com/mountain-loop/yaak/commit/07a9d03ffbfc5be58933dbd821e87e2a32546fec) Remove log and tweak - [`e974db0`](https://github.com/mountain-loop/yaak/commit/e974db0293bdd7e6cee44e2b866e094dcf120d41) Block large request bodies from showing - [`9824fb9`](https://github.com/mountain-loop/yaak/commit/9824fb9d23071b9994abb73ea09202fec317eb07) Imports - [`303cddb`](https://github.com/mountain-loop/yaak/commit/303cddbd86809f3ce3ffdce883292de688e72287) Gen models - [`ff80ca3`](https://github.com/mountain-loop/yaak/commit/ff80ca34d060971f128dc53dece9e004b9746c6a) Gen models again - [`6b2443f`](https://github.com/mountain-loop/yaak/commit/6b2443fc6024fbaa4a351397823e9bd708b42cd6) Mark bindings as generated ### 📊 Changes **33 files changed** (+1215 additions, -331 deletions) <details> <summary>View changed files</summary> 📝 `.gitattributes` (+2 -0) ➖ `.github/workflows/claude-code-review.yml` (+0 -57) 📝 `packages/plugin-runtime-types/src/bindings/gen_models.ts` (+1 -1) 📝 `src-tauri/src/http_request.rs` (+318 -101) 📝 `src-tauri/src/lib.rs` (+24 -21) 📝 `src-tauri/src/plugin_events.rs` (+3 -0) 📝 `src-tauri/yaak-http/src/lib.rs` (+1 -0) 📝 `src-tauri/yaak-http/src/sender.rs` (+9 -8) ➕ `src-tauri/yaak-http/src/tee_reader.rs` (+171 -0) 📝 `src-tauri/yaak-http/src/transaction.rs` (+7 -7) 📝 `src-tauri/yaak-models/bindings/gen_models.ts` (+2 -2) ➕ `src-tauri/yaak-models/blob_migrations/00000000000000_init.sql` (+12 -0) ➕ `src-tauri/yaak-models/migrations/20251221100000_request-content-length.sql` (+2 -0) ➕ `src-tauri/yaak-models/src/blob_manager.rs` (+372 -0) 📝 `src-tauri/yaak-models/src/commands.rs` (+5 -2) 📝 `src-tauri/yaak-models/src/db_context.rs` (+3 -3) 📝 `src-tauri/yaak-models/src/lib.rs` (+23 -0) 📝 `src-tauri/yaak-models/src/models.rs` (+6 -2) ➕ `src-tauri/yaak-models/src/queries/http_response_events.rs` (+18 -0) 📝 `src-tauri/yaak-models/src/queries/http_responses.rs` (+11 -1) _...and 13 more files_ </details> ### 📄 Description <img width="2056" height="1274" alt="CleanShot 2025-12-22 at 08 11 58@2x" src="https://github.com/user-attachments/assets/63dc0855-c05c-4c67-8bc5-d59bb04e6079" /> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 07:20:03 +01:00
adam closed this issue 2025-12-29 07:20:03 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak#249