[PR #3261] [MERGED] 1.19.2 #36918

Closed
opened 2026-06-18 22:10:54 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/fosrl/pangolin/pull/3261
Author: @oschwartz10612
Created: 6/12/2026
Status: Merged
Merged: 6/12/2026
Merged by: @oschwartz10612

Base: mainHead: dev


📝 Commits (10+)

  • a8ca28a Add default for target type
  • afaf5f9 New translations en-us.json (French)
  • fc98223 New translations en-us.json (Spanish)
  • 07ae57e New translations en-us.json (Bulgarian)
  • 1f0361e New translations en-us.json (Czech)
  • ce43e71 New translations en-us.json (German)
  • 30a6889 New translations en-us.json (Italian)
  • ef0575c New translations en-us.json (Korean)
  • 86ff272 New translations en-us.json (Dutch)
  • 5b0f79a New translations en-us.json (Polish)

📊 Changes

21 files changed (+2957 additions, -753 deletions)

View changed files

📝 messages/bg-BG.json (+193 -49)
📝 messages/cs-CZ.json (+193 -49)
📝 messages/de-DE.json (+187 -43)
📝 messages/es-ES.json (+193 -49)
📝 messages/fr-FR.json (+187 -43)
📝 messages/it-IT.json (+192 -48)
📝 messages/ko-KR.json (+193 -49)
📝 messages/nb-NO.json (+193 -49)
📝 messages/nl-NL.json (+192 -48)
📝 messages/pl-PL.json (+192 -48)
📝 messages/pt-PT.json (+194 -50)
📝 messages/ru-RU.json (+187 -43)
📝 messages/tr-TR.json (+194 -50)
📝 messages/zh-CN.json (+194 -50)
📝 server/auth/canUserAccessResource.ts (+96 -24)
📝 server/lib/blueprints/applyNewtDockerBlueprint.ts (+4 -1)
📝 server/lib/blueprints/publicResources.ts (+39 -1)
📝 server/private/routers/external.ts (+1 -1)
📝 server/private/routers/ssh/signSshKey.ts (+124 -53)
📝 server/setup/scriptsSqlite/1.19.0.ts (+2 -2)

...and 1 more files

📄 Description

  • Add default for target type
  • Pull roles from resource policies for ssh
  • Enforce the action inside of the function
  • Fix #3252
  • Allow missing agent host

🔄 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/3261 **Author:** [@oschwartz10612](https://github.com/oschwartz10612) **Created:** 6/12/2026 **Status:** ✅ Merged **Merged:** 6/12/2026 **Merged by:** [@oschwartz10612](https://github.com/oschwartz10612) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`a8ca28a`](https://github.com/fosrl/pangolin/commit/a8ca28acb2c29240b6e9758999bac5d190f47017) Add default for target type - [`afaf5f9`](https://github.com/fosrl/pangolin/commit/afaf5f976e64951dbd7b724b251471bbc9611a3b) New translations en-us.json (French) - [`fc98223`](https://github.com/fosrl/pangolin/commit/fc982232d629a8c9acc467d3859eb0d8c3ebae1f) New translations en-us.json (Spanish) - [`07ae57e`](https://github.com/fosrl/pangolin/commit/07ae57ea7264e84fe6621d64e3ac1b1e5a8fc7e5) New translations en-us.json (Bulgarian) - [`1f0361e`](https://github.com/fosrl/pangolin/commit/1f0361e687866359db633233b0e97859180c2172) New translations en-us.json (Czech) - [`ce43e71`](https://github.com/fosrl/pangolin/commit/ce43e717d56665294ccf4635575cd260dba4073d) New translations en-us.json (German) - [`30a6889`](https://github.com/fosrl/pangolin/commit/30a6889ba820d9d41e24e6e967ee3d6bf59b422a) New translations en-us.json (Italian) - [`ef0575c`](https://github.com/fosrl/pangolin/commit/ef0575cc3667859571f118621128b41e3bc1174c) New translations en-us.json (Korean) - [`86ff272`](https://github.com/fosrl/pangolin/commit/86ff2720954399b235829263d51f10adc4a833e6) New translations en-us.json (Dutch) - [`5b0f79a`](https://github.com/fosrl/pangolin/commit/5b0f79a8bc9cdfcb732d32c37c3d3522a8f2d58f) New translations en-us.json (Polish) ### 📊 Changes **21 files changed** (+2957 additions, -753 deletions) <details> <summary>View changed files</summary> 📝 `messages/bg-BG.json` (+193 -49) 📝 `messages/cs-CZ.json` (+193 -49) 📝 `messages/de-DE.json` (+187 -43) 📝 `messages/es-ES.json` (+193 -49) 📝 `messages/fr-FR.json` (+187 -43) 📝 `messages/it-IT.json` (+192 -48) 📝 `messages/ko-KR.json` (+193 -49) 📝 `messages/nb-NO.json` (+193 -49) 📝 `messages/nl-NL.json` (+192 -48) 📝 `messages/pl-PL.json` (+192 -48) 📝 `messages/pt-PT.json` (+194 -50) 📝 `messages/ru-RU.json` (+187 -43) 📝 `messages/tr-TR.json` (+194 -50) 📝 `messages/zh-CN.json` (+194 -50) 📝 `server/auth/canUserAccessResource.ts` (+96 -24) 📝 `server/lib/blueprints/applyNewtDockerBlueprint.ts` (+4 -1) 📝 `server/lib/blueprints/publicResources.ts` (+39 -1) 📝 `server/private/routers/external.ts` (+1 -1) 📝 `server/private/routers/ssh/signSshKey.ts` (+124 -53) 📝 `server/setup/scriptsSqlite/1.19.0.ts` (+2 -2) _...and 1 more files_ </details> ### 📄 Description - **Add default for target type** - **Pull roles from resource policies for ssh** - **Enforce the action inside of the function** - **Fix #3252** - **Allow missing agent host** --- <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-06-18 22:10:54 -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#36918