(cxf) branch 3.6.x-fixes updated: CXF-8952: HttpClientHTTPConduit in CXF doesn't support TLSv1.3 along with other protocols (#1498)

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


The following commit(s) were added to refs/heads/3.6.x-fixes by this push:
 new 024240b5a6 CXF-8952: HttpClientHTTPConduit in CXF doesn't support 
TLSv1.3 along with other protocols (#1498)
024240b5a6 is described below

commit 024240b5a6157dc632c346f79ee0ba8149112ff8
Author: sebastian-violet <71724508+sebastian-vio...@users.noreply.github.com>
AuthorDate: Tue Oct 31 19:49:16 2023 -0700

CXF-8952: HttpClientHTTPConduit in CXF doesn't support TLSv1.3 along with 
other protocols (#1498)

CXF HttpClientHTTPConduit doesn't work with endpoints that have disabled 
lower versions of TLSv1

(cherry picked from commit 88453d5c6e5e2c2786408c0855bf0ec6ecb81e71)
---
 .../main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
 
b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
index 10a65c6e50..595eeed2ff 100644
--- 
a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
+++ 
b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
@@ -251,7 +251,7 @@ public class HttpClientHTTPConduit extends 
URLConnectionHTTPConduit {
 cb.sslParameters(params);
 } else {
 SSLParameters params = new 
SSLParameters(cipherSuites, 
- new 
String[] {"TLSv1", "TLSv1.1", "TLSv1.2"});
+ new String[] 
{"TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3"});
 cb.sslParameters(params);
 }
 }



(cxf) branch dependabot/maven/cxf.jetty.version-11.0.18 created (now 920b23f6d0)

2023-10-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/cxf.jetty.version-11.0.18
in repository https://gitbox.apache.org/repos/asf/cxf.git


  at 920b23f6d0 Bump cxf.jetty.version from 11.0.17 to 11.0.18

No new revisions were added by this update.



(cxf) branch main updated: CXF-8952: HttpClientHTTPConduit in CXF doesn't support TLSv1.3 along with other protocols (#1498)

2023-10-31 Thread reta
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 88453d5c6e CXF-8952: HttpClientHTTPConduit in CXF doesn't support 
TLSv1.3 along with other protocols (#1498)
88453d5c6e is described below

commit 88453d5c6e5e2c2786408c0855bf0ec6ecb81e71
Author: sebastian-violet <71724508+sebastian-vio...@users.noreply.github.com>
AuthorDate: Tue Oct 31 19:49:16 2023 -0700

CXF-8952: HttpClientHTTPConduit in CXF doesn't support TLSv1.3 along with 
other protocols (#1498)

CXF HttpClientHTTPConduit doesn't work with endpoints that have disabled 
lower versions of TLSv1
---
 .../main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
 
b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
index 10a65c6e50..595eeed2ff 100644
--- 
a/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
+++ 
b/rt/transports/http/src/main/java/org/apache/cxf/transport/http/HttpClientHTTPConduit.java
@@ -251,7 +251,7 @@ public class HttpClientHTTPConduit extends 
URLConnectionHTTPConduit {
 cb.sslParameters(params);
 } else {
 SSLParameters params = new 
SSLParameters(cipherSuites, 
- new 
String[] {"TLSv1", "TLSv1.1", "TLSv1.2"});
+ new String[] 
{"TLSv1", "TLSv1.1", "TLSv1.2", "TLSv1.3"});
 cb.sslParameters(params);
 }
 }



(cxf) 01/02: Update Maven Surefire plugin to 3.2.1

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.5.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit c90c5bbb7050fc664f2ab47258338df7c72c4d18
Author: Andriy Redko 
AuthorDate: Tue Oct 31 10:50:20 2023 -0400

Update Maven Surefire plugin to 3.2.1

(cherry picked from commit a2c872c93553e3c8e7d6fec752c8f91e5b613932)
(cherry picked from commit c294238f1d965ff9098bff4927cf7bf64aa41d9e)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index dbbef14497..03d999741a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -476,7 +476,7 @@
 
 org.apache.maven.plugins
 maven-surefire-plugin
-3.1.2
+3.2.1
 
 
 org.apache.maven.plugins



(cxf) 02/02: Recording .gitmergeinfo Changes

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.5.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit c4b410a89c62b4cef75b22118fd68144871cae8a
Author: Andriy Redko 
AuthorDate: Tue Oct 31 14:35:12 2023 -0400

Recording .gitmergeinfo Changes
---
 .gitmergeinfo | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/.gitmergeinfo b/.gitmergeinfo
