github aquaproj/aqua v0.9.0

latest releases: v2.27.3, v2.27.2, v2.27.1...
2 years ago

Pull Requests | Issues | v0.8.13...v0.9.0

⚠️ Breaking Changes

#520 #521 Remove inline_registry

How to migrate

Use local Registry instead of inline Registry.

https://aquaproj.github.io/docs/reference/config

AS IS

aqua.yaml

inline_registry:
  packages:
  - type: github_release
    repo_owner: suzuki-shunsuke
    repo_name: cmdx
    asset: 'cmdx_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz'

TO BE

aqua.yaml

registries:
- name: inline
  type: local
  path: registry.yaml

registry.yaml

packages:
- type: github_release
  repo_owner: suzuki-shunsuke
  repo_name: cmdx
  asset: 'cmdx_{{trimV .Version}}_{{.OS}}_{{.Arch}}.tar.gz'

Feature

#511 #512 Retry installing a package when it failed to install the package due to file already exists error
#513 #518 Add registry_ref in the error log

Bug Fixes

#519 Fix the file permission of aqua.yaml which is generated by aqua init command

Change the file permission from 0755 to 0644.
Executable permission isn't needed.

Others

#515 #516 #517 Refactoring

Don't miss a new aqua release

NewReleases is sending notifications on new releases.