[PR #1952] [MERGED] realtime persistence. #3581

Closed
opened 2026-03-17 01:11:07 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/1952
Author: @0xc0Der
Created: 11/15/2021
Status: Merged
Merged: 12/2/2021
Merged by: @AndrewBastin

Base: mainHead: realtime-persistence


📝 Commits (7)

📊 Changes

10 files changed (+1124 additions, -73 deletions)

View changed files

📝 packages/hoppscotch-app/components/realtime/Mqtt.vue (+43 -15)
📝 packages/hoppscotch-app/components/realtime/Socketio.vue (+42 -17)
📝 packages/hoppscotch-app/components/realtime/Sse.vue (+38 -17)
📝 packages/hoppscotch-app/components/realtime/Websocket.vue (+59 -24)
packages/hoppscotch-app/helpers/types/HoppRealtimeLog.ts (+8 -0)
packages/hoppscotch-app/newstore/MQTTSession.ts (+190 -0)
packages/hoppscotch-app/newstore/SSESession.ts (+192 -0)
packages/hoppscotch-app/newstore/SocketIOSession.ts (+221 -0)
packages/hoppscotch-app/newstore/WebSocketSession.ts (+275 -0)
📝 packages/hoppscotch-app/newstore/localpersistence.ts (+56 -0)

📄 Description

realtime persistence: solves issue #1196.

  • websocket.
  • socketio.
  • sse.
  • mqtt.

🔄 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/hoppscotch/hoppscotch/pull/1952 **Author:** [@0xc0Der](https://github.com/0xc0Der) **Created:** 11/15/2021 **Status:** ✅ Merged **Merged:** 12/2/2021 **Merged by:** [@AndrewBastin](https://github.com/AndrewBastin) **Base:** `main` ← **Head:** `realtime-persistence` --- ### 📝 Commits (7) - [`4586bca`](https://github.com/hoppscotch/hoppscotch/commit/4586bca92596c0635fc00bcad3f075f57b47206e) feat: websocket persistence - [`f34e320`](https://github.com/hoppscotch/hoppscotch/commit/f34e32056b8078822ed303b2427cef4c40496a8e) feat: socketio persistence - [`ffceabb`](https://github.com/hoppscotch/hoppscotch/commit/ffceabb6e266bed8f920f569cc926cfd01877657) feat: sse persistence - [`0c55608`](https://github.com/hoppscotch/hoppscotch/commit/0c556082436cdf385e09ea0642167fb0bb0b1972) feat: mqtt persistence - [`5363b2b`](https://github.com/hoppscotch/hoppscotch/commit/5363b2b636f002f4bb191d79367bbe5256f584b8) fix: added types - [`eed7b55`](https://github.com/hoppscotch/hoppscotch/commit/eed7b551b22bb5a524e22b379e8260db3e3fbd3e) fix: typescript issues - [`142b207`](https://github.com/hoppscotch/hoppscotch/commit/142b207fa276128bc9aae094dbbdd4d50914c498) Merge branch 'main' into realtime-persistence ### 📊 Changes **10 files changed** (+1124 additions, -73 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-app/components/realtime/Mqtt.vue` (+43 -15) 📝 `packages/hoppscotch-app/components/realtime/Socketio.vue` (+42 -17) 📝 `packages/hoppscotch-app/components/realtime/Sse.vue` (+38 -17) 📝 `packages/hoppscotch-app/components/realtime/Websocket.vue` (+59 -24) ➕ `packages/hoppscotch-app/helpers/types/HoppRealtimeLog.ts` (+8 -0) ➕ `packages/hoppscotch-app/newstore/MQTTSession.ts` (+190 -0) ➕ `packages/hoppscotch-app/newstore/SSESession.ts` (+192 -0) ➕ `packages/hoppscotch-app/newstore/SocketIOSession.ts` (+221 -0) ➕ `packages/hoppscotch-app/newstore/WebSocketSession.ts` (+275 -0) 📝 `packages/hoppscotch-app/newstore/localpersistence.ts` (+56 -0) </details> ### 📄 Description **realtime persistence**: solves issue #1196. - [x] websocket. - [x] socketio. - [x] sse. - [x] mqtt. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:11:07 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3581
No description provided.