Pull Requests | Issues | v0.8.14-1...v0.9.0-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'