fix(cronjob): render container cron jobs in "cronjob get"#1982
Merged
Conversation
A cron job may target an app installation OR a container (a service running in a stack). "cronjob get" previously always resolved the cron job's app installation, which fails or renders misleading output for container cron jobs. Branch on the cron job's target: for service (container) targets, show the stack and container instead of the app, and render the container command as the execution target. App cron jobs are rendered as before. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Render the app / stack / container as part of the EXECUTION TARGET section instead of the primary cron job details, keeping all "where and how is this executed" information in one place. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
mittwald-machine
added a commit
that referenced
this pull request
Jul 3, 2026
## [1.20.1](v1.20.0...v1.20.1) (2026-07-03) ### Bug Fixes * **cronjob:** include container (service) cronjobs in list ([#1981](#1981)) ([5c03091](5c03091)), closes [#1980](#1980) * **cronjob:** render container cron jobs in "cronjob get" ([#1982](#1982)) ([97f5475](97f5475)), closes [#1981](#1981) * **release:** do not specify model explicitly when announcing release ([b21740f](b21740f))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #1981 (container cron job support in
cronjob list).A cron job may target an app installation OR a container (a service running in a stack).
mw cronjob getpreviously always resolved the cron job's app installation (useAppInstallation(cronjob.appId)), which fails or renders misleading output for container cron jobs.CronJobDetailsnow branches on the cron job'starget:appInstallationId, falling back to the deprecatedappId).Because the app-installation lookup now lives in a dedicated subcomponent, it is only performed for app cron jobs.
🤖 Generated with Claude Code