[PR #143] [MERGED] 1.16.1 #6724

Closed
opened 2026-04-24 19:47:29 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/moghtech/komodo/pull/143
Author: @mbecker20
Created: 10/22/2024
Status: Merged
Merged: 10/22/2024
Merged by: @mbecker20

Base: mainHead: 1.16.1


📝 Commits (7)

  • 843f928 ensure sync state cache is refreshed on sync create / copy
  • 110d195 clean up resources post_create
  • dd81aa2 show sidebar if element length > 1
  • 7cd5e20 update run_komodo_command command
  • 9125d3d rename all resources
  • f3934e7 refresh repo cache after clone / pull
  • f4032a0 improve rename repo log

📊 Changes

67 files changed (+1147 additions, -424 deletions)

View changed files

📝 bin/core/src/api/execute/repo.rs (+23 -1)
📝 bin/core/src/api/write/action.rs (+13 -1)
📝 bin/core/src/api/write/alerter.rs (+14 -4)
📝 bin/core/src/api/write/build.rs (+12 -0)
📝 bin/core/src/api/write/builder.rs (+13 -1)
📝 bin/core/src/api/write/deployment.rs (+6 -7)
📝 bin/core/src/api/write/mod.rs (+8 -0)
📝 bin/core/src/api/write/procedure.rs (+13 -1)
📝 bin/core/src/api/write/repo.rs (+88 -4)
📝 bin/core/src/api/write/server.rs (+2 -23)
📝 bin/core/src/api/write/server_template.rs (+13 -2)
📝 bin/core/src/api/write/stack.rs (+2 -35)
📝 bin/core/src/api/write/sync.rs (+33 -2)
📝 bin/core/src/resource/action.rs (+11 -6)
📝 bin/core/src/resource/alerter.rs (+8 -2)
📝 bin/core/src/resource/build.rs (+11 -6)
📝 bin/core/src/resource/builder.rs (+8 -2)
📝 bin/core/src/resource/deployment.rs (+24 -14)
📝 bin/core/src/resource/mod.rs (+69 -19)
📝 bin/core/src/resource/procedure.rs (+11 -6)

...and 47 more files

📄 Description

  • Rename implemented for all Resource types. For Repos that are already cloned, a rename will also rename the cloned folder.
  • Fix: Show config navigation sidebar again on Repo / Alerter / Template / Sync
  • Fix: Ensure Resource Sync state cache is refreshed after create / copy
  • Fix: Ensure Repo cache is refreshed after Clone / Pull.

🔄 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/143 **Author:** [@mbecker20](https://github.com/mbecker20) **Created:** 10/22/2024 **Status:** ✅ Merged **Merged:** 10/22/2024 **Merged by:** [@mbecker20](https://github.com/mbecker20) **Base:** `main` ← **Head:** `1.16.1` --- ### 📝 Commits (7) - [`843f928`](https://github.com/moghtech/komodo/commit/843f928aeabc0795d2ccf09f19a45cf3cdc471ca) ensure sync state cache is refreshed on sync create / copy - [`110d195`](https://github.com/moghtech/komodo/commit/110d1950e26fcb9b417de310f135aed2afe9d485) clean up resources post_create - [`dd81aa2`](https://github.com/moghtech/komodo/commit/dd81aa2f59dd66751bf09adc5db0a03ac0429ba5) show sidebar if element length > 1 - [`7cd5e20`](https://github.com/moghtech/komodo/commit/7cd5e20ef44f62f5ef314e9d89aba74cf844942c) update `run_komodo_command` command - [`9125d3d`](https://github.com/moghtech/komodo/commit/9125d3d1fe4de5e6fbb42d7c87e09742de0e352a) rename all resources - [`f3934e7`](https://github.com/moghtech/komodo/commit/f3934e724f7a6715c93e1fb71535cc6efa611773) refresh repo cache after clone / pull - [`f4032a0`](https://github.com/moghtech/komodo/commit/f4032a029ce55a5d3873cd256f677e5825689c95) improve rename repo log ### 📊 Changes **67 files changed** (+1147 additions, -424 deletions) <details> <summary>View changed files</summary> 📝 `bin/core/src/api/execute/repo.rs` (+23 -1) 📝 `bin/core/src/api/write/action.rs` (+13 -1) 📝 `bin/core/src/api/write/alerter.rs` (+14 -4) 📝 `bin/core/src/api/write/build.rs` (+12 -0) 📝 `bin/core/src/api/write/builder.rs` (+13 -1) 📝 `bin/core/src/api/write/deployment.rs` (+6 -7) 📝 `bin/core/src/api/write/mod.rs` (+8 -0) 📝 `bin/core/src/api/write/procedure.rs` (+13 -1) 📝 `bin/core/src/api/write/repo.rs` (+88 -4) 📝 `bin/core/src/api/write/server.rs` (+2 -23) 📝 `bin/core/src/api/write/server_template.rs` (+13 -2) 📝 `bin/core/src/api/write/stack.rs` (+2 -35) 📝 `bin/core/src/api/write/sync.rs` (+33 -2) 📝 `bin/core/src/resource/action.rs` (+11 -6) 📝 `bin/core/src/resource/alerter.rs` (+8 -2) 📝 `bin/core/src/resource/build.rs` (+11 -6) 📝 `bin/core/src/resource/builder.rs` (+8 -2) 📝 `bin/core/src/resource/deployment.rs` (+24 -14) 📝 `bin/core/src/resource/mod.rs` (+69 -19) 📝 `bin/core/src/resource/procedure.rs` (+11 -6) _...and 47 more files_ </details> ### 📄 Description - **Rename implemented for all Resource types**. For Repos that are already cloned, a rename will also rename the cloned folder. - Fix: Show config navigation sidebar again on Repo / Alerter / Template / Sync - Fix: Ensure Resource Sync state cache is refreshed after create / copy - Fix: Ensure Repo cache is refreshed after Clone / Pull. --- <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-24 19:47:29 -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#6724