This is an automated email from the ASF dual-hosted git repository.
reta pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git
The following commit(s) were added to refs/heads/main by this push:
new b2a62d2bdc Bump io.undertow:undertow-core from 2.4.0.Alpha1 to
2.4.0.Beta1 (#2897)
b2a62d2bdc is described below
commit b2a62d2bdc518eacb7bb1e9f3fbe8d949c0da042
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Wed Feb 25 16:32:45 2026 -0500
Bump io.undertow:undertow-core from 2.4.0.Alpha1 to 2.4.0.Beta1 (#2897)
Bumps [io.undertow:undertow-core](https://github.com/undertow-io/undertow)
from 2.4.0.Alpha1 to 2.4.0.Beta1.
- [Release notes](https://github.com/undertow-io/undertow/releases)
-
[Commits](https://github.com/undertow-io/undertow/compare/2.4.0.Alpha1...2.4.0.Beta1)
---
updated-dependencies:
- dependency-name: io.undertow:undertow-core
dependency-version: 2.4.0.Beta1
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot]
<49699333+dependabot[bot]@users.noreply.github.com>
---
parent/pom.xml | 4 ++--
.../http/src/main/java/org/apache/cxf/transport/http/Cookie.java | 2 +-
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/parent/pom.xml b/parent/pom.xml
index 38c9903a6e..99d0924989 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -226,8 +226,8 @@
<cxf.tika.version>3.2.3</cxf.tika.version>
<cxf.tomcat.version>11.0.18</cxf.tomcat.version>
<cxf.tomitribe.http.signature.version>1.8</cxf.tomitribe.http.signature.version>
- <cxf.undertow.version>2.4.0.Alpha1</cxf.undertow.version>
- <cxf.undertow.ee.version>2.0.0.Alpha2</cxf.undertow.ee.version>
+ <cxf.undertow.version>2.4.0.Beta1</cxf.undertow.version>
+ <cxf.undertow.ee.version>2.0.0.Beta1</cxf.undertow.ee.version>
<cxf.yasson.version>3.0.4</cxf.yasson.version>
<!-- the Export-Package is the same as the Maven artifact
version (with the Final), but we don't want an import package
with a version
diff --git
a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java
b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java
index 9df4e882b9..ab1c7b327c 100644
--- a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java
+++ b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/Cookie.java
@@ -147,7 +147,7 @@ public class Cookie {
*/
public String requestCookieHeader() {
StringBuilder b = new StringBuilder(64);
- b.append("$Version=1");
+ b.append("$Version=\"1\"");
b.append("; ").append(getName())
.append('=').append(getValue());
if (getPath() != null && getPath().length() > 0) {