This is an automated email from the ASF dual-hosted git repository.
Croway pushed a change to branch camel-4.22.x
in repository https://gitbox.apache.org/repos/asf/camel.git
from ef0e16b04d16 [4.22.x] Bump io.projectreactor:reactor-core from 3.8.6
to 3.8.7 (#25920)
new ea02d417a1b8 CAMEL-24456: camel-http - key the OAuth2 token cache on
every field that shapes the token (#25834)
new d2c07bbb07d4 CAMEL-24450: camel-jetty - do not grant CORS credentials
to an origin the operator did not name (#25829)
new 245038ce4ea7 CAMEL-24452: camel-http - do not send credentials to an
authority the endpoint was not configured with (#25830)
new b0399b181d26 CAMEL-24436: camel-platform-http-vertx - only allow CORS
credentials for a configured origin (#25820)
The 4 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:
.../DefaultAuthenticationHttpClientConfigurer.java | 12 +-
.../apache/camel/component/http/HttpComponent.java | 66 +++++++--
.../component/http/HttpCredentialsHelper.java | 10 +-
.../component/http/OAuth2ClientConfigurer.java | 67 ++++++++-
.../http/HttpClientConfigurerOverrideTest.java | 38 ++---
.../http/HttpOAuth2RedirectTokenLeakTest.java | 155 +++++++++++++++++++++
.../component/http/HttpOAuth2TokenCachingTest.java | 46 ++++++
.../camel/component/jetty/JettyHttpComponent.java | 34 +++++
.../camel/component/jetty/EnableCORSTest.java | 42 +++++-
.../http/vertx/VertxPlatformHttpServerSupport.java | 15 +-
.../http/vertx/VertxPlatformHttpEngineTest.java | 78 +++++++++++
11 files changed, 527 insertions(+), 36 deletions(-)
copy
tests/camel-itest/src/test/java/org/apache/camel/itest/doc/DirectComponentConfigurationAndDocumentationTest.java
=>
components/camel-http/src/test/java/org/apache/camel/component/http/HttpClientConfigurerOverrideTest.java
(50%)
create mode 100644
components/camel-http/src/test/java/org/apache/camel/component/http/HttpOAuth2RedirectTokenLeakTest.java