Skip to content

v0.61.0

Compare
Choose a tag to compare
@github-actions github-actions released this 18 Sep 20:45
· 300 commits to refs/heads/main since this release
6049c8e

WARNING

This release contains a fix for the docker image plugin which correctly handles multi-architecture now.
The side effect of this is that older docker images using the old manifest v1 which do not contain multi-architecture information
will now fail if the setting architecture or architectures is explicitly set to amd64.

If this happens you can just remove that Updatecli setting as it will be amd64 anyway

from
conditions:
  default:
    kind: dockerimage
    spec:
      image: ghcr.io/updatecli/example:0.60.0
      architecture: amd64
to
conditions:
  default:
    kind: dockerimage
    spec:
      image: ghcr.io/updatecli/example:0.60.0
      # comment until ghcr.io/updatecli/example:0.60.0 support the schema v2
      # architecture: amd64

https://docs.docker.com/registry/spec/deprecated-schema-v1/

Changes

🚀 Features

  • feat: dockerimage support for setting os and variant @mcwarman (#1604)

🧰 Maintenance

  • chore(deps): Bump updatecli/updatecli-action from 2.39.0 to 2.40.0 @dependabot (#1601)

Contributors

@dependabot, @dependabot[bot], @mcwarman, @updateclibot and @updateclibot[bot]