(cxf) branch 3.5.x-fixes updated (e9dc8fac0a -> 0e2d86c736)

2023-12-27 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 e9dc8fac0a Recording .gitmergeinfo Changes
 new 0a9330edd3 CXF-8968: OpenTelemetryClientFeature cannot be used as a 
CDI bean unless (#1615)
 new 0e2d86c736 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 ++
 .../cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java| 9 +
 2 files changed, 11 insertions(+)



(cxf) 02/02: Recording .gitmergeinfo Changes

2023-12-27 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 0e2d86c7361955a902b2ec2556727690ca0b8ca5
Author: Andriy Redko 
AuthorDate: Wed Dec 27 17:20:36 2023 -0500

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

diff --git a/.gitmergeinfo b/.gitmergeinfo
index c905ad2909..8b77b8472c 100644
--- a/.gitmergeinfo
+++ b/.gitmergeinfo
@@ -225,6 +225,7 @@ B 894725bd8bc96397cf6aebda284f70813e03ed96
 B 899cd7b1dd6d1cb7a802edcab9d8595a2082d7b8
 B 8aad9a1fed5b7f924270c9054cfe50255a17595e
 B 8ac5ce609c88585fbf4d96907c0a8d947153b27b
+B 8aebeebbb83d5e71ec8781ab48f2f9a1906d09b1
 B 8b562654da0872a100860ca699d932af3bc1e71b
 B 8b77849b3b9f67a23f4264d8e80c21092e3f51c3
 B 8bd2379fe2c9033e9461e51f9b5d99ab7a650978
@@ -527,6 +528,7 @@ M 40f09e6a0db63c8cddbd937bc4e26c3dd7ab7425
 M 410728df7c306a759afb74e51c609ccac86920b5
 M 410a7aedabfc85a99f605138ad717b6bd3a51c07
 M 4149f832ca3a0868928f9978f75c1eae4d8e187d
+M 4332f0fd99bb4b043cec55fdae4a75c5bfdb1cab
 M 4410892ad37e906863e7a996f543c5b503dcc666
 M 4434d6055ac4be9f5e5cb3e2070966c5f04fd246
 M 444d08fdbf87606c46172db134d0656c6ff49acc



(cxf) 01/02: CXF-8968: OpenTelemetryClientFeature cannot be used as a CDI bean unless (#1615)

2023-12-27 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 0a9330edd3594645d6feaf9293604185d137e113
Author: Peter Palaga 
AuthorDate: Wed Dec 27 23:16:41 2023 +0100

CXF-8968: OpenTelemetryClientFeature cannot be used as a CDI bean unless 
(#1615)

it has a no-args constructor

(cherry picked from commit f18e90a4605b13ab5d1b88effc56e90ab569823b)
(cherry picked from commit 1d1092c57767b481810b41fde50b27b827154a1a)
---
 .../cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java| 9 +
 1 file changed, 9 insertions(+)

diff --git 
a/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
 
b/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
index de34d485f8..2d3121d4d5 100644
--- 
a/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
+++ 
b/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
@@ -27,12 +27,17 @@ import org.apache.cxf.feature.AbstractPortableFeature;
 import org.apache.cxf.feature.DelegatingFeature;
 import org.apache.cxf.interceptor.InterceptorProvider;
 
+import io.opentelemetry.api.GlobalOpenTelemetry;
 import io.opentelemetry.api.OpenTelemetry;
 import io.opentelemetry.api.trace.Tracer;
 
 @NoJSR250Annotations
 @Provider(value = Type.Feature, scope = Scope.Client)
 public class OpenTelemetryClientFeature extends 
DelegatingFeature {
+public OpenTelemetryClientFeature() {
+super(new Portable());
+}
+
 public OpenTelemetryClientFeature(OpenTelemetry openTelemetry) {
 super(new Portable(openTelemetry));
 }
@@ -49,6 +54,10 @@ public class OpenTelemetryClientFeature extends 
DelegatingFeature

(cxf) 02/03: CXF-8968: OpenTelemetryClientFeature cannot be used as a CDI bean unless (#1615)

2023-12-27 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 1d1092c57767b481810b41fde50b27b827154a1a
Author: Peter Palaga 
AuthorDate: Wed Dec 27 23:16:41 2023 +0100

CXF-8968: OpenTelemetryClientFeature cannot be used as a CDI bean unless 
(#1615)

it has a no-args constructor

(cherry picked from commit f18e90a4605b13ab5d1b88effc56e90ab569823b)
---
 .../cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java| 9 +
 1 file changed, 9 insertions(+)

diff --git 
a/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
 
b/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
index de34d485f8..2d3121d4d5 100644
--- 
a/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
+++ 
b/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
@@ -27,12 +27,17 @@ import org.apache.cxf.feature.AbstractPortableFeature;
 import org.apache.cxf.feature.DelegatingFeature;
 import org.apache.cxf.interceptor.InterceptorProvider;
 
+import io.opentelemetry.api.GlobalOpenTelemetry;
 import io.opentelemetry.api.OpenTelemetry;
 import io.opentelemetry.api.trace.Tracer;
 
 @NoJSR250Annotations
 @Provider(value = Type.Feature, scope = Scope.Client)
 public class OpenTelemetryClientFeature extends 
DelegatingFeature {
+public OpenTelemetryClientFeature() {
+super(new Portable());
+}
+
 public OpenTelemetryClientFeature(OpenTelemetry openTelemetry) {
 super(new Portable(openTelemetry));
 }
@@ -49,6 +54,10 @@ public class OpenTelemetryClientFeature extends 
DelegatingFeature

(cxf) 01/03: Update Apache Groovy to 4.0.17

2023-12-27 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 4332f0fd99bb4b043cec55fdae4a75c5bfdb1cab
Author: Andriy Redko 
AuthorDate: Tue Dec 26 14:57:07 2023 -0500

Update Apache Groovy to 4.0.17

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

diff --git a/parent/pom.xml b/parent/pom.xml
index 7bfbaa8e45..5718fe6035 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -588,7 +588,7 @@
 
 org.apache.groovy
 groovy
-4.0.16
+4.0.17
 
 
 



(cxf) 03/03: Recording .gitmergeinfo Changes

2023-12-27 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 8aebeebbb83d5e71ec8781ab48f2f9a1906d09b1
Author: Andriy Redko 
AuthorDate: Wed Dec 27 17:20:05 2023 -0500

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

diff --git a/.gitmergeinfo b/.gitmergeinfo
index 7a0eeaa9a1..60135d5c63 100644
--- a/.gitmergeinfo
+++ b/.gitmergeinfo
@@ -191,6 +191,7 @@ M 079d7ecbdaa87dcb6dbcff530595f128fe6e7519
 M 07a3a8a8b8fb11b05d074cb270d0289602f24f28
 M 07d4d658494ab19860932d6ec83059c7ab9443cb
 M 0800f5d26a5d8671db7ce9035c86bffbefb0cdfe
+M 083af15653a50163fada95b370f7957c75d9e827
 M 08926e9482ae484c2eba441e0e0c65d76fe8c59b
 M 08f9a8e455896e005c508ab376a55d8edc2cc168
 M 09211352a70bef5e309f9e93a9548eb9657e0673



(cxf) branch 3.6.x-fixes updated (ad6d812221 -> 8aebeebbb8)

2023-12-27 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 ad6d812221 Recording .gitmergeinfo Changes
 new 4332f0fd99 Update Apache Groovy to 4.0.17
 new 1d1092c577 CXF-8968: OpenTelemetryClientFeature cannot be used as a 
CDI bean unless (#1615)
 new 8aebeebbb8 Recording .gitmergeinfo Changes

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 +
 .../cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java| 9 +
 parent/pom.xml   | 2 +-
 3 files changed, 11 insertions(+), 1 deletion(-)



(cxf) branch main updated: CXF-8968: OpenTelemetryClientFeature cannot be used as a CDI bean unless (#1615)

2023-12-27 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 f18e90a460 CXF-8968: OpenTelemetryClientFeature cannot be used as a 
CDI bean unless (#1615)
f18e90a460 is described below

commit f18e90a4605b13ab5d1b88effc56e90ab569823b
Author: Peter Palaga 
AuthorDate: Wed Dec 27 23:16:41 2023 +0100

CXF-8968: OpenTelemetryClientFeature cannot be used as a CDI bean unless 
(#1615)

it has a no-args constructor
---
 .../cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java| 9 +
 1 file changed, 9 insertions(+)

diff --git 
a/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
 
b/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
index de34d485f8..2d3121d4d5 100644
--- 
a/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
+++ 
b/integration/tracing/tracing-opentelemetry/src/main/java/org/apache/cxf/tracing/opentelemetry/OpenTelemetryClientFeature.java
@@ -27,12 +27,17 @@ import org.apache.cxf.feature.AbstractPortableFeature;
 import org.apache.cxf.feature.DelegatingFeature;
 import org.apache.cxf.interceptor.InterceptorProvider;
 
+import io.opentelemetry.api.GlobalOpenTelemetry;
 import io.opentelemetry.api.OpenTelemetry;
 import io.opentelemetry.api.trace.Tracer;
 
 @NoJSR250Annotations
 @Provider(value = Type.Feature, scope = Scope.Client)
 public class OpenTelemetryClientFeature extends 
DelegatingFeature {
+public OpenTelemetryClientFeature() {
+super(new Portable());
+}
+
 public OpenTelemetryClientFeature(OpenTelemetry openTelemetry) {
 super(new Portable(openTelemetry));
 }
@@ -49,6 +54,10 @@ public class OpenTelemetryClientFeature extends 
DelegatingFeature

(cxf) branch dependabot/maven/org.testng-testng-7.9.0 deleted (was 7c44c98313)

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

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


 was 7c44c98313 Bump org.testng:testng from 7.8.0 to 7.9.0

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 (c94b9c5f37 -> 083af15653)

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

reta pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/cxf.git


from c94b9c5f37 Update Apache Groovy to 4.0.17
 add 083af15653 Bump org.testng:testng from 7.8.0 to 7.9.0 (#1614)

No new revisions were added by this update.

Summary of changes:
 systests/microprofile/pom.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)



(cxf-fediz) branch dependabot/maven/org.apache.logging.log4j-log4j-slf4j-impl-2.22.0 deleted (was 56c3e948)

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

github-bot pushed a change to branch 
dependabot/maven/org.apache.logging.log4j-log4j-slf4j-impl-2.22.0
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git


 was 56c3e948 Bump org.apache.logging.log4j:log4j-slf4j-impl from 2.21.0 to 
2.22.0

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-fediz) branch dependabot/maven/org.apache.logging.log4j-log4j-slf4j-impl-2.22.1 created (now eb363617)

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

github-bot pushed a change to branch 
dependabot/maven/org.apache.logging.log4j-log4j-slf4j-impl-2.22.1
in repository https://gitbox.apache.org/repos/asf/cxf-fediz.git


  at eb363617 Bump org.apache.logging.log4j:log4j-slf4j-impl from 2.21.0 to 
2.22.1

No new revisions were added by this update.