index 4baa762b9d..3eb94b1639 100644
--- a/.gitmergeinfo
+++ b/.gitmergeinfo
@@ -188,6 +188,7 @@ B 800ec5225fcb3c5a213ca7a4ff5ccbc57b8d30a2
 B 805cfde2da7924f245807e3ac0c401268d02dd3e
 B 80e82a53cc4efe5eb9649de614c51fa07b5b8be3
 B 81af252a18835f9118249eac2cc87abb4e9d3506
+B 823ae33b7724931f826bfe186ad79e5e87fd9190
 B 8252a18d68b994129a6adbcfe1330f67020eb4f0
 B 82c2224e4b7b890860bddf61af28498b7c6bc341
 B 8311c0ea9783697307e616bd4c3f669e8396eab3
@@ -778,3 +779,4 @@ M fe9e88be954b889653aca8a0792552fca523dc4e
 M fea2b31b41ee0bf4584feac882b1796aff5a864e
 M ff640769c1e6efc175b864ade495eb8ca5dc2c7e
 M ff80c36e14f6b1f04ac38ac2203d2f0c48cbfaef
+M ff99555040951a03dff34418d816e52fdf05e1e7



(cxf) branch 3.5.x-fixes updated (83b278270b -> c4b410a89c)

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a change to branch 3.5.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


from 83b278270b Update HttpComponents Core to 4.4.16
 new c90c5bbb70 Update Maven Surefire plugin to 3.2.1
 new c4b410a89c Recording .gitmergeinfo Changes

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitmergeinfo | 2 ++
 pom.xml   | 2 +-
 2 files changed, 3 insertions(+), 1 deletion(-)



(cxf) branch 3.6.x-fixes updated (0efe4bea19 -> ff99555040)

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a change to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git


from 0efe4bea19 Update Santuario to 2.3.4
 new c294238f1d Update Maven Surefire plugin to 3.2.1
 new 823ae33b77 Recording .gitmergeinfo Changes
 new ff99555040 Update Jetty to 10.0.18

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitmergeinfo | 1 +
 distribution/src/main/release/samples/pom.xml | 2 +-
 parent/pom.xml| 2 +-
 pom.xml   | 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)



(cxf) 01/03: Update Maven Surefire plugin to 3.2.1

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit c294238f1d965ff9098bff4927cf7bf64aa41d9e
Author: Andriy Redko 
AuthorDate: Tue Oct 31 10:50:20 2023 -0400

Update Maven Surefire plugin to 3.2.1

(cherry picked from commit a2c872c93553e3c8e7d6fec752c8f91e5b613932)
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index f03206d9ca..13c9523140 100644
--- a/pom.xml
+++ b/pom.xml
@@ -476,7 +476,7 @@
 
 org.apache.maven.plugins
 maven-surefire-plugin
-3.1.2
+3.2.1
 
 
 org.apache.maven.plugins



(cxf) 03/03: Update Jetty to 10.0.18

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit ff99555040951a03dff34418d816e52fdf05e1e7
Author: Andriy Redko 
AuthorDate: Tue Oct 31 10:54:43 2023 -0400

Update Jetty to 10.0.18
---
 distribution/src/main/release/samples/pom.xml | 2 +-
 parent/pom.xml| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/distribution/src/main/release/samples/pom.xml 
b/distribution/src/main/release/samples/pom.xml
index 32029fa14f..445a3872ff 100644
--- a/distribution/src/main/release/samples/pom.xml
+++ b/distribution/src/main/release/samples/pom.xml
@@ -32,7 +32,7 @@
 UTF-8
 2.7.17
 
3.1.7
-10.0.17
+10.0.18
 4.1.100.Final
 
4.5.14
 5.9.0
diff --git a/parent/pom.xml b/parent/pom.xml
index 0cfd17e9d9..76f2553b13 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -151,7 +151,7 @@
 1.0
 1.5.4
 [9.2,11)
-10.0.17
+10.0.18
 9.4.51.v20230217
 ${cxf.jetty10.version}
 3.3



(cxf) 02/03: Recording .gitmergeinfo Changes

2023-10-31 Thread reta
This is an automated email from the ASF dual-hosted git repository.

reta pushed a commit to branch 3.6.x-fixes
in repository https://gitbox.apache.org/repos/asf/cxf.git

commit 823ae33b7724931f826bfe186ad79e5e87fd9190
Author: Andriy Redko 
AuthorDate: Tue Oct 31 10:52:37 2023 -0400

Recording .gitmergeinfo Changes
---
 .gitmergeinfo | 1 +
 1 file changed, 1 insertion(+)

