Skip to content

Commit 243dc1b

Browse files
authored
Merge pull request #452 from osscontainertools/release-v1.26.4
release v1.26.4
2 parents 7b2714c + 62f95d8 commit 243dc1b

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

CHANGELOG.md

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,43 @@
1+
# v1.26.4 Release 2026-01-09
2+
## Community Update
3+
* @mesaglio made their first contribution in https://github.com/osscontainertools/kaniko/pull/435
4+
* @nejch made their first contribution in https://github.com/osscontainertools/kaniko/pull/445
5+
6+
## What's Changed
7+
### Bugfixes
8+
* Skip chown/chmod for paths in ignore list: by @mesaglio in https://github.com/osscontainertools/kaniko/pull/435
9+
10+
### Standardization
11+
* `FF_KANIKO_RUN_VIA_TINI=false` reap zombie processes: https://github.com/osscontainertools/kaniko/pull/211 https://github.com/osscontainertools/kaniko/pull/450
12+
13+
### Performance
14+
* `FF_KANIKO_OCI_WARMER=false` ocilayout warmer: https://github.com/osscontainertools/kaniko/pull/307
15+
16+
### Maintenance
17+
* chore(deps): bump github.com/go-git/go-billy/v5 from 5.6.2 to 5.7.0: https://github.com/osscontainertools/kaniko/pull/423
18+
* chore(deps): bump golang.org/x/sync from 0.18.0 to 0.19.0: https://github.com/osscontainertools/kaniko/pull/424
19+
* chore(deps): bump golang.org/x/sys from 0.38.0 to 0.40.0: https://github.com/osscontainertools/kaniko/pull/425 https://github.com/osscontainertools/kaniko/pull/448
20+
* chore(deps): bump golang.org/x/net from 0.47.0 to 0.48.0: https://github.com/osscontainertools/kaniko/pull/429
21+
* chore(deps): bump github.com/aws/aws-sdk-go-v2/config from 1.32.3 to 1.32.6: https://github.com/osscontainertools/kaniko/pull/427 https://github.com/osscontainertools/kaniko/pull/431 https://github.com/osscontainertools/kaniko/pull/434
22+
* chore(deps): bump github.com/aws/aws-sdk-go-v2/feature/s3/manager from 1.20.13 to 1.20.18: https://github.com/osscontainertools/kaniko/pull/427 https://github.com/osscontainertools/kaniko/pull/431 https://github.com/osscontainertools/kaniko/pull/433 https://github.com/osscontainertools/kaniko/pull/434 https://github.com/osscontainertools/kaniko/pull/441
23+
* chore(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.93.0 to 1.95.0: https://github.com/osscontainertools/kaniko/pull/427 https://github.com/osscontainertools/kaniko/pull/431 https://github.com/osscontainertools/kaniko/pull/433 https://github.com/osscontainertools/kaniko/pull/441
24+
* chore(deps): bump step-security/harden-runner from 2.13.3 to 2.14.0 in the actions group: https://github.com/osscontainertools/kaniko/pull/430
25+
* chore(deps): bump github.com/docker/cli from 29.1.2+incompatible to 29.1.4+incompatible: https://github.com/osscontainertools/kaniko/pull/432 https://github.com/osscontainertools/kaniko/pull/451
26+
* chore(deps): github.com/moby/buildkit from 0.26.2 to 0.26.3: https://github.com/osscontainertools/kaniko/pull/434
27+
* chore(deps): bump google.golang.org/api from 0.257.0 to 0.259.0: https://github.com/osscontainertools/kaniko/pull/436 https://github.com/osscontainertools/kaniko/pull/447
28+
* chore(deps): bump docker/setup-buildx-action from 3.11.1 to 3.12.0: https://github.com/osscontainertools/kaniko/pull/437
29+
* chore(deps): bump github.com/moby/go-archive from 0.1.0 to 0.2.0: https://github.com/osscontainertools/kaniko/pull/438
30+
* chore(deps): bump github.com/GoogleCloudPlatform/docker-credential-gcr/v2 from 2.1.30 to 2.1.31: https://github.com/osscontainertools/kaniko/pull/439
31+
* chore(deps): bump github.com/docker/docker-credential-helpers from 0.9.4 to 0.9.5: https://github.com/osscontainertools/kaniko/pull/451
32+
33+
### Fork Related
34+
* update docs: https://github.com/osscontainertools/kaniko/pull/426
35+
* chore(ci): run staticcheck: by @nejch in https://github.com/osscontainertools/kaniko/pull/445
36+
37+
### Refactorings
38+
* staticcheck: golang.org/x/net/context is deprecated: https://github.com/osscontainertools/kaniko/pull/442
39+
40+
141
# v1.26.3 Release 2025-12-05
242
## Community Update
343
We thank our sponsor **[L3montree](https://l3montree.com)** for their generous support and commitment to open-source sustainability.

CHANGELOG_OVERVIEW.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
* `FF_KANIKO_IGNORE_CACHED_MANIFEST=false` ignore potentially invalid cached manifest files: by @luxurine in https://github.com/osscontainertools/kaniko/pull/267
2121
* don't reuse interstage dependencies: https://github.com/osscontainertools/kaniko/pull/286
2222
* image-index digests causes warmer cache misses: https://github.com/osscontainertools/kaniko/pull/321
23+
* Skip chown/chmod for paths in ignore list: by @mesaglio in https://github.com/osscontainertools/kaniko/pull/435
2324
### Standardization
2425
* sticky bit gets lost on COPY: https://github.com/mzihlmann/kaniko/pull/45
2526
* COPY with restrictive chmod makes directory inacessible: https://github.com/mzihlmann/kaniko/pull/80
@@ -35,6 +36,7 @@
3536
* skip-unused-stages invalidates numeric references: https://github.com/osscontainertools/kaniko/pull/306
3637
* cache mount option implements additional flags: https://github.com/osscontainertools/kaniko/pull/390
3738
* `FF_KANIKO_RUN_MOUNT_SECRET=false` secret mounts: https://github.com/osscontainertools/kaniko/pull/391 https://github.com/osscontainertools/kaniko/pull/409
39+
* `FF_KANIKO_RUN_VIA_TINI=false` reap zombie processes: https://github.com/osscontainertools/kaniko/pull/211 https://github.com/osscontainertools/kaniko/pull/450
3840
### Caching
3941
* sourceImage's CreatedAt timestamp should not be included in cache key: https://github.com/mzihlmann/kaniko/pull/1
4042
* ignore labels on base image for cache: https://github.com/mzihlmann/kaniko/pull/2
@@ -49,6 +51,7 @@
4951
* recompute whether a stage must be saved: https://github.com/osscontainertools/kaniko/pull/335
5052
* port digest optimization to warmer: https://github.com/osscontainertools/kaniko/pull/325
5153
* `FF_KANIKO_DISABLE_HTTP2=false` stop forcing http/2.0: https://github.com/osscontainertools/kaniko/pull/340
54+
* `FF_KANIKO_OCI_WARMER=false` ocilayout warmer: https://github.com/osscontainertools/kaniko/pull/307
5255
### Usability
5356
* if target stage is unspecified we now implicitly target the last stage: https://github.com/mzihlmann/kaniko/pull/27
5457
* kaniko learned `--preserve-context` to preserve the build-context across multi-stage builds: https://github.com/mzihlmann/kaniko/pull/28
@@ -81,6 +84,7 @@
8184
* publish images to ghcr: by @babs in https://github.com/osscontainertools/kaniko/pull/329 https://github.com/osscontainertools/kaniko/pull/353
8285
* ci: rework, use GHCR as primary, separate dev builds from release: by @babs in https://github.com/osscontainertools/kaniko/pull/368 https://github.com/osscontainertools/kaniko/pull/371
8386
* replace github.com/pkg/errors with stdlib errors: by @BobDu in https://github.com/osscontainertools/kaniko/pull/370
87+
* chore(ci): run staticcheck: by @nejch in https://github.com/osscontainertools/kaniko/pull/445
8488

8589
for a more detailed view you can refer to our [Changelog](./CHANGELOG.md) or [release notes](https://github.com/osscontainertools/kaniko/releases)
8690

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# Bump these on release
1616
VERSION_MAJOR ?= 1
1717
VERSION_MINOR ?= 26
18-
VERSION_BUILD ?= 3
18+
VERSION_BUILD ?= 4
1919

2020
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)
2121
VERSION_PACKAGE = $(REPOPATH/pkg/version)

0 commit comments

Comments
 (0)