v1.22.0
Immutable
release. Only release title and notes can be modified.
Pull Requests | Issues | v1.21.0...v1.22.0
Features
#1041 #1060 #1363 Add update-aqua command
#1352 #1358 generate: Support specifying version
Add update-aqua command
$ aqua update-aqua [version]aqua is installed in $AQUA_ROOT_DIR/bin/aqua.
By default, the latest version is installed, but you can also specify the version with an argument.
You can't specify the install path. We think you don't have to change the install path.
e.g.
$ aqua update-aqua # Install the latest version
$ aqua update-aqua v1.20.0 # Install aqua v1.20.0generate: Support specifying version
aqua generate supports specifying the package version. The package version is optional.
e.g.
$ aqua g cli/cli
- name: cli/cli@v2.18.1
$ aqua g cli/cli@v2.0.0
- name: cli/cli@v2.0.0The option -pin is added to aqua generate command.
This option is useful to prevent the package from being updated by Renovate.
$ aqua g -pin cli/cli
- name: cli/cli
version: v2.18.1
$ aqua g -pin cli/cli@v2.0.0
- name: cli/cli
version: v2.0.0