[PR #792] [MERGED] 1.19.3 #787

Closed
opened 2025-10-31 15:21:49 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/792
Author: @mbecker20
Created: 9/1/2025
Status: Merged
Merged: 9/5/2025
Merged by: @mbecker20

Base: mainHead: 1.19.3


📝 Commits (10+)

  • 3aa479d start. 1.19.3
  • be2fe28 deploy 1.19.3-dev-1
  • 2183b9f repo state from db includes BuildRepo success
  • f6c2c97 clean up version mismatch text
  • 7fc6d24 feat(containers): debounced search input and added filter by server name (#796)
  • 00fcdbb Fix cleaning Alerter resource whitelist / blacklist on resource delete re #581
  • 83cc242 fmt
  • 01827a1 Fix signup button not working correctly (#801)
  • 4414327 Improve route protection and authentication flow (#798)
  • 955d86a fix: inconsistent behaviour of new resource create button (#800)

📊 Changes

27 files changed (+579 additions, -243 deletions)

View changed files

📝 Cargo.lock (+16 -16)
📝 Cargo.toml (+1 -1)
📝 bin/cli/src/command/execute.rs (+3 -3)
📝 bin/core/src/alert/discord.rs (+2 -2)
📝 bin/core/src/alert/mod.rs (+2 -2)
📝 bin/core/src/alert/slack.rs (+2 -2)
📝 bin/core/src/resource/mod.rs (+29 -3)
📝 bin/core/src/resource/repo.rs (+1 -0)
📝 client/core/ts/package.json (+1 -1)
📝 config/core.config.toml (+3 -3)
📝 config/komodo.cli.toml (+1 -1)
📝 config/periphery.config.toml (+1 -1)
📝 docsite/docs/setup/index.mdx (+5 -3)
📝 frontend/src/components/layouts.tsx (+12 -4)
📝 frontend/src/components/monaco.tsx (+9 -1)
📝 frontend/src/components/resources/resource-sync/actions.tsx (+7 -7)
📝 frontend/src/components/resources/resource-sync/index.tsx (+42 -22)
📝 frontend/src/components/resources/resource-sync/pending.tsx (+21 -44)
📝 frontend/src/components/resources/server/stat-chart.tsx (+36 -11)
📝 frontend/src/components/resources/server/stats.tsx (+34 -26)

...and 7 more files

📄 Description

Changelog

Resources

  • Repo: Improve "Failed" state to reflect latest BuildRepo success.
  • Sync: Improve tabs UX, consolidate both Execute / Commit into main tabs to remove a click.

Misc


🔄 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/moghtech/komodo/pull/792 **Author:** [@mbecker20](https://github.com/mbecker20) **Created:** 9/1/2025 **Status:** ✅ Merged **Merged:** 9/5/2025 **Merged by:** [@mbecker20](https://github.com/mbecker20) **Base:** `main` ← **Head:** `1.19.3` --- ### 📝 Commits (10+) - [`3aa479d`](https://github.com/moghtech/komodo/commit/3aa479d6547ca63c9cc56d32762f85693f9ae4b5) start. 1.19.3 - [`be2fe28`](https://github.com/moghtech/komodo/commit/be2fe280dc69becd87f39d9e705fb743d666bca3) deploy 1.19.3-dev-1 - [`2183b9f`](https://github.com/moghtech/komodo/commit/2183b9f9bb6bda345e09fb5f0eaa2c2c52e56994) repo state from db includes BuildRepo success - [`f6c2c97`](https://github.com/moghtech/komodo/commit/f6c2c97cebc0eb5ab529a88df578e2431238b614) clean up version mismatch text - [`7fc6d24`](https://github.com/moghtech/komodo/commit/7fc6d249cbe682072319b9dd0f3f22ad5524f276) feat(containers): debounced search input and added filter by server name (#796) - [`00fcdbb`](https://github.com/moghtech/komodo/commit/00fcdbb5ae4c197f695d9931570e56e1cc9a2900) Fix cleaning Alerter resource whitelist / blacklist on resource delete re #581 - [`83cc242`](https://github.com/moghtech/komodo/commit/83cc24264e35dc724598ce41283b15e63456c156) fmt - [`01827a1`](https://github.com/moghtech/komodo/commit/01827a15442d1c88bc87ffdf01ab71aa2fa3060c) Fix signup button not working correctly (#801) - [`4414327`](https://github.com/moghtech/komodo/commit/441432730416a779949cfe59280c631a4a90cc73) Improve route protection and authentication flow (#798) - [`955d86a`](https://github.com/moghtech/komodo/commit/955d86a756f3aa5c016aa14f453f8099c4415e7f) fix: inconsistent behaviour of new resource create button (#800) ### 📊 Changes **27 files changed** (+579 additions, -243 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+16 -16) 📝 `Cargo.toml` (+1 -1) 📝 `bin/cli/src/command/execute.rs` (+3 -3) 📝 `bin/core/src/alert/discord.rs` (+2 -2) 📝 `bin/core/src/alert/mod.rs` (+2 -2) 📝 `bin/core/src/alert/slack.rs` (+2 -2) 📝 `bin/core/src/resource/mod.rs` (+29 -3) 📝 `bin/core/src/resource/repo.rs` (+1 -0) 📝 `client/core/ts/package.json` (+1 -1) 📝 `config/core.config.toml` (+3 -3) 📝 `config/komodo.cli.toml` (+1 -1) 📝 `config/periphery.config.toml` (+1 -1) 📝 `docsite/docs/setup/index.mdx` (+5 -3) 📝 `frontend/src/components/layouts.tsx` (+12 -4) 📝 `frontend/src/components/monaco.tsx` (+9 -1) 📝 `frontend/src/components/resources/resource-sync/actions.tsx` (+7 -7) 📝 `frontend/src/components/resources/resource-sync/index.tsx` (+42 -22) 📝 `frontend/src/components/resources/resource-sync/pending.tsx` (+21 -44) 📝 `frontend/src/components/resources/server/stat-chart.tsx` (+36 -11) 📝 `frontend/src/components/resources/server/stats.tsx` (+34 -26) _...and 7 more files_ </details> ### 📄 Description # Changelog ### Resources - **Repo**: Improve "Failed" state to reflect latest `BuildRepo` success. - **Sync**: Improve tabs UX, consolidate both Execute / Commit into main tabs to remove a click. ### Misc - **Login**: Fix Local user "Sign Up" in #801 by @jackra1n - **UI**: Fix "Create resource" button remain disabled after failed call in #800 by @antoniosarro re #771 - **UI**: Fix broken Monaco editor when using config file with absolute path. - **UI**: Fix Server Stats tab for new server re #427 - **UI**: Containers page: filter by server in #796 by @antoniosarro re #687 - **UI**: Improve login page implementation (cont.) in #798 by @jackra1n re #403 and #652 - Ensure deleted resources are cleaned up from Alerter whitelist / blacklist re #581 --- <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 2025-10-31 15:21:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/komodo#787