diff --git a/.gitmergeinfo b/.gitmergeinfo
index 5a3d0b4b2e..2e2859b5a7 100644
--- a/.gitmergeinfo
+++ b/.gitmergeinfo
@@ -635,6 +635,7 @@ M bf5b532815a84fba7f35156d637c54c75248a6cb
 M bfaa4ed4d5aefbadc75ac795b2ecf55e4d1f3e38
 M bfc96878264bde108a3ca64644b564b12f54a5c8
 M bfe1e8588de4d0957eb8957a8ea0e2e293a9257b
+M c00ea7f55a19bce91cf513f3dd3f1228f8260856
 M c05666fc41161450258a48fbba6298f56d857a63
 M c06bc6a71e92db0dd4c54bba74129f8009e14ba4
 M c0db9bdd8e92cb4c7be3a2570d6f89fadb362953



(cxf) branch main updated: Update Maven Surefire plugin to 3.2.1

2023-10-31 Thread reta
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 a2c872c935 Update Maven Surefire plugin to 3.2.1
a2c872c935 is described below

commit a2c872c93553e3c8e7d6fec752c8f91e5b613932
Author: Andriy Redko 
AuthorDate: Tue Oct 31 10:50:20 2023 -0400

Update Maven Surefire plugin to 3.2.1
---
 pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e5bffe8d42..cbd104fc8b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -475,7 +475,7 @@
 
 org.apache.maven.plugins
 maven-surefire-plugin
-3.1.2
+3.2.1
 
 
 org.apache.maven.plugins



(cxf) branch dependabot/maven/cxf.jetty.version-11.0.18 deleted (was 2e67284c09)

2023-10-31 Thread github-bot
This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch dependabot/maven/cxf.jetty.version-11.0.18
in repository https://gitbox.apache.org/repos/asf/cxf.git


 was 2e67284c09 Bump cxf.jetty.version from 11.0.17 to 11.0.18

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.



(cxf) branch main updated: Bump cxf.jetty.version from 11.0.17 to 11.0.18 (#1499)

2023-10-31 Thread reta
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 c00ea7f55a Bump cxf.jetty.version from 11.0.17 to 11.0.18 (#1499)
c00ea7f55a is described below

commit c00ea7f55a19bce91cf513f3dd3f1228f8260856
Author: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
AuthorDate: Tue Oct 31 09:07:36 2023 -0400

Bump cxf.jetty.version from 11.0.17 to 11.0.18 (#1499)

Bumps `cxf.jetty.version` from 11.0.17 to 11.0.18.

Updates `org.eclipse.jetty:jetty-alpn-java-server` from 11.0.17 to 11.0.18

Updates `org.eclipse.jetty.websocket:websocket-jetty-server` from 11.0.17 
to 11.0.18

Updates `org.eclipse.jetty.websocket:websocket-jakarta-server` from 11.0.17 
to 11.0.18

Updates `org.eclipse.jetty.http2:http2-client` from 11.0.17 to 11.0.18

Updates `org.eclipse.jetty:jetty-alpn-java-client` from 11.0.17 to 11.0.18

Updates `org.eclipse.jetty:jetty-jaas` from 11.0.17 to 11.0.18
- [Release notes](https://github.com/eclipse/jetty.project/releases)
- 
[Commits](https://github.com/eclipse/jetty.project/compare/jetty-11.0.17...jetty-11.0.18)

---
updated-dependencies:
- dependency-name: org.eclipse.jetty:jetty-alpn-java-server
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.jetty.websocket:websocket-jetty-server
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.jetty.websocket:websocket-jakarta-server
  dependency-type: direct:production
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.jetty.http2:http2-client
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.jetty:jetty-alpn-java-client
  dependency-type: direct:development
  update-type: version-update:semver-patch
- dependency-name: org.eclipse.jetty:jetty-jaas
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] 
Co-authored-by: dependabot[bot] 
<49699333+dependabot[bot]@users.noreply.github.com>
---
 distribution/src/main/release/samples/pom.xml | 2 +-
 parent/pom.xml| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/distribution/src/main/release/samples/pom.xml 
b/distribution/src/main/release/samples/pom.xml
index a613c19fcc..3a18da375a 100644
--- a/distribution/src/main/release/samples/pom.xml
+++ b/distribution/src/main/release/samples/pom.xml
@@ -33,7 +33,7 @@
 UTF-8
 3.0.12
 
4.0.3
-11.0.17
+11.0.18
 4.1.100.Final
 
4.5.14
 5.9.0
diff --git a/parent/pom.xml b/parent/pom.xml
index 7c26bf2744..2fc4af3d09 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -161,7 +161,7 @@
 1.1.1
 1.0
 1.5.4
-11.0.17
+11.0.18
 11.0.17
 3.3
 2.10.10