Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
colima-Linux-aarch64 | 2025-07-31 | 9.0 MB | |
colima-Linux-aarch64.sha256sum | 2025-07-31 | 87 Bytes | |
colima-Linux-x86_64.sha256sum | 2025-07-31 | 86 Bytes | |
colima-Darwin-arm64 | 2025-07-31 | 9.2 MB | |
colima-Darwin-arm64.sha256sum | 2025-07-31 | 86 Bytes | |
colima-Darwin-x86_64 | 2025-07-31 | 9.7 MB | |
colima-Darwin-x86_64.sha256sum | 2025-07-31 | 87 Bytes | |
colima-Linux-x86_64 | 2025-07-31 | 9.5 MB | |
README.md | 2025-07-31 | 6.0 kB | |
v0.8.2 source code.tar.gz | 2025-07-31 | 618.1 kB | |
v0.8.2 source code.zip | 2025-07-31 | 665.2 kB | |
Totals: 11 Items | 38.7 MB | 0 |
Highlights
This is an incremental release with bug fixes.
Fixes
- Report errors that occur while reading configuration file. Fixes [#1239].
- Use native shasum binary for download assets verification. Fixes [#1163].
- Fix download errors when K3s version when empty in config.
- Reset formatting after questions prompts in the terminal. Fixes [#1319].
Other Updates
- UDP port forwarding is now supported. Resolves [#1292], [#1300].
- Binfmt emulation is configurable via the
--binfmt
flag andbinfmt
config. Defaults totrue
when Rosetta is disabled. - Rename
--cpu
flag to--cpus
forcolima start
, to align with Lima.--cpu
still works but deprecated. - Current profile can now be set with
COLIMA_PROFILE
environment variable. Resolves [#1308].
Runtime version bumps
NOTE: container runtime versions can be updated manually by running the colima update
command.
- Docker version updated to
v28.3.3
- Nerdctl version updated to
v2.1.3
- Incus version updated to
v6.14
- K3s version defaults to
v1.33.3+k3s1
Commits
- ci: enable gocritic in golangci by @PascalBourdier in https://github.com/abiosoft/colima/pull/1223
- faq: update to address potential need for Docker client configuration by @carljmosca in https://github.com/abiosoft/colima/pull/1231
- cli: add quotes to k3s-arg example for colima start by @olamilekan000 in https://github.com/abiosoft/colima/pull/1230
- chore: update LICENSE, fix copyright license year by @JasonnnW3000 in https://github.com/abiosoft/colima/pull/1235
- chore: fix copyright license year (Revert [#1235]) by @windyakin in https://github.com/abiosoft/colima/pull/1237
- chore: log possible error while reading config file by @olamilekan000 in https://github.com/abiosoft/colima/pull/1240
- build(deps): bump golang.org/x/term from 0.27.0 to 0.28.0 by @dependabot[bot] in https://github.com/abiosoft/colima/pull/1242
- core: use native shasum binary on macOS for download verification by @abiosoft in https://github.com/abiosoft/colima/pull/1245
- core: config initial value for kubernetes version if empty in yaml by @jason19970210 in https://github.com/abiosoft/colima/pull/1255
- k8s: update latest version for default kubernetes release by @jason19970210 in https://github.com/abiosoft/colima/pull/1259
- core: respect LIMA_SSH_PORT_FORWARDER env var by @abiosoft in https://github.com/abiosoft/colima/pull/1263
- build(deps): bump golang.org/x/term from 0.28.0 to 0.29.0 by @dependabot[bot] in https://github.com/abiosoft/colima/pull/1268
- incus: remove core.https_address from default config by @abiosoft in https://github.com/abiosoft/colima/pull/1273
- build(deps): bump github.com/spf13/cobra from 1.8.1 to 1.9.1 by @dependabot[bot] in https://github.com/abiosoft/colima/pull/1274
- docker: fix cgroupdriver by @win-t in https://github.com/abiosoft/colima/pull/1312
- revert: "docker: fix cgroupdriver" by @abiosoft in https://github.com/abiosoft/colima/pull/1314
- Properly reset formatting at the end of question prompts by @SukritBhatt in https://github.com/abiosoft/colima/pull/1324
- chore: reorganize dependencies in go.mod by @alexandear in https://github.com/abiosoft/colima/pull/1325
- github workflows: pin dependencies by @thypon in https://github.com/abiosoft/colima/pull/1326
- vm: support UDP port forwarding by @stek29 in https://github.com/abiosoft/colima/pull/1343
- core: update disk images by @abiosoft in https://github.com/abiosoft/colima/pull/1351
- k3s: fix config defaults for Kubernetes values by @kaisq in https://github.com/abiosoft/colima/pull/1322
- vm: make binfmt emulation configurable by @winterqt in https://github.com/abiosoft/colima/pull/1315
- docker: replace also localhost with host gateway ip in docker daemon.json by @fralken in https://github.com/abiosoft/colima/pull/1298
- k3s: write kubeconfig to KUBECONFIG defined file by @Sumoa in https://github.com/abiosoft/colima/pull/978
- Multiple minor updates by @abiosoft in https://github.com/abiosoft/colima/pull/1352
- build(deps): bump golang.org/x/term from 0.29.0 to 0.30.0 by @dependabot[bot] in https://github.com/abiosoft/colima/pull/1281
- chore: expend the path information about current profile being used by @jason19970210 in https://github.com/abiosoft/colima/pull/1270
- core: add support for COLIMA_PROFILE environment variable. by @abiosoft in https://github.com/abiosoft/colima/pull/1353
- ci: bump Go version by @abiosoft in https://github.com/abiosoft/colima/pull/1354
New Contributors
- @PascalBourdier made their first contribution in https://github.com/abiosoft/colima/pull/1223
- @carljmosca made their first contribution in https://github.com/abiosoft/colima/pull/1231
- @olamilekan000 made their first contribution in https://github.com/abiosoft/colima/pull/1230
- @JasonnnW3000 made their first contribution in https://github.com/abiosoft/colima/pull/1235
- @windyakin made their first contribution in https://github.com/abiosoft/colima/pull/1237
- @jason19970210 made their first contribution in https://github.com/abiosoft/colima/pull/1255
- @win-t made their first contribution in https://github.com/abiosoft/colima/pull/1312
- @SukritBhatt made their first contribution in https://github.com/abiosoft/colima/pull/1324
- @alexandear made their first contribution in https://github.com/abiosoft/colima/pull/1325
- @thypon made their first contribution in https://github.com/abiosoft/colima/pull/1326
- @stek29 made their first contribution in https://github.com/abiosoft/colima/pull/1343
- @kaisq made their first contribution in https://github.com/abiosoft/colima/pull/1322
- @winterqt made their first contribution in https://github.com/abiosoft/colima/pull/1315
- @fralken made their first contribution in https://github.com/abiosoft/colima/pull/1298
- @Sumoa made their first contribution in https://github.com/abiosoft/colima/pull/978
Full Changelog: https://github.com/abiosoft/colima/compare/v0.8.1...v0.8.2