[PR #2463] [MERGED] 1.15.3 #33143

Closed
opened 2026-06-15 10:38:27 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

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

Base: mainHead: dev


📝 Commits (10+)

  • f2ba4b2 Dont write stripe to files anymore
  • f899326 Change features, remove site uptime
  • a8f6b6c prefill username in login
  • ac09e3a Wrap insert in transaction
  • 34cced8 Switching to new pricing - remove old feature tracking
  • 313acab Wrap insert in transaction
  • 6cfc7b7 Switch to the new tier system and clean up checks
  • e101ac3 Basic billing page is working
  • efc6ef3 show features in ce
  • 410ed39 use pangolin cli in machine client commands

📊 Changes

44 files changed (+777 additions, -921 deletions)

View changed files

📝 .dockerignore (+2 -1)
📝 .github/workflows/cicd.yml (+111 -78)
.github/workflows/cicd.yml.backup (+0 -426)
📝 .github/workflows/saas.yml (+1 -1)
📝 messages/bg-BG.json (+5 -2)
📝 messages/cs-CZ.json (+5 -2)
📝 messages/de-DE.json (+5 -2)
📝 messages/en-US.json (+5 -2)
📝 messages/es-ES.json (+5 -2)
📝 messages/fr-FR.json (+5 -2)
📝 messages/it-IT.json (+5 -2)
📝 messages/ko-KR.json (+5 -2)
📝 messages/nb-NO.json (+5 -2)
📝 messages/nl-NL.json (+5 -2)
📝 messages/pl-PL.json (+5 -2)
📝 messages/pt-PT.json (+5 -2)
📝 messages/ru-RU.json (+5 -2)
📝 messages/tr-TR.json (+5 -2)
📝 messages/zh-CN.json (+5 -2)
📝 server/db/sqlite/schema/privateSchema.ts (+1 -0)

...and 24 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.


🔄 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/2463 **Author:** [@oschwartz10612](https://github.com/oschwartz10612) **Created:** 2/12/2026 **Status:** ✅ Merged **Merged:** 2/12/2026 **Merged by:** [@oschwartz10612](https://github.com/oschwartz10612) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f2ba4b2`](https://github.com/fosrl/pangolin/commit/f2ba4b270f96bb49b0aa01e4e89b642abc186635) Dont write stripe to files anymore - [`f899326`](https://github.com/fosrl/pangolin/commit/f8993261891a2ff90d27056eecadcce6f93aa292) Change features, remove site uptime - [`a8f6b6c`](https://github.com/fosrl/pangolin/commit/a8f6b6c1daee1e2af0d1931b2bedeef32f062b99) prefill username in login - [`ac09e3a`](https://github.com/fosrl/pangolin/commit/ac09e3aaf99bf16c3a65ad64f10d34193f76bab1) Wrap insert in transaction - [`34cced8`](https://github.com/fosrl/pangolin/commit/34cced872fd6429b6e15bc525c52900a6ebe9c97) Switching to new pricing - remove old feature tracking - [`313acab`](https://github.com/fosrl/pangolin/commit/313acabc86fdac4851ea9d1da549af622a3e6c7c) Wrap insert in transaction - [`6cfc7b7`](https://github.com/fosrl/pangolin/commit/6cfc7b7c699b45d6a3d982b136727a66a9410e57) Switch to the new tier system and clean up checks - [`e101ac3`](https://github.com/fosrl/pangolin/commit/e101ac341b8fa4a9c5b698f1c36cf3d1f5bfc16b) Basic billing page is working - [`efc6ef3`](https://github.com/fosrl/pangolin/commit/efc6ef3075a7706b3411fddd603d661b16d4c34e) show features in ce - [`410ed39`](https://github.com/fosrl/pangolin/commit/410ed3949bb152579f59e14d2934237b9dbc5dea) use pangolin cli in machine client commands ### 📊 Changes **44 files changed** (+777 additions, -921 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+2 -1) 📝 `.github/workflows/cicd.yml` (+111 -78) ➖ `.github/workflows/cicd.yml.backup` (+0 -426) 📝 `.github/workflows/saas.yml` (+1 -1) 📝 `messages/bg-BG.json` (+5 -2) 📝 `messages/cs-CZ.json` (+5 -2) 📝 `messages/de-DE.json` (+5 -2) 📝 `messages/en-US.json` (+5 -2) 📝 `messages/es-ES.json` (+5 -2) 📝 `messages/fr-FR.json` (+5 -2) 📝 `messages/it-IT.json` (+5 -2) 📝 `messages/ko-KR.json` (+5 -2) 📝 `messages/nb-NO.json` (+5 -2) 📝 `messages/nl-NL.json` (+5 -2) 📝 `messages/pl-PL.json` (+5 -2) 📝 `messages/pt-PT.json` (+5 -2) 📝 `messages/ru-RU.json` (+5 -2) 📝 `messages/tr-TR.json` (+5 -2) 📝 `messages/zh-CN.json` (+5 -2) 📝 `server/db/sqlite/schema/privateSchema.ts` (+1 -0) _...and 24 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. --- <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-15 10:38:27 -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#33143