Skip to content

Commit cddf18d

Browse files
authored
Merge pull request #38150 from abrennan89/SRVCOM-1574
SRVCOM-1574: Serverless 1.19.0 release notes
2 parents c7e4542 + 6f86c38 commit cddf18d

File tree

4 files changed

+63
-8
lines changed

4 files changed

+63
-8
lines changed

modules/serverless-rn-1-19-0.adoc

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
[id="serverless-rn-1-19-0_{context}"]
2+
= Release Notes for Red Hat {ServerlessProductName} 1.19.0
3+
4+
[id="new-features-1-19-0_{context}"]
5+
== New features
6+
7+
* {ServerlessProductName} now uses Knative Serving 0.25.
8+
* {ServerlessProductName} now uses Knative Eventing 0.25.
9+
* {ServerlessProductName} now uses Kourier 0.25.
10+
* {ServerlessProductName} now uses Knative `kn` CLI 0.25.
11+
* {ServerlessProductName} now uses Knative Kafka 0.25.
12+
* The `kn func` CLI plug-in now uses `func` 0.19.
13+
14+
* The `KafkaBinding` API is deprecated in {ServerlessProductName} 1.19.0 and will be removed in a future release.
15+
16+
* HTTPS redirection is now supported and can be configured either globally for a cluster or per each Knative service.
17+
18+
[id="fixed-issues-1-19-0_{context}"]
19+
== Fixed issues
20+
21+
* In previous releases, the Kafka channel dispatcher waited only for the local commit to succeed before responding, which might have caused lost events in the case of an Apache Kafka node failure. The Kafka channel dispatcher now waits for all in-sync replicas to commit before responding.
22+
23+
[id="known-issues-1-19-0_{context}"]
24+
== Known issues
25+
26+
* In `func` version 0.19, some runtimes might be unable to build a function by using podman. You might see an error message similar to the following:
27+
+
28+
[source,terminal]
29+
----
30+
ERROR: failed to image: error during connect: Get "http://%2Fvar%2Frun%2Fdocker.sock/v1.40/info": EOF
31+
----
32+
+
33+
** The following workaround exists for this issue:
34+
35+
.. Update the podman service by adding `--time=0` to the service `ExecStart` definition:
36+
+
37+
.Example service configuration
38+
[source,terminal]
39+
----
40+
ExecStart=/usr/bin/podman $LOGGING system service --time=0
41+
----
42+
.. Restart the podman service by running the following commands:
43+
+
44+
[source,terminal]
45+
----
46+
$ systemctl --user daemon-reload
47+
----
48+
+
49+
[source,terminal]
50+
----
51+
$ systemctl restart --user podman.socket
52+
----
53+
54+
** Alternatively, you can expose the podman API by using TCP:
55+
+
56+
[source,terminal]
57+
----
58+
$ podman system service --time=0 tcp:127.0.0.1:5534 &
59+
export DOCKER_HOST=tcp://127.0.0.1:5534
60+
----

serverless/admin_guide/knative-serving-CR-config.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ include::modules/knative-serving-CR-system-deployments.adoc[leveloffset=+1]
1313
include::modules/serverless-config-emptydir.adoc[leveloffset=+1]
1414

1515
// global https redirect
16-
// include::modules/serverless-https-redirect-global.adoc[leveloffset=+1]
17-
// uncomment at 1.19.0 release
16+
include::modules/serverless-https-redirect-global.adoc[leveloffset=+1]
1817

1918
[id="additional-resources_knative-serving-CR-config"]
2019
== Additional resources

serverless/knative_serving/serverless-applications.adoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ include::modules/interacting-serverless-apps-http2-gRPC.adoc[leveloffset=+1]
4646
include::modules/serverless-services-network-policies.adoc[leveloffset=+1]
4747

4848
// HTTPS redirection
49-
// include::modules/serverless-https-redirect-service.adoc[leveloffset=+1]
50-
// uncomment at 1.19.0 release
49+
include::modules/serverless-https-redirect-service.adoc[leveloffset=+1]
5150

5251
[id="serverless-applications-kn-offline-mode"]
5352
== Using kn CLI in offline mode

serverless/serverless-release-notes.adoc

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,10 @@ For details about the latest Knative component releases, see the link:https://kn
1818
include::modules/serverless-api-versions.adoc[leveloffset=+1]
1919

2020
// Modules included, most to least recent
21+
include::modules/serverless-rn-1-19-0.adoc[leveloffset=+1]
2122
include::modules/serverless-rn-1-18-0.adoc[leveloffset=+1]
2223
include::modules/serverless-rn-1-17-0.adoc[leveloffset=+1]
2324
include::modules/serverless-rn-1-16-0.adoc[leveloffset=+1]
2425
include::modules/serverless-rn-1-15-0.adoc[leveloffset=+1]
2526
// No longer supported
2627
include::modules/serverless-rn-1-14-0.adoc[leveloffset=+1]
27-
include::modules/serverless-rn-1-13-0.adoc[leveloffset=+1]
28-
include::modules/serverless-rn-1-12-0.adoc[leveloffset=+1]
29-
include::modules/serverless-rn-1-11-0.adoc[leveloffset=+1]
30-
include::modules/serverless-rn-1-10-0.adoc[leveloffset=+1]

0 commit comments

Comments
 (0)