[PR #5992] [CLOSED] PR created on wrong repository #5453

Closed
opened 2026-03-17 02:53:40 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/5992
Author: @chlee1001
Created: 3/15/2026
Status: Closed

Base: mainHead: fix/documentation-formatting-bugs


📝 Commits (10+)

  • 8d47b4e fix(mock-server): improve path parsing in parseExample
  • c4d902e feat(mock-server): add proper variable syntax validation
  • bf50f2d perf(mock-server): optimize collection ID fetching with BFS
  • 325710f fix(mock-server): correct query parameter scoring algorithm
  • c821af7 perf(mock-server): optimize example search with Map indexing
  • 1a76e80 Merge pull request #1 from chlee1001/feat/improve-mock-server-matching
  • e73dd2c Merge pull request #2 from chlee1001/sync-upstream-main
  • 0dacd57 feat(backend): Add User Groups database models and migration
  • f9338e6 feat(backend): Implement User Groups core services (Phase 2-Part 1)
  • d024f3b feat(backend): Add User Groups error codes and model types

📊 Changes

125 files changed (+8224 additions, -1997 deletions)

View changed files

.github/FUNDING.yml (+0 -2)
.github/dependabot.yml (+0 -10)
.github/workflows/build-hoppscotch-agent.yml (+0 -670)
.github/workflows/build-hoppscotch-desktop.yml (+0 -502)
.github/workflows/codeql-analysis.yml (+0 -63)
.github/workflows/release-push-docker.yml (+0 -182)
.github/workflows/tests.yml (+0 -45)
📝 .gitignore (+5 -0)
📝 README.md (+73 -241)
deployment-guide.md (+138 -0)
development-debugging-guide.md (+448 -0)
📝 package.json (+7 -0)
📝 packages/hoppscotch-backend/package.json (+1 -0)
packages/hoppscotch-backend/prisma/migrations/20251223020227_add_user_groups/migration.sql (+138 -0)
📝 packages/hoppscotch-backend/prisma/schema.prisma (+104 -1)
📝 packages/hoppscotch-backend/src/app.module.ts (+2 -0)
📝 packages/hoppscotch-backend/src/auth/auth.controller.ts (+90 -2)
📝 packages/hoppscotch-backend/src/auth/auth.module.ts (+4 -0)
packages/hoppscotch-backend/src/auth/guards/fusionauth-sso.guard.ts (+45 -0)
📝 packages/hoppscotch-backend/src/auth/helper.ts (+2 -0)

...and 80 more files

📄 Description

This PR was accidentally created on the wrong repository. Please disregard.
Apologies for the confusion.


Summary by cubic

Fixes a desync in the collection documentation editor and normalizes team request subscription payloads to prevent formatting loss and schema mismatches.

  • Bug Fixes

    • Sync the editor content with collectionDescription via a watcher in CollectionPreview.vue so external updates (e.g., team subscriptions) keep formatting intact.
    • Wrap JSON.parse(...) with translateToNewRequest() in teamRequestUpdated and teamRequestMoved handlers across TeamCollectionAdapter.ts and team-collection.service.ts, matching the existing teamRequestAdded path.
  • New Features

    • Add local dev helper scripts in package.json, deployment and debugging guides, and update .gitignore for debug artifacts.

Written for commit 1212816423. Summary will update on new commits.


🔄 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/5992 **Author:** [@chlee1001](https://github.com/chlee1001) **Created:** 3/15/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `fix/documentation-formatting-bugs` --- ### 📝 Commits (10+) - [`8d47b4e`](https://github.com/hoppscotch/hoppscotch/commit/8d47b4e68ce8ea0d61dc409d5e6183869758e0c0) fix(mock-server): improve path parsing in parseExample - [`c4d902e`](https://github.com/hoppscotch/hoppscotch/commit/c4d902e3a993fae5b41782734a3848e3937fda77) feat(mock-server): add proper variable syntax validation - [`bf50f2d`](https://github.com/hoppscotch/hoppscotch/commit/bf50f2d0602ce6a2db206245c16332ab4a220093) perf(mock-server): optimize collection ID fetching with BFS - [`325710f`](https://github.com/hoppscotch/hoppscotch/commit/325710fa67be8f2275e80752e63c4e61f5f94f78) fix(mock-server): correct query parameter scoring algorithm - [`c821af7`](https://github.com/hoppscotch/hoppscotch/commit/c821af7099306c57dd4c91ea5dee7a2cbaafe358) perf(mock-server): optimize example search with Map indexing - [`1a76e80`](https://github.com/hoppscotch/hoppscotch/commit/1a76e80d5c7ca121106ba2d9f8c0624a23da0d9a) Merge pull request #1 from chlee1001/feat/improve-mock-server-matching - [`e73dd2c`](https://github.com/hoppscotch/hoppscotch/commit/e73dd2cf0fe2563b6f05f1fa3306d0dcfcb96bcd) Merge pull request #2 from chlee1001/sync-upstream-main - [`0dacd57`](https://github.com/hoppscotch/hoppscotch/commit/0dacd57f675f20bdb0d2cf01ba69f9301ba3657a) feat(backend): Add User Groups database models and migration - [`f9338e6`](https://github.com/hoppscotch/hoppscotch/commit/f9338e6db6ce2ec964e406109d5d967ac856fd16) feat(backend): Implement User Groups core services (Phase 2-Part 1) - [`d024f3b`](https://github.com/hoppscotch/hoppscotch/commit/d024f3b8ca190682fb5761db09c142cd9036903f) feat(backend): Add User Groups error codes and model types ### 📊 Changes **125 files changed** (+8224 additions, -1997 deletions) <details> <summary>View changed files</summary> ➖ `.github/FUNDING.yml` (+0 -2) ➖ `.github/dependabot.yml` (+0 -10) ➖ `.github/workflows/build-hoppscotch-agent.yml` (+0 -670) ➖ `.github/workflows/build-hoppscotch-desktop.yml` (+0 -502) ➖ `.github/workflows/codeql-analysis.yml` (+0 -63) ➖ `.github/workflows/release-push-docker.yml` (+0 -182) ➖ `.github/workflows/tests.yml` (+0 -45) 📝 `.gitignore` (+5 -0) 📝 `README.md` (+73 -241) ➕ `deployment-guide.md` (+138 -0) ➕ `development-debugging-guide.md` (+448 -0) 📝 `package.json` (+7 -0) 📝 `packages/hoppscotch-backend/package.json` (+1 -0) ➕ `packages/hoppscotch-backend/prisma/migrations/20251223020227_add_user_groups/migration.sql` (+138 -0) 📝 `packages/hoppscotch-backend/prisma/schema.prisma` (+104 -1) 📝 `packages/hoppscotch-backend/src/app.module.ts` (+2 -0) 📝 `packages/hoppscotch-backend/src/auth/auth.controller.ts` (+90 -2) 📝 `packages/hoppscotch-backend/src/auth/auth.module.ts` (+4 -0) ➕ `packages/hoppscotch-backend/src/auth/guards/fusionauth-sso.guard.ts` (+45 -0) 📝 `packages/hoppscotch-backend/src/auth/helper.ts` (+2 -0) _...and 80 more files_ </details> ### 📄 Description This PR was accidentally created on the wrong repository. Please disregard. Apologies for the confusion. <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Fixes a desync in the collection documentation editor and normalizes team request subscription payloads to prevent formatting loss and schema mismatches. - **Bug Fixes** - Sync the editor content with `collectionDescription` via a watcher in `CollectionPreview.vue` so external updates (e.g., team subscriptions) keep formatting intact. - Wrap `JSON.parse(...)` with `translateToNewRequest()` in `teamRequestUpdated` and `teamRequestMoved` handlers across `TeamCollectionAdapter.ts` and `team-collection.service.ts`, matching the existing `teamRequestAdded` path. - **New Features** - Add local dev helper scripts in `package.json`, deployment and debugging guides, and update `.gitignore` for debug artifacts. <sup>Written for commit 1212816423cb1a973c8560356c22f32b92a830bb. Summary will update on new commits.</sup> <!-- End of auto-generated description by cubic. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 02:53:40 +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#5453
No description provided.