Update Application Version CLI
Description: Updates the tag and/or properties of the specified application version. You can set or replace values for specific property keys.
Command:
jf apptrust version-update <app-key> <version> --tag "<tag>" --properties "<key>=<value1>[,<value2>,...]"] --delete-property "<key>"
Alias command: jf at vu
Command Options
Option | Required/Optional | Type | Description |
|---|---|---|---|
| required | string | The application key of the application whose version is being updated. |
| required | string | The application version number. |
| optional | string | A free-text tag to associate with the version. The tag is limited to 255 characters, beginning and ending with an alphanumeric character ([a-z0-9A-Z]) with dashes (-), underscores (_), dots (.), and alphanumerics in between. |
| optional | object | Sets or updates custom properties for the application version. Each key is a property name (string) and its value is an array representing values for that property. Providing a key with an array of strings replaces any existing values for that specific key. Providing a key with an empty array ( |
| optional | array | Removes the specified property keys and all their associated values from the application version. Separate multiple entries with a semicolon ( |
Example 1: Update an application version
This command updates an application with a new tag and additional properties.
jfrog apptrust version-update my-auth-service 1.2.0 --tag="release-candidate"
Example 2: Remove a property key from an application version
This command removes a property key and its associated values from the application version.
jf at vu my-auth-service 1.2.0 --delete-props="site"Updated 3 months ago
