You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gi...@apache.org on 2022/03/01 16:02:33 UTC

[camel] branch regen_bot updated (472e033 -> 729dda8)

This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch regen_bot
in repository https://gitbox.apache.org/repos/asf/camel.git.


    omit 472e033  Regen for commit 5ab1e7783431ceebab3b7f143650a51837745d55
     add 42cacc3  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add dd5fa6f  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add acd6847  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 5609422  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 91edb90  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 8ad3655  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add c7561fc  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 710637f  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add c984b42  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 0e3e81d  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 0f7a04e  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add a0c2349  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 26b6057  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add 372662e  CAMEL-17684 - Support ability to load properties from Vault/Secrets cloud services - GCP Secrets Manager
     add daad5b7  CAMEL-17704: camel-netty-starter - Unable to set camel.component.netty.decoders
     add 729dda8  Regen for commit daad5b767dfd9e8224088006ec6f2555e8240381

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (472e033)
            \
             N -- N -- N   refs/heads/regen_bot (729dda8)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .../camel/catalog/components/netty-http.json       |   8 +-
 .../org/apache/camel/catalog/components/netty.json |   8 +-
 .../main/camel-main-configuration-metadata.json    |   5 +-
 .../camel-google-secret-manager/pom.xml            |   4 +
 .../org/apache/camel/properties-function/gcp       |   2 +
 .../GoogleSecretManagerPropertiesFunction.java     | 192 ++++++++++++++++++++
 ...leSecretManagerPropertiesNoEnvSourceTestIT.java | 198 +++++++++++++++++++++
 .../GoogleSecretManagerPropertiesSourceTestIT.java | 190 ++++++++++++++++++++
 .../http/NettyHttpConfigurationConfigurer.java     |  28 ++-
 .../camel/component/netty/http/netty-http.json     |   8 +-
 .../netty/http/HttpClientInitializerFactory.java   |   4 +-
 .../netty/http/HttpServerInitializerFactory.java   |   4 +-
 .../netty/http/NettyHttpConfiguration.java         |   8 +-
 components/camel-netty/pom.xml                     |   5 +
 .../component/netty/NettyComponentConfigurer.java  |  10 +-
 .../netty/NettyConfigurationConfigurer.java        |  28 ++-
 .../component/netty/NettyEndpointConfigurer.java   |  10 +-
 .../org/apache/camel/component/netty/netty.json    |   8 +-
 .../netty/DefaultClientInitializerFactory.java     |   4 +-
 .../netty/DefaultServerInitializerFactory.java     |   4 +-
 .../camel/component/netty/NettyConfiguration.java  |  97 +++++++---
 .../component/netty/MainNettyCustomCodecTest.java  |  60 +++++++
 ...nfiguration.java => GcpVaultConfiguration.java} |  36 ++--
 .../org/apache/camel/vault/VaultConfiguration.java |  19 ++
 .../AwsVaultConfigurationPropertiesConfigurer.java |   6 +
 ...GcpVaultConfigurationPropertiesConfigurer.java} |  50 +++---
 .../camel-main-configuration-metadata.json         |   5 +-
 ...ache.camel.main.GcpVaultConfigurationProperties |   2 +
 core/camel-main/src/main/docs/main.adoc            |  10 ++
 .../org/apache/camel/main/BaseMainSupport.java     |   4 +
 .../camel/main/DefaultConfigurationConfigurer.java |   7 +
 ...s.java => GcpVaultConfigurationProperties.java} |  35 ++--
 .../camel/main/VaultConfigurationProperties.java   |  11 ++
 .../java/org/apache/camel/main/MainVaultTest.java  |  48 ++++-
 .../dsl/NettyComponentBuilderFactory.java          |  16 +-
 .../dsl/NettyHttpComponentBuilderFactory.java      |  16 +-
 .../endpoint/dsl/NettyEndpointBuilderFactory.java  | 132 +-------------
 .../dsl/NettyHttpEndpointBuilderFactory.java       | 132 +-------------
 .../maven/packaging/PrepareCamelMainMojo.java      |  21 ++-
 39 files changed, 1016 insertions(+), 419 deletions(-)
 create mode 100644 components/camel-google/camel-google-secret-manager/src/generated/resources/META-INF/services/org/apache/camel/properties-function/gcp
 create mode 100644 components/camel-google/camel-google-secret-manager/src/main/java/org/apache/camel/component/google/secret/manager/GoogleSecretManagerPropertiesFunction.java
 create mode 100644 components/camel-google/camel-google-secret-manager/src/test/java/org/apache/camel/component/google/secret/manager/integration/GoogleSecretManagerPropertiesNoEnvSourceTestIT.java
 create mode 100644 components/camel-google/camel-google-secret-manager/src/test/java/org/apache/camel/component/google/secret/manager/integration/GoogleSecretManagerPropertiesSourceTestIT.java
 create mode 100644 components/camel-netty/src/test/java/org/apache/camel/component/netty/MainNettyCustomCodecTest.java
 copy core/camel-api/src/main/java/org/apache/camel/vault/{VaultConfiguration.java => GcpVaultConfiguration.java} (56%)
 copy core/camel-main/src/generated/java/org/apache/camel/main/{AwsVaultConfigurationPropertiesConfigurer.java => GcpVaultConfigurationPropertiesConfigurer.java} (52%)
 create mode 100644 core/camel-main/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.main.GcpVaultConfigurationProperties
 copy core/camel-main/src/main/java/org/apache/camel/main/{VaultConfigurationProperties.java => GcpVaultConfigurationProperties.java} (64%)