Rename app-json:report flags to match property#8601
Merged
Conversation
The property name set via `app-json:set` is `appjson-path`, but the matching read-back flags on `app-json:report` were named `--app-json-selected`, `--app-json-global-selected`, and `--app-json-computed-selected`. The mismatch meant `dokku app-json:report <app> --app-json-appjson-path` (the form already documented in deployment-tasks.md) was rejected as an invalid flag, and the `--format json` output advertised keys that did not correspond to any settable property. The flags and JSON keys are renamed to `--app-json-appjson-path`, `--app-json-global-appjson-path`, and `--app-json-computed-appjson-path` so that the property name round-trips through set and report.
github-actions Bot
pushed a commit
that referenced
this pull request
May 11, 2026
# History ## 0.38.3 Install/update via the bootstrap script: ```shell wget -NP . https://dokku.com/install/v0.38.3/bootstrap.sh sudo DOKKU_TAG=v0.38.3 bash bootstrap.sh ``` ### Bug Fixes - #8602: @josegonzalez Reject per-app sets for global-only proxy properties - #8601: @josegonzalez Rename app-json:report flags to match property - #8600: @josegonzalez Report info-flag should not error when app undeployed ### New Features - #8599: @josegonzalez Add docker healthcheck to dokku container
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.
The property name set via
app-json:setisappjson-path, but the matching read-back flags onapp-json:reportwere named--app-json-selected,--app-json-global-selected, and--app-json-computed-selected. The mismatch meantdokku app-json:report <app> --app-json-appjson-path(the form already documented in deployment-tasks.md) was rejected as an invalid flag, and the--format jsonoutput advertised keys that did not correspond to any settable property. The flags and JSON keys are renamed to--app-json-appjson-path,--app-json-global-appjson-path, and--app-json-computed-appjson-pathso that the property name round-trips through set and report.Fixes #8598.