Skip to content

Commit d422a81

Browse files
authored
Merge pull request #314 from osscontainertools/release-v1.26.0
add changelog
2 parents 908fdbc + 9098239 commit d422a81

File tree

3 files changed

+49
-5
lines changed

3 files changed

+49
-5
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,44 @@
1+
# v1.26.0 Release 2025-10-16
2+
## Update Notice
3+
In this Release we activated three feature flags:
4+
* [FF_KANIKO_SQUASH_STAGES](https://github.com/osscontainertools/kaniko#flag-ff_kaniko_squash_stages)
5+
* [FF_KANIKO_RUN_MOUNT_CACHE](https://github.com/osscontainertools/kaniko#flag-ff_kaniko_run_mount_cache)
6+
* [FF_KANIKO_NEW_CACHE_LAYOUT](https://github.com/osscontainertools/kaniko#flag-ff_kaniko_new_cache_layout)
7+
8+
You can roll-back those changes by overriding them in the environment ie.
9+
```yaml
10+
job:
11+
variables:
12+
FF_KANIKO_SQUASH_STAGES: "0"
13+
FF_KANIKO_RUN_MOUNT_CACHE: "0"
14+
FF_KANIKO_NEW_CACHE_LAYOUT: "0"
15+
```
16+
Please also notify us by [filing a new issue](https://github.com/osscontainertools/kaniko/issues/new/choose).
17+
18+
## What's Changed
19+
### Bugfixes
20+
* skip-unused-stages invalidates numeric references: https://github.com/osscontainertools/kaniko/pull/306
21+
22+
### Performance
23+
* `FF_KANIKO_OCI_STAGES=false` use ocilayout instead of tarballs during stage transitions: https://github.com/mzihlmann/kaniko/pull/141
24+
25+
### Usability
26+
* activate featureflags for v1.26.0 release: https://github.com/osscontainertools/kaniko/pull/312
27+
28+
### Maintenance
29+
* chore(deps): bump golang.org/x/sys from 0.36.0 to 0.37.0: https://github.com/osscontainertools/kaniko/pull/296
30+
* chore(deps): bump golang.org/x/oauth2 from 0.31.0 to 0.32.0: https://github.com/osscontainertools/kaniko/pull/297
31+
* chore(deps): bump golang.org/x/net from 0.45.0 to 0.46.0: https://github.com/osscontainertools/kaniko/pull/298
32+
* chore(deps): bump github.com/moby/moby/api from 1.52.0-beta.1 to 1.52.0-beta.2: https://github.com/osscontainertools/kaniko/pull/311
33+
* chore(deps): bump golang from 1.25.2 to 1.25.3: https://github.com/osscontainertools/kaniko/pull/310
34+
35+
### Fork Related
36+
* update docs: https://github.com/osscontainertools/kaniko/pull/294 https://github.com/osscontainertools/kaniko/pull/302 https://github.com/osscontainertools/kaniko/pull/313
37+
* update docs: by @6543 in https://github.com/osscontainertools/kaniko/pull/300
38+
* enable `FF_KANIKO_SQUASH_STAGES` in integrationtests: https://github.com/osscontainertools/kaniko/pull/309
39+
* mz308: activate featureflags for v1.26.0 release: https://github.com/osscontainertools/kaniko/pull/312
40+
41+
142
# v1.25.6 Release 2025-10-08
243
## What's changed
344
### Bugfixes

CHANGELOG_OVERVIEW.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,8 @@
2626
* skip snapshotting rootdir: https://github.com/mzihlmann/kaniko/pull/183
2727
* predefined build args: by @kit101 in https://github.com/mzihlmann/kaniko/pull/185 https://github.com/osscontainertools/kaniko/pull/277
2828
* add heredoc `<<EOF` syntax support: https://github.com/mzihlmann/kaniko/pull/206 https://github.com/mzihlmann/kaniko/pull/213 https://github.com/mzihlmann/kaniko/pull/214 https://github.com/mzihlmann/kaniko/pull/215
29-
* `FF_KANIKO_RUN_MOUNT_CACHE=false` cache mounts: https://github.com/osscontainertools/kaniko/pull/245 https://github.com/osscontainertools/kaniko/pull/274 https://github.com/osscontainertools/kaniko/pull/284
29+
* `FF_KANIKO_RUN_MOUNT_CACHE=true` cache mounts: https://github.com/osscontainertools/kaniko/pull/245 https://github.com/osscontainertools/kaniko/pull/274 https://github.com/osscontainertools/kaniko/pull/284
30+
* skip-unused-stages invalidates numeric references: https://github.com/osscontainertools/kaniko/pull/306
3031
### Caching
3132
* sourceImage's CreatedAt timestamp should not be included in cache key: https://github.com/mzihlmann/kaniko/pull/1
3233
* ignore labels on base image for cache: https://github.com/mzihlmann/kaniko/pull/2
@@ -36,7 +37,8 @@
3637
* ADD learned to cache its output layer: https://github.com/mzihlmann/kaniko/pull/24
3738
* whiteout annotations to prevent cache misses through `--annotation`: https://github.com/mzihlmann/kaniko/pull/209
3839
### Performance
39-
* `FF_KANIKO_SQUASH_STAGES=false` squash stages together, speeding up build: https://github.com/mzihlmann/kaniko/pull/141 https://github.com/osscontainertools/kaniko/pull/283
40+
* `FF_KANIKO_SQUASH_STAGES=true` squash stages together, speeding up build: https://github.com/mzihlmann/kaniko/pull/141 https://github.com/osscontainertools/kaniko/pull/283
41+
* `FF_KANIKO_OCI_STAGES=false` use ocilayout instead of tarballs during stage transitions: https://github.com/mzihlmann/kaniko/pull/141
4042
### Usability
4143
* if target stage is unspecified we now implicitly target the last stage: https://github.com/mzihlmann/kaniko/pull/27
4244
* kaniko learned `--preserve-context` to preserve the build-context across multi-stage builds: https://github.com/mzihlmann/kaniko/pull/28
@@ -53,7 +55,7 @@
5355
* riscv image: https://github.com/mzihlmann/kaniko/pull/220
5456
* add env credential helper: https://github.com/mzihlmann/kaniko/pull/236 https://github.com/mzihlmann/kaniko/pull/249
5557
* allow skip push cache: https://github.com/osscontainertools/kaniko/pull/268
56-
* `FF_KANIKO_NEW_CACHE_LAYOUT=false` organize kaniko dir: https://github.com/osscontainertools/kaniko/pull/285
58+
* `FF_KANIKO_NEW_CACHE_LAYOUT=true` organize kaniko dir: https://github.com/osscontainertools/kaniko/pull/285
5759
### Shoutout & Thanks
5860
* 🔗 cleanup jobs: by @cpanato in https://github.com/mzihlmann/kaniko/pull/55
5961
* 🔗 update ENV syntax in Dockerfile: by @babs in https://github.com/mzihlmann/kaniko/pull/60
@@ -62,6 +64,7 @@
6264
* remove deprecated github.com/containerd/containerd/platforms: by @BobDu in https://github.com/osscontainertools/kaniko/pull/252
6365
* move github.com/docker/docker/api -> github.com/moby/moby/api: by @BobDu in https://github.com/osscontainertools/kaniko/pull/258
6466
* 🔗 fix code scanning alert 1: by @cpanato in https://github.com/osscontainertools/kaniko/pull/272
67+
* update docs: by @6543 in https://github.com/osscontainertools/kaniko/pull/300
6568

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

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
# Bump these on release
1616
VERSION_MAJOR ?= 1
17-
VERSION_MINOR ?= 25
18-
VERSION_BUILD ?= 6
17+
VERSION_MINOR ?= 26
18+
VERSION_BUILD ?= 0
1919

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

0 commit comments

Comments
 (0)