[PR #5534] [MERGED] chore: v2025.10.0 release #5253

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

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/5534
Author: @jamesgeorge007
Created: 10/30/2025
Status: Merged
Merged: 10/31/2025
Merged by: @jamesgeorge007

Base: mainHead: next


📝 Commits (10+)

  • 743aaa1 chore: replace all instances of twitter.com with x.com (#5455)
  • bb8b9ce chore: merge hoppscotch/main into hoppscotch/next
  • c31f748 refactor: cleanup sync logic and imports (#5428)
  • 6064186 fix: reset ONBOARDING_COMPLETED to false during infra config reset (#5496)
  • cd084eb fix: ensure graceful shutdown and container stop when stopApp is called (#5494)
  • 53e8b28 chore: security patch for the dependency chain (#5487)
  • aa15837 fix: avoid rapid polling while fetching teams in selector (#5485)
  • 795cc82 fix: preserve PKCE and client secret in postman collection imports (#5480)
  • 68d1db7 feat: add auth refresh token flow if token expires (#5490)
  • 567344a fix(common): preserve file uploads in experimental scripting sandbox (#5512)

📊 Changes

261 files changed (+45896 additions, -5459 deletions)

View changed files

📝 .github/workflows/build-hoppscotch-agent.yml (+649 -228)
📝 .github/workflows/tests.yml (+4 -1)
📝 README.md (+1 -1)
📝 aio-multiport-setup.Caddyfile (+12 -1)
📝 aio-subpath-access.Caddyfile (+12 -1)
📝 healthcheck.sh (+8 -0)
📝 netlify.toml (+1 -1)
📝 package.json (+7 -6)
📝 packages/codemirror-lang-graphql/package.json (+3 -3)
📝 packages/hoppscotch-agent/package.json (+3 -3)
📝 packages/hoppscotch-agent/src-tauri/Cargo.lock (+1211 -1019)
📝 packages/hoppscotch-agent/src-tauri/Cargo.toml (+1 -1)
📝 packages/hoppscotch-agent/src-tauri/tauri.conf.json (+1 -1)
📝 packages/hoppscotch-agent/src-tauri/tauri.portable.conf.json (+1 -1)
📝 packages/hoppscotch-backend/backend.Caddyfile (+12 -1)
📝 packages/hoppscotch-backend/package.json (+21 -20)
packages/hoppscotch-backend/prisma/migrations/20251016080714_mock_server/migration.sql (+142 -0)
📝 packages/hoppscotch-backend/prisma/schema.prisma (+127 -59)
📝 packages/hoppscotch-backend/src/app.module.ts (+2 -0)
📝 packages/hoppscotch-backend/src/auth/auth.controller.ts (+1 -1)

...and 80 more files

📄 Description

This PR houses changes scoped for the v2025.10.0 release, merging changes to the default branch.

Full Changelog: https://github.com/hoppscotch/hoppscotch/compare/2025.9.2...2025.10.0


🔄 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/5534 **Author:** [@jamesgeorge007](https://github.com/jamesgeorge007) **Created:** 10/30/2025 **Status:** ✅ Merged **Merged:** 10/31/2025 **Merged by:** [@jamesgeorge007](https://github.com/jamesgeorge007) **Base:** `main` ← **Head:** `next` --- ### 📝 Commits (10+) - [`743aaa1`](https://github.com/hoppscotch/hoppscotch/commit/743aaa145ecd7a3dc96eafd2a07977636ca670f5) chore: replace all instances of `twitter.com` with `x.com` (#5455) - [`bb8b9ce`](https://github.com/hoppscotch/hoppscotch/commit/bb8b9cec8fadf8cc38f74eb9ddfcb835d935f253) chore: merge `hoppscotch/main` into `hoppscotch/next` - [`c31f748`](https://github.com/hoppscotch/hoppscotch/commit/c31f74829dbb50ba1c52d0eeb22c689f9d7df5a4) refactor: cleanup sync logic and imports (#5428) - [`6064186`](https://github.com/hoppscotch/hoppscotch/commit/6064186d300c3267170348f15682f8f97f78372a) fix: reset `ONBOARDING_COMPLETED` to `false` during infra config reset (#5496) - [`cd084eb`](https://github.com/hoppscotch/hoppscotch/commit/cd084ebbb3bab71f1a6078eac5a05a79c0e7c2e6) fix: ensure graceful shutdown and container stop when stopApp is called (#5494) - [`53e8b28`](https://github.com/hoppscotch/hoppscotch/commit/53e8b28459fe24b0f8c0dc6dbda80ac07da36198) chore: security patch for the dependency chain (#5487) - [`aa15837`](https://github.com/hoppscotch/hoppscotch/commit/aa1583763a6ff1a663fcf6eef72b7c5649381489) fix: avoid rapid polling while fetching teams in selector (#5485) - [`795cc82`](https://github.com/hoppscotch/hoppscotch/commit/795cc820dbf74a397d115df6c7800f392aade65b) fix: preserve PKCE and client secret in postman collection imports (#5480) - [`68d1db7`](https://github.com/hoppscotch/hoppscotch/commit/68d1db7e74c009d1b4280cd5c97744d3b781280d) feat: add auth refresh token flow if token expires (#5490) - [`567344a`](https://github.com/hoppscotch/hoppscotch/commit/567344a9e3369469ce7d116aac446ad09de9df5f) fix(common): preserve file uploads in experimental scripting sandbox (#5512) ### 📊 Changes **261 files changed** (+45896 additions, -5459 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build-hoppscotch-agent.yml` (+649 -228) 📝 `.github/workflows/tests.yml` (+4 -1) 📝 `README.md` (+1 -1) 📝 `aio-multiport-setup.Caddyfile` (+12 -1) 📝 `aio-subpath-access.Caddyfile` (+12 -1) 📝 `healthcheck.sh` (+8 -0) 📝 `netlify.toml` (+1 -1) 📝 `package.json` (+7 -6) 📝 `packages/codemirror-lang-graphql/package.json` (+3 -3) 📝 `packages/hoppscotch-agent/package.json` (+3 -3) 📝 `packages/hoppscotch-agent/src-tauri/Cargo.lock` (+1211 -1019) 📝 `packages/hoppscotch-agent/src-tauri/Cargo.toml` (+1 -1) 📝 `packages/hoppscotch-agent/src-tauri/tauri.conf.json` (+1 -1) 📝 `packages/hoppscotch-agent/src-tauri/tauri.portable.conf.json` (+1 -1) 📝 `packages/hoppscotch-backend/backend.Caddyfile` (+12 -1) 📝 `packages/hoppscotch-backend/package.json` (+21 -20) ➕ `packages/hoppscotch-backend/prisma/migrations/20251016080714_mock_server/migration.sql` (+142 -0) 📝 `packages/hoppscotch-backend/prisma/schema.prisma` (+127 -59) 📝 `packages/hoppscotch-backend/src/app.module.ts` (+2 -0) 📝 `packages/hoppscotch-backend/src/auth/auth.controller.ts` (+1 -1) _...and 80 more files_ </details> ### 📄 Description This PR houses changes scoped for the `v2025.10.0` release, merging changes to the default branch. * refactor: cleanup sync logic and imports by @Prit1912 in https://github.com/hoppscotch/hoppscotch/pull/5428 * fix: reset `ONBOARDING_COMPLETED` to `false` during infra config reset by @mirarifhasan in https://github.com/hoppscotch/hoppscotch/pull/5496 * fix: ensure graceful shutdown and container stop when stopApp is called by @mirarifhasan in https://github.com/hoppscotch/hoppscotch/pull/5494 * chore: security patch for the dependency chain v2025.10.0 by @mirarifhasan in https://github.com/hoppscotch/hoppscotch/pull/5487 * fix: avoid rapid polling while fetching teams in selector by @nivedin in https://github.com/hoppscotch/hoppscotch/pull/5485 * fix(common): preserve PKCE and client secret in postman collection imports by @anwarulislam in https://github.com/hoppscotch/hoppscotch/pull/5480 * feat: add auth refresh token flow if token expires by @nivedin in https://github.com/hoppscotch/hoppscotch/pull/5490 * fix(common): preserve file uploads in experimental scripting sandbox by @jamesgeorge007 in https://github.com/hoppscotch/hoppscotch/pull/5512 * feat(relay): control redirect follow by @CuriousCorrelation in https://github.com/hoppscotch/hoppscotch/pull/5508 * feat(scripting-revamp): chai powered assertions and postman compatibility layer by @jamesgeorge007 in https://github.com/hoppscotch/hoppscotch/pull/5417 * feat(ci): agent workflow with platform jobs by @CuriousCorrelation in https://github.com/hoppscotch/hoppscotch/pull/5514 * feat: add `$randomCompanyName` predefined variable by @EmanFateen in https://github.com/hoppscotch/hoppscotch/pull/5479 * feature: mock server by @mirarifhasan in https://github.com/hoppscotch/hoppscotch/pull/5482 * feat: add configurable session cookie name by @CHANDRAHARSHIT in https://github.com/hoppscotch/hoppscotch/pull/5425 * fix(js-sandbox): resolve environment variable fallback behavior by @chhaviG22 in https://github.com/hoppscotch/hoppscotch/pull/5439 * chore: mock server name validation and prevent duplicates by @mirarifhasan in https://github.com/hoppscotch/hoppscotch/pull/5524 * fix (common): address mock server issues and improve the UI by @anwarulislam in https://github.com/hoppscotch/hoppscotch/pull/5517 * feat(common): handle null collection and add private access hint for mock servers by @anwarulislam in https://github.com/hoppscotch/hoppscotch/pull/5527 * chore(agent): bump version to `v0.1.15` by @CuriousCorrelation in https://github.com/hoppscotch/hoppscotch/pull/5531 * feat(common): mock server ui improvements by @anwarulislam in https://github.com/hoppscotch/hoppscotch/pull/5532 * fix(common): use fallback ref ID for mock server creation with legacy collections by @anwarulislam in https://github.com/hoppscotch/hoppscotch/pull/5536 * chore: `v2025.10.0` release by @jamesgeorge007 in https://github.com/hoppscotch/hoppscotch/pull/5534 **Full Changelog**: https://github.com/hoppscotch/hoppscotch/compare/2025.9.2...2025.10.0 --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 02:43:06 +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#5253
No description provided.