[PR #1467] [MERGED] 1.10.0 #5455

Closed
opened 2026-04-23 02:34:19 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/1467
Author: @oschwartz10612
Created: 9/15/2025
Status: Merged
Merged: 9/15/2025
Merged by: @oschwartz10612

Base: mainHead: dev


📝 Commits (10+)

  • 84fb3ad Enter key handling & hostname field reset in resource create
  • 86956b8 fix enter key reload issue
  • 2f89a16 minor fix to domain sanitize when create resources
  • 7b7f65d Add default to siteResources niceId
  • afa9acf feat(sites): adding official kubernetes helm install command for newt
  • 5b840d7 Merge pull request #1465 from marcschaeferger/dev
  • 4bc1e10 Adjust default to prefix
  • a4fe86e Merge pull request #1406 from Pallavikumarimdb/enhancement-#906/enter-key-form-behavior
  • 97f22ec Merge branch 'dev' of github.com:fosrl/pangolin into dev
  • bc78b95 Remove toast

📊 Changes

21 files changed (+247 additions, -143 deletions)

View changed files

📝 messages/bg-BG.json (+8 -7)
📝 messages/cs-CZ.json (+8 -7)
📝 messages/de-DE.json (+10 -9)
📝 messages/es-ES.json (+10 -9)
📝 messages/fr-FR.json (+10 -9)
📝 messages/it-IT.json (+10 -9)
📝 messages/ko-KR.json (+10 -9)
📝 messages/nb-NO.json (+10 -9)
📝 messages/nl-NL.json (+10 -9)
📝 messages/pl-PL.json (+10 -9)
📝 messages/pt-PT.json (+10 -9)
📝 messages/ru-RU.json (+10 -9)
📝 messages/tr-TR.json (+10 -9)
📝 messages/zh-CN.json (+10 -9)
📝 server/setup/scriptsSqlite/1.10.0.ts (+1 -1)
📝 src/app/[orgId]/settings/api-keys/create/page.tsx (+5 -0)
📝 src/app/[orgId]/settings/clients/create/page.tsx (+13 -0)
📝 src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx (+2 -2)
📝 src/app/[orgId]/settings/resources/create/page.tsx (+56 -17)
📝 src/app/[orgId]/settings/sites/create/page.tsx (+29 -1)

...and 1 more files

📄 Description

Community Contribution License Agreement

By creating this pull request, I grant the project maintainers an unlimited,
perpetual license to use, modify, and redistribute these contributions under any terms they
choose, including both the AGPLv3 and the Fossorial Commercial license terms. I
represent that I have the right to grant this license for all contributed content.

Description


🔄 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/fosrl/pangolin/pull/1467 **Author:** [@oschwartz10612](https://github.com/oschwartz10612) **Created:** 9/15/2025 **Status:** ✅ Merged **Merged:** 9/15/2025 **Merged by:** [@oschwartz10612](https://github.com/oschwartz10612) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`84fb3ad`](https://github.com/fosrl/pangolin/commit/84fb3add337df64b7e79fb21d9d7847d9fb9e596) Enter key handling & hostname field reset in resource create - [`86956b8`](https://github.com/fosrl/pangolin/commit/86956b8cacb3f50351d6fa922367a173d0c7a13b) fix enter key reload issue - [`2f89a16`](https://github.com/fosrl/pangolin/commit/2f89a1685213863156d02754bd09ce725340ecd4) minor fix to domain sanitize when create resources - [`7b7f65d`](https://github.com/fosrl/pangolin/commit/7b7f65da39b0766dcc1f52ea54865a0d61f81576) Add default to siteResources niceId - [`afa9acf`](https://github.com/fosrl/pangolin/commit/afa9acfb1e8d59743a3a7f6b0700f6e4e8c3a2c3) feat(sites): adding official kubernetes helm install command for newt - [`5b840d7`](https://github.com/fosrl/pangolin/commit/5b840d73bb9d1d768d3affcc54c00a8aa51a05d7) Merge pull request #1465 from marcschaeferger/dev - [`4bc1e10`](https://github.com/fosrl/pangolin/commit/4bc1e10ecbb3e935da75ca4b9b7d3e2848ee8c65) Adjust default to prefix - [`a4fe86e`](https://github.com/fosrl/pangolin/commit/a4fe86e38ac79a78b5635df27811dc3d8459568d) Merge pull request #1406 from Pallavikumarimdb/enhancement-#906/enter-key-form-behavior - [`97f22ec`](https://github.com/fosrl/pangolin/commit/97f22eccbb7193f32334b2721470238b1438946c) Merge branch 'dev' of github.com:fosrl/pangolin into dev - [`bc78b95`](https://github.com/fosrl/pangolin/commit/bc78b95265774d730ec4ae384746667f76f2a585) Remove toast ### 📊 Changes **21 files changed** (+247 additions, -143 deletions) <details> <summary>View changed files</summary> 📝 `messages/bg-BG.json` (+8 -7) 📝 `messages/cs-CZ.json` (+8 -7) 📝 `messages/de-DE.json` (+10 -9) 📝 `messages/es-ES.json` (+10 -9) 📝 `messages/fr-FR.json` (+10 -9) 📝 `messages/it-IT.json` (+10 -9) 📝 `messages/ko-KR.json` (+10 -9) 📝 `messages/nb-NO.json` (+10 -9) 📝 `messages/nl-NL.json` (+10 -9) 📝 `messages/pl-PL.json` (+10 -9) 📝 `messages/pt-PT.json` (+10 -9) 📝 `messages/ru-RU.json` (+10 -9) 📝 `messages/tr-TR.json` (+10 -9) 📝 `messages/zh-CN.json` (+10 -9) 📝 `server/setup/scriptsSqlite/1.10.0.ts` (+1 -1) 📝 `src/app/[orgId]/settings/api-keys/create/page.tsx` (+5 -0) 📝 `src/app/[orgId]/settings/clients/create/page.tsx` (+13 -0) 📝 `src/app/[orgId]/settings/resources/[niceId]/proxy/page.tsx` (+2 -2) 📝 `src/app/[orgId]/settings/resources/create/page.tsx` (+56 -17) 📝 `src/app/[orgId]/settings/sites/create/page.tsx` (+29 -1) _...and 1 more files_ </details> ### 📄 Description ## Community Contribution License Agreement By creating this pull request, I grant the project maintainers an unlimited, perpetual license to use, modify, and redistribute these contributions under any terms they choose, including both the AGPLv3 and the Fossorial Commercial license terms. I represent that I have the right to grant this license for all contributed content. ## Description --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-23 02:34:19 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/pangolin#5455