Skip to content

Commit 0737088

Browse files
committed
fixups; add Functions
Signed-off-by: David Fridrich <fridrich.david19@gmail.com>
1 parent 74f1f11 commit 0737088

File tree

2 files changed

+23
-7
lines changed

2 files changed

+23
-7
lines changed

blog/docs/index.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ Follow this blog to keep up-to-date with Knative.
2323
## Featured Posts
2424

2525
### Announcing Knative v1.18 Release
26-
![Release 1.18](./releases/images/release1.18-1.png)
2726
Details on the 1.18 release of the Knative project.
2827

2928
[Read more :octicons-arrow-right-24:](releases/announcing-knative-v1-18-release.md){ .md-button }

blog/docs/releases/announcing-knative-v1-18-release.md

Lines changed: 23 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "v1.18 release"
33
linkTitle: "v1.18 release"
4-
author: "[David Simansky (Red Hat)](https://github.com/dsimansk) [David Fridrich (Red Hat)](https://github.com/gauron99)"
4+
author: "[David Simansky (Red Hat)](https://github.com/dsimansk) and [David Fridrich (Red Hat)](https://github.com/gauron99)"
55
author handle: https://github.com/dsimansk
66
date: 2025-04-29
77
description: "Knative v1.18 release announcement"
@@ -18,6 +18,7 @@ Follow the instructions in
1818
- [Highlights](#highlights)
1919
- [Serving](#serving)
2020
- [Eventing](#eventing)
21+
- [Functions](#functions)
2122
- [Knative Operator](#operator)
2223
- [Thank you contributors](#thank-you-contributors)
2324

@@ -34,7 +35,7 @@ fixes and improvements.
3435

3536
## Serving
3637

37-
<!-- Original notes are here: https://github.com/knative/serving/releases/tag/knative-v1.18.0 -->
38+
**Original notes**: https://github.com/knative/serving/releases/tag/knative-v1.18.0
3839

3940
### 🚨 Breaking or Notable Changes
4041

@@ -53,7 +54,7 @@ fixes and improvements.
5354

5455
## Eventing
5556

56-
<!-- Original notes are here: https://github.com/knative/eventing/releases/tag/knative-v1.18.0 -->
57+
**Original notes**: https://github.com/knative/eventing/releases/tag/knative-v1.18.0
5758

5859
### 💫 New Features & Changes
5960

@@ -68,17 +69,31 @@ fixes and improvements.
6869
- TLS / Cert Manager integration for IntegrationSink ([#8509](https://github.com/knative/eventing/pull/8509), [@matzew](https://github.com/matzew))
6970
Update k8s version in e2e tests ([#8503](https://github.com/knative/eventing/pull/8503), [@dsimansk](https://github.com/dsimansk))
7071

72+
## Functions
73+
**Original notes**: https://github.com/knative/functions/releases/tag/knative-v1.18.0
74+
75+
### 🐞 Bug Fixes
76+
77+
- Fix: Go s2i build issue with user added dependencies ([#2765](https://github.com/knative/func/pull/2765), [@matejvasek](https://github.com/matejvasek))
78+
79+
### 💫 New Features & Changes
80+
81+
82+
- Removes redundant default labels and annotations ([#2746](https://github.com/knative/func/pull/2746), [@KapilSareenp](https://github.com/KapilSareen))
83+
- Adds the ability to specify a storage class for remote build volumes with --remote-storage-class ([#2693](https://github.com/knative/func/pull/2693), [@lkingland](https://github.com/lkingland))
84+
- Python Functions now use the ASGI specification for method signature;
85+
Python Functions now support instances and lifecycle events. See the new templates for details.
86+
The Host builder now can build and run Python functions locally without a container. ([#2685](https://github.com/knative/func/pull/2685), [@lkingland](https://github.com/lkingland))
7187

7288
## Operator
7389

74-
<!-- Original notes are here: https://github.com/knative/operator/releases/tag/knative-v1.18.0 -->
90+
**Original notes**: https://github.com/knative/operator/releases/tag/knative-v1.18.0
7591

7692
### 💫 New Features & Changes
7793

7894
- Added support to specify tolerations for Operator deployments. ([#2031](https://github.com/knative/operator/pull/2031), [@bacek](https://github.com/bacek))
7995
- Proper order is enforced now during manifest installation. ([#2010](https://github.com/knative/operator/pull/2010), [@skonto](https://github.com/skonto))
80-
- Watch and reconcile operator-controller ConfigMaps.
81-
- Reduce memory usage by only watching Knative specific deployments and configmaps. ([#2062](https://github.com/knative/operator/pull/2062), [@pierDipi](https://github.com/pierDipi))
96+
- Watch and reconcile operator-controller ConfigMaps and reduce memory usage by only watching Knative specific deployments and configmaps. ([#2062](https://github.com/knative/operator/pull/2062), [@pierDipi](https://github.com/pierDipi))
8297

8398
## Thank you, contributors
8499

@@ -94,6 +109,8 @@ Contributors:
94109
- [dsimansk](https://github.com/dsimansk)
95110
- [elijah-ro](https://github.com/elijah-rou)
96111
- [flomedj](https://github.com/flomedja)
112+
- [lkingland](https://github.com/lkingland)
113+
- [matejvasek](https://github.com/matejvasek)
97114
- [matzew](https://github.com/matzew)
98115
- [mwritescod](https://github.com/mwritescode)
99116
- [pierDip](https://github.com/pierDipi)

0 commit comments

Comments
 (0)