Skip to content

Commit aee6109

Browse files
authored
blog-1.20 (#6497)
Signed-off-by: David Fridrich <fridrich.david19@gmail.com>
1 parent 974ad31 commit aee6109

File tree

3 files changed

+166
-3
lines changed

3 files changed

+166
-3
lines changed

docs/blog/.nav.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ nav:
55
- Blog:
66
- index.md
77
- Releases:
8+
- releases/announcing-knative-v1-20-release.md
89
- releases/announcing-knative-v1-19-release.md
910
- releases/announcing-knative-v1-18-release.md
1011
- releases/announcing-knative-v1-17-release.md

docs/blog/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ Monitoring Virtual Machines with Knative Eventing
3232

3333
[Read more :octicons-arrow-right-24:](articles/kubevirt_meets_eventing.md){ .md-button }
3434

35-
### Announcing Knative v1.19 Release
36-
Details on the 1.19 release of the Knative project.
35+
### Announcing Knative v1.20 Release
36+
Details on the 1.20 release of the Knative project.
3737

38-
[Read more :octicons-arrow-right-24:](releases/announcing-knative-v1-19-release.md){ .md-button }
38+
[Read more :octicons-arrow-right-24:](releases/announcing-knative-v1-20-release.md){ .md-button }
3939

4040
### Building Stateful applications with Knative and Restate
4141
![Building Stateful applications with Knative and Restate](./articles/images/Building-stateful-serverless-apps-with-knative-and-restate.png)
Lines changed: 162 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,162 @@
1+
---
2+
title: "v1.20 release"
3+
linkTitle: "v1.20 release"
4+
author: "[gauron99 (Red Hat)](https://github.com/gauron99) and [linkvt (Red Hat)](https://github.com/linkvt)"
5+
author handle: https://github.com/gauron99
6+
date: 2025-11-07
7+
description: "Knative v1.20 release announcement"
8+
type: "blog"
9+
---
10+
11+
## Announcing Knative v1.20 Release
12+
13+
A new version of Knative is now available across multiple components.
14+
15+
Follow the instructions in
16+
[Installing Knative](https://knative.dev/docs/install/) to install the components you require.
17+
## Table of Contents
18+
- [Highlights](#highlights)
19+
- [Serving](#serving)
20+
- [Eventing](#eventing)
21+
- [Functions](#functions)
22+
- [Knative Operator](#operator)
23+
- [Thank you contributors](#thank-you-contributors)
24+
25+
## Highlights
26+
27+
There have been various changes in core components for this release.
28+
29+
- For serving we introduced new value `AllowRootBounded` for `secure-pod-defaults` option that balances security with compatibility and is planned to become the default in v1.21 (More info below!).
30+
- Eventing introduces a complete Request Reply data plane and adds support for Pod default credentials in AWS Integration resources.
31+
- Functions' CLI now provides more clearer errors and hints to users when things go wrong with build, deploy and delete commands. We also include some bug fixes.
32+
- Operator recieved a fix for deadlock occurring during KnativeServing creation with `system-internal-tls` enabled.
33+
34+
## Serving
35+
36+
**Original notes**: [Knative Serving 1.20](https://github.com/knative/serving/releases/tag/knative-v1.20.0)
37+
38+
### 🚨 Breaking or Notable Changes
39+
40+
- In v1.19 we've dropped support for OpenCensus (which has been deprecated for a while) in favour of OpenTelemetry. This is a breaking change and details are documented here in the [design document](https://docs.google.com/document/d/1QQ_ubc0RjeZbRHdN4rQR85Z7RZfTSjz4GoKsE0dZ2Z0/edit?pli=1&tab=t.0#heading=h.n8a530nnrb=). and the website (https://knative.dev/docs/serving/observability/metrics/collecting-metrics/)
41+
- Secure Pod Defaults ([#16042](https://github.com/knative/serving/16042), [@nader-ziada](https://github.com/nader-ziada))
42+
- We've introduced `secure-pod-defaults` in an earlier release but this release includes a new setting `AllowRootBounded` that offers a better security posture for your workloads
43+
but balances the compatibility with images that require/expect you to run as root.
44+
For `v1.20` release the `secure-pod-defaults` default will remain `disabled` but in a future release (most likely `v1.21`) we will switch this default to `AllowRootBounded`.
45+
46+
### 💫 New Features & Changes
47+
48+
- Create a new value for `secure-pod-defaults`: `AllowRootBounded` when AllowRootBounded,
49+
defaults SeccompProfile and Capabilities if nil and when enabled sets RunAsNonRoot
50+
to true if not already specified ([#16042](https://github.com/knative/serving/pull/16042), [@nader-ziada](https://github.com/nader-ziada))
51+
- Made it possible to configure the `httputil.ReverseProxy` or add `http.Handler`s to queue-proxy in out-of-tree builds. ([#16097](https://github.com/knative/serving/pull/16097), [@mbaynton](https://github.com/mbaynton))
52+
- Podspec-dryrun feature flag has been removed. Dry run validation will now occur when a user opts into it using `kubectl apply --dry-run=server` ([#16008](https://github.com/knative/serving/pull/16008), [@Alexander-Kita](https://github.com/Alexander-Kita))
53+
- Add distinct logging for timeout types ([#16109](https://github.com/knative/serving/pull/16109), [@thiagomedina](https://github.com/thiagomedina))
54+
- drop unnecessary 'kn.activator.proxy' metric/span attribute ([#16045](https://github.com/knative/serving/pull/16045), [@dprotaso](https://github.com/dprotaso))
55+
- bump Istio to v1.27 and Contour to v1.33 ([#16099](https://github.com/knative/serving/pull/16099),[@dprotaso](https://github.com/dprotaso))
56+
- Keep queue-proxy admin server on HTTP for PreStop hooks ([#16163](https://github.com/knative/serving/pull/16163), [@Fedosin](https://github.com/Fedosin))
57+
58+
### 🐞Bug Fixes
59+
60+
- Fix min-scale transition ([#16094](https://github.com/knative/serving/pull/16094), [@dprotaso](https://github.com/dprotaso))
61+
- Add initialize conditions to MakePA to avoid potential race conditions ([#16037](https://github.com/knative/serving/pull/16037), [@nader-ziada](https://github.com/nader-ziada))
62+
- For orphaned certificates if we have an issue listing just log the error ([#16096](https://github.com/knative/serving/pull/16096), [@dprotaso](https://github.com/dprotaso))
63+
- Fix queue proxy user metrics port ([#16018](https://github.com/knative/serving/pull/16018), [@dprotaso](https://github.com/dprotaso))
64+
- drop unused metrics domain env var ([#16019](https://github.com/knative/serving/pull/16019), [@dprotaso](https://github.com/dprotaso))
65+
- fix otelhttp setup in activator ([#16044](https://github.com/knative/serving/pull/16044), [@dprotaso](https://github.com/dprotaso))
66+
- Drop probe tracing in queue-proxy ([#16048](https://github.com/knative/serving/pull/16048), [@dprotaso](https://github.com/dprotaso))
67+
- Adjust queue proxy metric attributes ([#16049](https://github.com/knative/serving/pull/16049), [@dprotaso](https://github.com/dprotaso))
68+
- Serving Metric Tweaks ([#16062](https://github.com/knative/serving/pull/16062), [@dprotaso](https://github.com/dprotaso))
69+
- Fix: PodAutoscaler not reconciled due to missing class annotation ([#16141](https://github.com/knative/serving/pull/16141), [@nader-ziada](https://github.com/nader-ziada))
70+
71+
## Eventing
72+
73+
**Original notes**: [Knative Eventing 1.20](https://github.com/knative/eventing/releases/tag/knative-v1.20.0)
74+
75+
### 💫 New Features & Changes
76+
77+
- Add support for using Pod default credentials in AWS IntegrationSource and IntegrationSink resources by specifying a ServiceAccount. ([#8731](https://github.com/knative/eventing/pull/8731), [@qswinson](https://github.com/qswinson))
78+
- Event files received by Jobsinks will now include the Distributed Tracing extension ([#8626](https://github.com/knative/eventing/pull/8626), [@cobyge](https://github.com/cobyge))
79+
- Eventing Core triggers now support the KN_VERIFY_CORRELATION_ID CESQL function ([#8700](https://github.com/knative/eventing/pull/8700), [@Cali0707](https://github.com/Cali0707))
80+
- Feat: Added complete request reply data plane ([#8699](https://github.com/knative/eventing/pull/8699), [@Cali0707](https://github.com/Cali0707))
81+
- Feat: the RequestReply resource can now be deployed from eventing core ([#8701](https://github.com/knative/eventing/pull/8701), [@Cali0707](https://github.com/Cali0707))
82+
83+
### 🐞Bug Fixes
84+
85+
- Fix a bug where the SkipPermissions mode of the ApiServerSource was not restarting the adapter pod properly. ([#8736](https://github.com/knative/eventing/pull/8736), [@rh-hemartin](https://github.com/rh-hemartin))
86+
- Fix: metrics with prometheus use the same default port as before, 9092 ([#8669](https://github.com/knative/eventing/pull/8669), [@Cali0707](https://github.com/Cali0707))
87+
- Fixes broken MT channel based broker when TLS is disabled and OIDC enabled ([#8727](https://github.com/knative/eventing/pull/8727), [@twoGiants](https://github.com/twoGiants))
88+
89+
### Documentation
90+
91+
- Correct guide on how to install Cert-manager manually in DEVELOPMENT.md ([#8741](https://github.com/knative/eventing/pull/8741), [@twoGiants](https://github.com/twoGiants))
92+
93+
## Functions
94+
95+
**Original notes**: [Knative Functions 1.20](https://github.com/knative/functions/releases/tag/knative-v1.20.0)
96+
97+
### 💫 New Features & Changes
98+
99+
- Func build and deploy commands now provide better error messages and validation ([#3058](https://github.com/knative/func/pull/3058),[#3062](https://github.com/knative/func/pull/3062),[#3066](https://github.com/knative/func/pull/3066), [@RayyanSeliya](https://github.com/RayyanSeliya))
100+
- Improve error messages and include user hints on failures for various commands ([#3016](https://github.com/knative/func/pull/3016),[#3018](https://github.com/knative/func/pull/3018),[#3022](https://github.com/knative/func/pull/3022),[#3025](https://github.com/knative/func/pull/3025),[#3038](https://github.com/knative/func/pull/3038) [@RayyanSeliya](https://github.com/RayyanSeliya))
101+
- Improve func delete user experience by creating better error messages ([#3054](https://github.com/knative/func/pull/3054), [@RayyanSeliya](https://github.com/RayyanSeliya))
102+
- Improve func deploy user experience by showing clear error guidance ([#3042](https://github.com/knative/func/pull/3042), [@RayyanSeliya](https://github.com/RayyanSeliya))
103+
104+
### 🐞Bug Fixes
105+
106+
- Fix: Python pack build/run doesn't pick up code changes ([#3079](https://github.com/knative/func/pull/3079)) ([#3080](https://github.com/knative/func/pull/3080), [@matejvasek](https://github.com/matejvasek))
107+
- Fix: fallback to python3 if python not present ([#3082](https://github.com/knative/func/pull/3082), [@matejvasek](https://github.com/matejvasek))
108+
- Fix: host builder can push images to cluster internal registries ([#3130](https://github.com/knative/func/pull/3130), [@matejvasek](https://github.com/matejvasek))
109+
- Fix: host builder uses base-image with correct version of Python ([#2965](https://github.com/knative/func/pull/2965), [@matejvasek](https://github.com/matejvasek))
110+
111+
### Other (Cleanup or Flake)
112+
113+
- Remove the --container flag - builds are determined via builder itself for func run command ([#2987](https://github.com/knative/func/pull/2987), [@gauron99](https://github.com/gauron99))
114+
- Improved function run output to show both host and port when running locally ([#2953](https://github.com/knative/func/pull/2953), [@RayyanSeliya](https://github.com/RayyanSeliya))
115+
- Fix pod security context fs permissions ([#2946](https://github.com/knative/func/pull/2946), [@lkingland](https://github.com/lkingland))
116+
- Fix: backward compatibility for building old Python Functions with newer func ([#2962](https://github.com/knative/func/pull/2962), [@matejvasek](https://github.com/matejvasek))
117+
118+
## Operator
119+
120+
**Original notes**: [Knative Operator 1.20](https://github.com/knative/operator/releases/tag/knative-v1.20.0)
121+
122+
### 🐞Bug Fixes
123+
124+
- Fix deadlock during creation of KnativeServing with system-internal-tls enabled ([#2179](https://github.com/knative/operator/pull/2179), [@linkvt](https://github.com/linkvt))
125+
126+
# Thank you, contributors
127+
128+
Release Leads:
129+
130+
- [@gauron99](https://github.com/gauron99)
131+
- [@linkvt](https://github.com/linkvt)
132+
133+
Contributors:
134+
135+
- [@Cali0707](https://github.com/Cali0707)
136+
- [@cobyge](https://github.com/cobyge)
137+
- [@dprotaso](https://github.com/dprotaso)
138+
- [@gauron99](https://github.com/gauron99)
139+
- [@linkvt](https://github.com/linkvt)
140+
- [@lkingland](https://github.com/lkingland)
141+
- [@matejvasek](https://github.com/matejvasek)
142+
- [@nader-ziada](https://github.com/nader-ziada)
143+
- [@qswinson](https://github.com/qswinson)
144+
- [@RayyanSeliya](https://github.com/RayyanSeliya)
145+
- [@rh-hemartin](https://github.com/rh-hemartin)
146+
- [@twoGiants](https://github.com/twoGiants)
147+
148+
## Learn more
149+
150+
Knative is an open source project that anyone in the [community](https://knative.dev/docs/community/) can use, improve, and enjoy. We'd love you to join us!
151+
152+
- [Knative docs](https://knative.dev/docs)
153+
- [Quickstart tutorial](https://knative.dev/docs/getting-started)
154+
- [Samples](https://knative.dev/docs/samples)
155+
- [Knative working groups](https://github.com/knative/community/blob/main/working-groups/WORKING-GROUPS.md)
156+
- [Knative User Mailing List](https://groups.google.com/forum/#!forum/knative-users)
157+
- [Knative Development Mailing List](https://groups.google.com/forum/#!forum/knative-dev)
158+
- Knative on Twitter [@KnativeProject](https://twitter.com/KnativeProject)
159+
- Knative on [StackOverflow](https://stackoverflow.com/questions/tagged/knative)
160+
- Knative [Slack](https://slack.cncf.io)
161+
- Knative on [YouTube](https://www.youtube.com/channel/UCq7cipu-A1UHOkZ9fls1N8A)
162+

0 commit comments

Comments
 (0)