# depot CLI v2.53.0 (https://depot.dev/changelog/2024-01-31-depot-cli-2-53-0)

> Published 2024-01-31

We've rolled out a new version of the `depot` CLI, which includes a number of improvements and bug fixes. The biggest one is an updated `depot bake` command to support the `matrix` block in a bake file. You can use it to reduce some duplication in your bake files or even dynamically generate targets.

```hcl
# generates two targets from the `matrix` array
target "app" {
  name       = "app-${tgt}"
  dockerfile = "Dockerfile"
  tags       = ["org/${tgt}"]
  target     = tgt
  matrix     = {
    tgt = ["frontend", "backend"]
  }
}
```

In addition, we also shipped a few other improvements and bug fixes:

* Fix for reporting build errors when using `docker build` and `docker buildx build` commands
* Fix for parsing out `cwd://` from incoming files
* Added support for pushing multiple tags with [`depot push`](/docs/cli/reference/container-builds#depot-push) command
* Add explicit support for `linux/arm/v8` via the `--platform` flag

## For AI Agents

The full site index is at [llms.txt](https://depot.dev/llms.txt). Append `.md` to any documentation, blog, changelog, or customer URL to fetch its markdown source directly.