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/04/01 13:27:51 UTC

[camel] branch regen_bot updated (46e9a35 -> 4bb822d)

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 46e9a35  Regen for commit 7a05062837d7638055274a90b17d5e52a478c873
     add 54b7d6c  CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault
     add 4d5fcd3  CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault
     add 7f2e58d  CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault
     add e7e9544  CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault
     add 75c82f3  CAMEL-17686 - Support ability to load properties from Vault/Secrets cloud services - Azure Key Vault
     add 4bb822d  Regen

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   (46e9a35)
            \
             N -- N -- N   refs/heads/regen_bot (4bb822d)

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:
 .../org/apache/camel/properties-function/azure     |   2 +
 .../key/vault/KeyVaultPropertiesFunction.java      | 193 +++++++++++++++++++++
 .../KeyVaultPropertiesSourceNoEnvTestIT.java       | 149 ++++++++++++++++
 .../operations/KeyVaultPropertiesSourceTestIT.java | 137 +++++++++++++++
 .../camel/vault/AzureVaultConfiguration.java       |  78 +++++++++
 .../org/apache/camel/vault/VaultConfiguration.java |  19 ++
 .../AwsVaultConfigurationPropertiesConfigurer.java |   6 +
 ...zureVaultConfigurationPropertiesConfigurer.java |  85 +++++++++
 .../GcpVaultConfigurationPropertiesConfigurer.java |   6 +
 ...he.camel.main.AzureVaultConfigurationProperties |   2 +
 ...java => AzureVaultConfigurationProperties.java} |  60 ++++---
 .../org/apache/camel/main/BaseMainSupport.java     |   3 +
 .../camel/main/VaultConfigurationProperties.java   |  12 ++
 .../java/org/apache/camel/main/MainVaultTest.java  |  49 ++++++
 14 files changed, 778 insertions(+), 23 deletions(-)
 create mode 100644 components/camel-azure/camel-azure-key-vault/src/generated/resources/META-INF/services/org/apache/camel/properties-function/azure
 create mode 100644 components/camel-azure/camel-azure-key-vault/src/main/java/org/apache/camel/component/azure/key/vault/KeyVaultPropertiesFunction.java
 create mode 100644 components/camel-azure/camel-azure-key-vault/src/test/java/org/apache/camel/component/azure/key/vault/integration/operations/KeyVaultPropertiesSourceNoEnvTestIT.java
 create mode 100644 components/camel-azure/camel-azure-key-vault/src/test/java/org/apache/camel/component/azure/key/vault/integration/operations/KeyVaultPropertiesSourceTestIT.java
 create mode 100644 core/camel-api/src/main/java/org/apache/camel/vault/AzureVaultConfiguration.java
 create mode 100644 core/camel-main/src/generated/java/org/apache/camel/main/AzureVaultConfigurationPropertiesConfigurer.java
 create mode 100644 core/camel-main/src/generated/resources/META-INF/services/org/apache/camel/configurer/org.apache.camel.main.AzureVaultConfigurationProperties
 copy core/camel-main/src/main/java/org/apache/camel/main/{VaultConfigurationProperties.java => AzureVaultConfigurationProperties.java} (54%)