Skip to content

v0.7.4-0

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 02 Oct 03:06
· 4003 commits to main since this release
72d12b9

Milestone
v0.7.3...v0.7.4-0

Feature

#332 #334 Support the syntax <package name>@<version>

The following two configuration is equivalent.

- name: golangci/golangci-lint@v1.42.1
  registry: standard
- name: golangci/golangci-lint
  registry: standard
  version: v1.42.1

When you want to update the package with Renovate,
the first style is better because you don't have to write code comments for Renovate's Regex Manager.

- name: golangci/golangci-lint
  registry: standard
  version: v1.42.1 # renovate: depName=golangci/golangci-lint

If the package name in the code comment is wrong, the package version is changed wrongly.

- name: golangci/golangci-lint
  registry: standard
  # depName is wrong!
  version: v1.42.1 # renovate: depName=helm/helm

On the other hand, you can prevent such a misconfiguration by the first style.

Bug

#331 #333 When aqua i command's -a option is set, aqua i should not fail even if the configuration file isn't found

When aqua i command's -c option isn't set, aqua finds the configuration file from the current directory to the root directory.
When aqua i command's -a option is set, aqua i should not fail even if the configuration file isn't found.

Document

#327 Update USAGE
#324 Add a link to a blog post https://techblog.szksh.cloud/aqua-global-configs/