Update ghcr.io/moghtech/komodo-periphery Docker tag in stack infrastructure/komodo from 2.2.0 to v2.3.2 #33

Closed
renovate-bot wants to merge 1 commit from renovate/ghcr.io-moghtech-komodo-periphery-2.x into main
Collaborator

This PR contains the following updates:

Package Update Change
ghcr.io/moghtech/komodo-periphery minor 2.2.02.3.2

Updates for stacks in infrastructure/komodo.


Release Notes

moghtech/komodo (ghcr.io/moghtech/komodo-periphery)

v2.3.2: Komodo v2.3.2

Compare Source

Changelog

  • Fix creating new Builders from the UI
  • Fix compose.yaml file in-editor suggestions / monaco intellisense
  • Remove owner column for tags UI
  • Improve code splitting / optimize bundle sizes
  • Bump Rust / UI dependencies

v2.3.1: Komodo v2.3.1

Compare Source

Changelog

  • Fix missing image registry accounts stored on database
  • Set "komodo/$VERSION" as connection user agent.
  • Fix UI export TOML not respecting selected tags in query
  • Further optimize query batching

v2.3.0: Komodo v2.3.0

Compare Source

Changelog

Still running v1? Check out the Komodo v2 upgrade guide.

Pagination

  • Add pagination for resource and container list APIs, improved term based search and server-side sorting. Use Komodo with lots of resources without having issues due to over-querying.
    • API users can still disable pagination by passing limit: 0 in the request body json. The default limit is 50 resources per page.
  • UI / Containers: Improved page responsiveness and container search with arbitrarily many containers using pagination.
Screenshot 2026-07-11 at 1 28 37 AM

RAM / Monitoring

  • Break down memory usage into used / cache, supporting ZFS, by @​ChanningHe.
Memory

Cancellation

  • Build: All builds now support mid-build cancellation by terminating the running build command.
    • Build webhooks now cancel any running build before re-triggering, better handling cases with back-to-back git pushes.
  • Action / Procedure: Support mid-run cancellation.
    • Actions cancel immediately by killing the deno process executing the script.
    • Procedures cancel after the current parallel stage completes (before moving onto the next stage)
Screenshot 2026-07-11 at 1 37 09 AM

Stats page

  • Top level stats viewer including multi-server charts
Screenshot 2026-07-24 at 8 03 30 PM

