[PR #19] [MERGED] Cookie Support #2

Closed
opened 2025-12-29 08:30:55 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/mountain-loop/yaak/pull/19
Author: @gschier
Created: 1/28/2024
Status: Merged
Merged: 1/28/2024
Merged by: @gschier

Base: mainHead: cookie-jar


📝 Commits (10+)

📊 Changes

45 files changed (+1152 additions, -145 deletions)

View changed files

src-tauri/.sqlx/query-b5ed4dc77f8cf21de1a06f146e47821bdb51fcfe747170bea41e7a366d736bda.json (+12 -0)
src-tauri/.sqlx/query-b98609f65dd3a6bbd1ea8dc8bed2840a6d5d13fec1bbc0aa61ca4f60de98a09c.json (+12 -0)
src-tauri/.sqlx/query-cb939b45a715d91f7631dea6b2d1bdc59fb3dffbd44ff99bc15adb34ea7093f7.json (+56 -0)
src-tauri/.sqlx/query-f2ba4708d4a9ff9ce74c407a730040bd7883e9a5c0eb79ef0d8a6782a8eae299.json (+56 -0)
📝 src-tauri/Cargo.lock (+124 -5)
📝 src-tauri/Cargo.toml (+3 -1)
src-tauri/migrations/20240127013915_cookies.sql (+10 -0)
📝 src-tauri/src/analytics.rs (+9 -0)
📝 src-tauri/src/http.rs (+90 -11)
📝 src-tauri/src/main.rs (+173 -33)
📝 src-tauri/src/models.rs (+108 -1)
📝 src-tauri/tauri.conf.json (+1 -1)
src-web/components/CookieDialog.tsx (+74 -0)
src-web/components/CookieDropdown.tsx (+93 -0)
📝 src-web/components/EnvironmentActionsDropdown.tsx (+19 -16)
📝 src-web/components/EnvironmentEditDialog.tsx (+2 -2)
📝 src-web/components/GlobalHooks.tsx (+7 -0)
📝 src-web/components/GraphQLEditor.tsx (+35 -33)
📝 src-web/components/KeyboardShortcutsDialog.tsx (+1 -1)
📝 src-web/components/ResponsePane.tsx (+5 -1)

...and 25 more files

📄 Description

This PR adds cookie support to the app.


🔄 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/19 **Author:** [@gschier](https://github.com/gschier) **Created:** 1/28/2024 **Status:** ✅ Merged **Merged:** 1/28/2024 **Merged by:** [@gschier](https://github.com/gschier) **Base:** `main` ← **Head:** `cookie-jar` --- ### 📝 Commits (10+) - [`d238256`](https://github.com/mountain-loop/yaak/commit/d2382563edab660b6492720fbcbc78f771657f29) Roughly working - [`5390463`](https://github.com/mountain-loop/yaak/commit/5390463c9a665c61610c9ddd073ee38673553bb6) Back to cookie store until we handle redirects - [`ba8f5dd`](https://github.com/mountain-loop/yaak/commit/ba8f5dde88ecd7039924f49317b6dd4a76d9aa01) Clean up - [`602b42b`](https://github.com/mountain-loop/yaak/commit/602b42b4f151306c05da4311c013af2de9e05ee0) Add name to cookie jar - [`3938174`](https://github.com/mountain-loop/yaak/commit/3938174ba34224acd9955db803eb5a4bebad91df) Dialog fixes and pretty cookies table - [`5bf66bf`](https://github.com/mountain-loop/yaak/commit/5bf66bf7ada5533c3a465ca791250101486829e2) Cookie dialog empty stat - [`f36bbdf`](https://github.com/mountain-loop/yaak/commit/f36bbdfc26a16dbad0e34d6e0c362aba8d642e36) Delete and update cookie jars - [`5441354`](https://github.com/mountain-loop/yaak/commit/5441354aef81713b17d6298cd0685be864166b89) Proper active cookie jar store - [`1248f60`](https://github.com/mountain-loop/yaak/commit/1248f6002d880050bb2781c225f015765817e8ba) Remove cookie_store dep - [`ea772dc`](https://github.com/mountain-loop/yaak/commit/ea772dc9bf45795c93bfc26084e05049ee616e81) Bump version ### 📊 Changes **45 files changed** (+1152 additions, -145 deletions) <details> <summary>View changed files</summary> ➕ `src-tauri/.sqlx/query-b5ed4dc77f8cf21de1a06f146e47821bdb51fcfe747170bea41e7a366d736bda.json` (+12 -0) ➕ `src-tauri/.sqlx/query-b98609f65dd3a6bbd1ea8dc8bed2840a6d5d13fec1bbc0aa61ca4f60de98a09c.json` (+12 -0) ➕ `src-tauri/.sqlx/query-cb939b45a715d91f7631dea6b2d1bdc59fb3dffbd44ff99bc15adb34ea7093f7.json` (+56 -0) ➕ `src-tauri/.sqlx/query-f2ba4708d4a9ff9ce74c407a730040bd7883e9a5c0eb79ef0d8a6782a8eae299.json` (+56 -0) 📝 `src-tauri/Cargo.lock` (+124 -5) 📝 `src-tauri/Cargo.toml` (+3 -1) ➕ `src-tauri/migrations/20240127013915_cookies.sql` (+10 -0) 📝 `src-tauri/src/analytics.rs` (+9 -0) 📝 `src-tauri/src/http.rs` (+90 -11) 📝 `src-tauri/src/main.rs` (+173 -33) 📝 `src-tauri/src/models.rs` (+108 -1) 📝 `src-tauri/tauri.conf.json` (+1 -1) ➕ `src-web/components/CookieDialog.tsx` (+74 -0) ➕ `src-web/components/CookieDropdown.tsx` (+93 -0) 📝 `src-web/components/EnvironmentActionsDropdown.tsx` (+19 -16) 📝 `src-web/components/EnvironmentEditDialog.tsx` (+2 -2) 📝 `src-web/components/GlobalHooks.tsx` (+7 -0) 📝 `src-web/components/GraphQLEditor.tsx` (+35 -33) 📝 `src-web/components/KeyboardShortcutsDialog.tsx` (+1 -1) 📝 `src-web/components/ResponsePane.tsx` (+5 -1) _...and 25 more files_ </details> ### 📄 Description This PR adds cookie support to the app. --- <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 08:30:55 +01:00
adam closed this issue 2025-12-29 08:30:55 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/yaak-mountain-loop#2