Skip to content

v2.25.0

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Mar 23:03
· 879 commits to main since this release
v2.25.0
3f367c2

Pull Requests | Issues | v2.24.1...v2.25.0

Features

#2749 #2752 Support excluding some packages from the target of aqua update

e.g. aqua.yaml

packages:
  - name: golang/vuln/govulncheck@v1.0.3
    update:
      # If enabled is false, aqua up command ignores the package.
      # If the package name is passed to aqua up command explicitly, enabled is ignored.
      # By default, enabled is true.
      enabled: false

Fixes

#2747 #2354 #2750 #2751 Improve the logic to get the latest version

We've changed the logic to get the latest version in some commands such as aqua update and aqua generate.
The original logic was to call GitHub API Get a latest release, but a latest release wan't necessarily a latest version.
So we changed the logic to list the recent releases and get a latest version by semver.