Misc.

  • Procedure: Batch executions now support matching by tags.
    • Specify a pattern of * to filter only by tags.
  • Builder: Server type builders can now attach multiple servers and simultaneous builds will be distributed between them.
  • Deployment: Support configuring custom name for container / swarm service
    • The container / service name still defaults to deployment name
  • Stack: Allow viewing service list even when down, enabling users to deploy single service without the whole Stack.
  • Auth: Improve Google auth integration with id token validation by @​MP-Tool
  • UI: Add omni-search 'clear on close' option.
  • UI: Find Stack services from the omni-search.
  • UI: Fix permissions table performance.
  • Commands: Add shell escaping on ad-hoc commands / requests available to authenticated users with permission access below Write.
  • Commands: Add command-specific timeouts on shell commands. Fixes issues like #​1392.
  • Reporting: Add opt-in reporting about Komodo usage.
  • Action: Fix execute_terminal output capturing using sh by @​mvanhorn, fixing #​1289
  • Build / Deployment: Fix build -> deployment flow when build doesn't push semver tags.
  • Stack: Fix compose config sanitization ordering by @​mvanhorn and @​mbecker20 re #​868
  • Alerter / TOML: Fix resource lists export resources IDs instead of names.
  • Git: Fix giving clear log when git isn't installed, previously the message did not clearly identify the issue in logs.
  • UI: Fix resource description responsive overflow.
  • UI / Websocket: Send keepalive pings to help websocket maintain connection by @​Dougley.
  • UI / Deployment: Fix deployment tabs disappearing sometimes when in swarm mode.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [ghcr.io/moghtech/komodo-periphery](https://github.com/moghtech/komodo) | minor | `2.2.0` → `2.3.2` | Updates for stacks in `infrastructure/komodo`. --- ### Release Notes <details> <summary>moghtech/komodo (ghcr.io/moghtech/komodo-periphery)</summary> ### [`v2.3.2`](https://github.com/moghtech/komodo/releases/tag/v2.3.2): Komodo v2.3.2 [Compare Source](https://github.com/moghtech/komodo/compare/v2.3.1...v2.3.2) ### Changelog - Fix creating new Builders from the UI - Fix `compose.yaml` file in-editor suggestions / monaco intellisense - Remove owner column for tags UI - Improve code splitting / optimize bundle sizes - Bump Rust / UI dependencies ### [`v2.3.1`](https://github.com/moghtech/komodo/releases/tag/v2.3.1): Komodo v2.3.1 [Compare Source](https://github.com/moghtech/komodo/compare/v2.3.0...v2.3.1) ### Changelog - Fix missing image registry accounts stored on database - Set "komodo/$VERSION" as connection user agent. - Fix UI export TOML not respecting selected tags in query - Further optimize query batching ### [`v2.3.0`](https://github.com/moghtech/komodo/releases/tag/v2.3.0): Komodo v2.3.0 [Compare Source](https://github.com/moghtech/komodo/compare/v2.2.0...v2.3.0) ### Changelog Still running v1? Check out the [Komodo v2 upgrade guide](https://komo.do/docs/releases/v2.0.0#upgrading-to-komodo-v2). #### Pagination - Add pagination for resource and container list APIs, improved term based search and server-side sorting. Use Komodo with lots of resources without having issues due to over-querying. - API users can still disable pagination by passing `limit: 0` in the request body json. The default limit is 50 resources per page. - **UI / Containers**: Improved page responsiveness and container search with arbitrarily many containers using pagination. <img width="1273" height="378" alt="Screenshot 2026-07-11 at 1 28 37 AM" src="https://github.com/user-attachments/assets/a6ce20b9-4c64-4dbe-8706-3ee6091aa11d" /> #### RAM / Monitoring - Break down memory usage into used / cache, supporting ZFS, by @&#8203;ChanningHe. <img width="1898" height="584" alt="Memory" src="https://github.com/user-attachments/assets/b5c5a2ab-0d23-4cd0-8744-e22b8fa33a03" /> #### Cancellation - **Build**: All builds now support mid-build cancellation by terminating the running build command. - Build webhooks now cancel any running build before re-triggering, better handling cases with back-to-back git pushes. - **Action / Procedure**: Support mid-run cancellation. - Actions cancel immediately by killing the deno process executing the script. - Procedures cancel after the current parallel stage completes (before moving onto the next stage) <img width="1271" height="465" alt="Screenshot 2026-07-11 at 1 37 09 AM" src="https://github.com/user-attachments/assets/4e1722c0-b268-40f9-a2dd-bfa3da6bd68b" /> #### Stats page - Top level stats viewer including multi-server charts <img width="1532" height="948" alt="Screenshot 2026-07-24 at 8 03 30 PM" src="https://github.com/user-attachments/assets/c90db99b-09c2-4c40-86c0-5433b6d2bbdf" /> #### Misc. - **Procedure**: Batch executions now support matching by tags. - Specify a pattern of `*` to filter only by tags. - **Builder**: Server type builders can now attach multiple servers and simultaneous builds will be distributed between them. - **Deployment**: Support configuring custom name for container / swarm service - The container / service name still defaults to deployment name - **Stack**: Allow viewing service list even when down, enabling users to deploy single service without the whole Stack. - **Auth**: Improve Google auth integration with id token validation by [@&#8203;MP-Tool](https://github.com/MP-Tool) - **UI**: Add omni-search 'clear on close' option. - **UI**: Find Stack services from the omni-search. - **UI**: Fix permissions table performance. - **Commands**: Add shell escaping on ad-hoc commands / requests available to authenticated users with permission access below Write. - **Commands**: Add command-specific timeouts on shell commands. Fixes issues like [#&#8203;1392](https://github.com/moghtech/komodo/issues/1392). - **Reporting**: Add **opt-in** reporting about Komodo usage. - **Action**: Fix `execute_terminal` output capturing using `sh` by [@&#8203;mvanhorn](https://github.com/mvanhorn), fixing [#&#8203;1289](https://github.com/moghtech/komodo/issues/1289) - **Build / Deployment**: Fix build -> deployment flow when build doesn't push semver tags. - **Stack**: Fix compose config sanitization ordering by [@&#8203;mvanhorn](https://github.com/mvanhorn) and [@&#8203;mbecker20](https://github.com/mbecker20) re [#&#8203;868](https://github.com/moghtech/komodo/issues/868) - **Alerter / TOML**: Fix resource lists export resources IDs instead of names. - **Git**: Fix giving clear log when `git` isn't installed, previously the message did not clearly identify the issue in logs. - **UI**: Fix resource description responsive overflow. - **UI / Websocket**: Send keepalive pings to help websocket maintain connection by [@&#8203;Dougley](https://github.com/Dougley). - **UI / Deployment**: Fix deployment tabs disappearing sometimes when in swarm mode. </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yODEuMSIsInVwZGF0ZWRJblZlciI6IjQzLjI4MS4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJtaW5vciIsInJlbm92YXRlIl19-->
aditya closed this pull request 2026-08-13 20:14:57 +02:00
Author
Collaborator

Renovate Ignore Notification

Because you closed this PR without merging, Renovate will ignore this update (2.3.2). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the ignoreDeps array of your Renovate config.

If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

### Renovate Ignore Notification Because you closed this PR without merging, Renovate will ignore this update (`2.3.2`). You will get a PR once a newer version is released. To ignore this dependency forever, add it to the `ignoreDeps` array of your Renovate config. If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR.

Pull request closed

Sign in to join this conversation.
No reviewers
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
aditya/homelab!33
No description provided.