[PR #2628] [CLOSED] test #3948

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2628
Author: @pucilpet
Created: 8/31/2022
Status: Closed

Base: feat/nextHead: main


📝 Commits (10+)

  • 1ab54b0 fix: i18n breaking on switching between realtime tabs
  • d035262 refactor: lowercase routes
  • 54a12ef fix: team collections tab visible when logging out (#2494)
  • 722864d update tw.json (#2511)
  • c0e3a2b fix: disabled search in team collection (#2523)
  • d335ac1 fix: search panel position in response (#2510)
  • e9576dd fix: ignore confirm save modal on same request selection even when no session
  • fa0e7f4 fix: curl parser x-www-form-urlencoded body parsing (#2528)
  • 0c31d92 docs: fix PWA broken link (#2558)
  • 73fdfbd feat: added delay flag in @hoppscotch/cli and related tests (#2527)

📊 Changes

46 files changed (+931 additions, -194 deletions)

View changed files

📝 README.md (+1 -1)
📝 packages/hoppscotch-app/components/app/PaneLayout.vue (+68 -6)
📝 packages/hoppscotch-app/components/collections/ChooseType.vue (+1 -1)
📝 packages/hoppscotch-app/components/collections/index.vue (+1 -0)
📝 packages/hoppscotch-app/components/collections/my/Request.vue (+8 -1)
📝 packages/hoppscotch-app/components/collections/teams/Request.vue (+2 -2)
📝 packages/hoppscotch-app/helpers/curl/__tests__/curlparser.spec.js (+31 -0)
📝 packages/hoppscotch-app/helpers/curl/curlparser.ts (+2 -1)
📝 packages/hoppscotch-app/helpers/editor/extensions/HoppEnvironment.ts (+4 -3)
📝 packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts (+5 -1)
📝 packages/hoppscotch-app/helpers/fb/collections.ts (+26 -6)
📝 packages/hoppscotch-app/helpers/fb/environments.ts (+27 -6)
📝 packages/hoppscotch-app/helpers/fb/history.ts (+38 -18)
📝 packages/hoppscotch-app/helpers/functional/record.ts (+36 -1)
📝 packages/hoppscotch-app/helpers/keybindings.ts (+1 -0)
📝 packages/hoppscotch-app/helpers/shortcuts.js (+3 -3)
📝 packages/hoppscotch-app/helpers/utils/EffectiveURL.ts (+39 -19)
📝 packages/hoppscotch-app/helpers/utils/composables.ts (+9 -0)
📝 packages/hoppscotch-app/locales/tw.json (+57 -14)
📝 packages/hoppscotch-app/package.json (+1 -1)

...and 26 more files

📄 Description

Closes #

Description

Checks

  • My pull request adheres to the code style of this project
  • My code requires changes to the documentation
  • I have updated the documentation as required
  • All the tests have passed

Additional Information


🔄 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/2628 **Author:** [@pucilpet](https://github.com/pucilpet) **Created:** 8/31/2022 **Status:** ❌ Closed **Base:** `feat/next` ← **Head:** `main` --- ### 📝 Commits (10+) - [`1ab54b0`](https://github.com/hoppscotch/hoppscotch/commit/1ab54b0ce74b132ee84e6607464856a0d09b8114) fix: i18n breaking on switching between realtime tabs - [`d035262`](https://github.com/hoppscotch/hoppscotch/commit/d035262e1a3512df80e02c59184d22cc78350f02) refactor: lowercase routes - [`54a12ef`](https://github.com/hoppscotch/hoppscotch/commit/54a12ef6fa437762a30575206de464844c8fa00b) fix: team collections tab visible when logging out (#2494) - [`722864d`](https://github.com/hoppscotch/hoppscotch/commit/722864da624e1cd8e74013adeacca429352cb8e6) update tw.json (#2511) - [`c0e3a2b`](https://github.com/hoppscotch/hoppscotch/commit/c0e3a2be0bd9d53027a17a124ed74061dc40f664) fix: disabled search in team collection (#2523) - [`d335ac1`](https://github.com/hoppscotch/hoppscotch/commit/d335ac1d8015554a49217ff64078f0b003073568) fix: search panel position in response (#2510) - [`e9576dd`](https://github.com/hoppscotch/hoppscotch/commit/e9576dd33962d675978be6e5461f9303b811abae) fix: ignore confirm save modal on same request selection even when no session - [`fa0e7f4`](https://github.com/hoppscotch/hoppscotch/commit/fa0e7f4785e8fe0535a3a9a274bf0144d1f0749b) fix: curl parser x-www-form-urlencoded body parsing (#2528) - [`0c31d92`](https://github.com/hoppscotch/hoppscotch/commit/0c31d9201f9d64c7e94788aee72d56bf8636c051) docs: fix PWA broken link (#2558) - [`73fdfbd`](https://github.com/hoppscotch/hoppscotch/commit/73fdfbd2c82b56326cedb8a61dc24fe8dcd4f66a) feat: added delay flag in @hoppscotch/cli and related tests (#2527) ### 📊 Changes **46 files changed** (+931 additions, -194 deletions) <details> <summary>View changed files</summary> 📝 `README.md` (+1 -1) 📝 `packages/hoppscotch-app/components/app/PaneLayout.vue` (+68 -6) 📝 `packages/hoppscotch-app/components/collections/ChooseType.vue` (+1 -1) 📝 `packages/hoppscotch-app/components/collections/index.vue` (+1 -0) 📝 `packages/hoppscotch-app/components/collections/my/Request.vue` (+8 -1) 📝 `packages/hoppscotch-app/components/collections/teams/Request.vue` (+2 -2) 📝 `packages/hoppscotch-app/helpers/curl/__tests__/curlparser.spec.js` (+31 -0) 📝 `packages/hoppscotch-app/helpers/curl/curlparser.ts` (+2 -1) 📝 `packages/hoppscotch-app/helpers/editor/extensions/HoppEnvironment.ts` (+4 -3) 📝 `packages/hoppscotch-app/helpers/editor/themes/baseTheme.ts` (+5 -1) 📝 `packages/hoppscotch-app/helpers/fb/collections.ts` (+26 -6) 📝 `packages/hoppscotch-app/helpers/fb/environments.ts` (+27 -6) 📝 `packages/hoppscotch-app/helpers/fb/history.ts` (+38 -18) 📝 `packages/hoppscotch-app/helpers/functional/record.ts` (+36 -1) 📝 `packages/hoppscotch-app/helpers/keybindings.ts` (+1 -0) 📝 `packages/hoppscotch-app/helpers/shortcuts.js` (+3 -3) 📝 `packages/hoppscotch-app/helpers/utils/EffectiveURL.ts` (+39 -19) 📝 `packages/hoppscotch-app/helpers/utils/composables.ts` (+9 -0) 📝 `packages/hoppscotch-app/locales/tw.json` (+57 -14) 📝 `packages/hoppscotch-app/package.json` (+1 -1) _...and 26 more files_ </details> ### 📄 Description <!-- Thanks for creating this pull request 🤗 Please make sure that the pull request is limited to one type (docs, feature, etc.) and keep it as small as possible. You can open multiple prs instead of opening a huge one. --> <!-- If this pull request closes an issue, please mention the issue number below --> Closes # <!-- Issue # here --> ### Description <!-- Add a brief description of the pull request --> <!-- You can also choose to add a list of changes and if they have been completed or not by using the markdown to-do list syntax - [ ] Not Completed - [x] Completed --> ### Checks <!-- Make sure your pull request passes the CI checks and do check the following fields as needed - --> - [ ] My pull request adheres to the code style of this project - [ ] My code requires changes to the documentation - [ ] I have updated the documentation as required - [ ] All the tests have passed ### Additional Information <!-- Any additional information like breaking changes, dependencies added, screenshots, comparisons between new and old behavior, etc. --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:31:15 +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#3948
No description provided.