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

gnodet pushed a change to branch 
implement-the-keyvaluerepository-implementations-f
in repository https://gitbox.apache.org/repos/asf/camel.git


 discard f385f666b3ba CAMEL-24463: Use shared KeyValueRepositoryHelper in all 
backends
 discard 985676902d4f CAMEL-24463: Restore Duration TTL and CAS methods in 
KeyValueRepository
 discard 41fcbe82d156 CAMEL-24463: Add tests for JPA, Cassandra, and Kafka 
KeyValueRepository
 discard 92cdaf112e62 CAMEL-24463: Add generated catalog entries for 
KeyValueRepository beans
 discard 6a1c23274a74 CAMEL-24463: Add KeyValueRepository implementations for 
JDBC, JPA, Cassandra, and Kafka
 discard 8ab5f6328731 CAMEL-24463: Restore Duration TTL and CAS methods in 
KeyValueRepository SPI
 discard 64ab4085a3ae CAMEL-24463: Improve KeyValueRepository SPI
     add 4024bf3d477d chore(deps): upgrade Apache Avro to 1.12.2
     add fb26c76c7388 CAMEL-24579: DataFormat.marshal graph parameter should be 
@Nullable
     add 1d5d3e983c3a CAMEL-24576: dynamic-router - gate control message 
predicate
     add e143e48790f1 CAMEL-24574: camel-google-bigquery - document ${name} as 
literal substitution and warn when it is not an identifier
     add e276b7f45071 camel-jbang-plugin-tui: fix Tab-completion and indent for 
expression languages in Source editor
     add 8229374b5917 chore: remove new-feature entry from 4.23 upgrade guide
     add 5c3f5bdea595 CAMEL-24582: simple language - add equals/!equals 
operators
     add c01f4c648e30 CAMEL-24463: Improve KeyValueRepository SPI
     add 0604ee598c7b CAMEL-24463: Restore Duration TTL and CAS methods in 
KeyValueRepository SPI
     add 21cd161f68b4 CAMEL-24463: Add KeyValueRepository implementations for 
JDBC, JPA, Cassandra, and Kafka
     add 008a4cc36d5e CAMEL-24463: Add generated catalog entries for 
KeyValueRepository beans
     add 918bde5efba2 CAMEL-24463: Add tests for JPA, Cassandra, and Kafka 
KeyValueRepository
     add da7955f04ac8 CAMEL-24463: Restore Duration TTL and CAS methods in 
KeyValueRepository
     add 6163d8c47684 CAMEL-24463: Use shared KeyValueRepositoryHelper in all 
backends

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   (f385f666b3ba)
            \
             N -- N -- N   
refs/heads/implement-the-keyvaluerepository-implementations-f (6163d8c47684)

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:
 .../catalog/components/dynamic-router-control.json |   3 +-
 .../camel/catalog/components/dynamic-router.json   |   3 +-
 .../catalog/docs/dynamic-router-component.adoc     |  19 +-
 .../docs/dynamic-router-control-component.adoc     |  31 ++
 .../docs/google-bigquery-sql-component.adoc        |  57 +++-
 .../camel/catalog/docs/simple-operators.adoc       |  14 +
 .../org/apache/camel/catalog/languages/simple.json |  18 +-
 .../camel/catalog/simple/camel-simple-validator.js |   2 +
 .../camel-avro-rpc-component/pom.xml               |   5 +
 components/camel-avro/pom.xml                      |   2 +
 .../DynamicRouterControlEndpointConfigurer.java    |   6 +
 .../DynamicRouterControlEndpointUriFactory.java    |   3 +-
 .../routing/DynamicRouterEndpointConfigurer.java   |   6 +
 .../routing/DynamicRouterEndpointUriFactory.java   |   3 +-
 .../control/dynamic-router-control.json            |   3 +-
 .../dynamicrouter/routing/dynamic-router.json      |   3 +-
 .../src/main/docs/dynamic-router-component.adoc    |  19 +-
 .../docs/dynamic-router-control-component.adoc     |  31 ++
 ...ynamicRouterControlChannelSendDynamicAware.java |   9 +
 .../control/DynamicRouterControlConfiguration.java |  33 +++
 .../control/DynamicRouterControlConstants.java     |  16 ++
 .../control/DynamicRouterControlProducer.java      |  70 +++--
 .../routing/DynamicRouterConfiguration.java        |  28 ++
 .../routing/DynamicRouterRecipientListHelper.java  |   1 +
 ...icRouterControlChannelSendDynamicAwareTest.java |  11 +
 .../control/DynamicRouterControlProducerTest.java  | 126 ++++++++
 .../DynamicRouterBasicSynchronousIT.java           |   8 +-
 .../DynamicRouterDefaultAggregationIT.java         |   2 +-
 .../DynamicRouterSendDynamicAwareIT.java           |   3 +-
 .../DynamicRouterRecipientListHelperTest.java      |   2 +
 .../main/docs/google-bigquery-sql-component.adoc   |  57 +++-
 .../component/google/bigquery/sql/SqlHelper.java   |  37 +++
 .../bigquery/sql/SqlHelperIdentifierTest.java}     |  33 +--
 .../google/bigquery/unit/sql/SqlHelperTest.java    |  11 +
 .../main/java/org/apache/camel/spi/DataFormat.java |   7 +-
 .../org/apache/camel/language/simple/simple.json   |  18 +-
 .../modules/languages/pages/simple-operators.adoc  |  14 +
 .../language/simple/SimpleOperatorConstants.java   |  12 +
 .../camel/language/simple/SimpleTokenizer.java     |  24 +-
 .../language/simple/ast/BinaryExpression.java      |   5 +
 .../language/simple/types/BinaryOperatorType.java  |  14 +-
 .../camel/language/simple/SimpleOperatorTest.java  |  39 +++
 .../org/apache/camel/support/LanguageHelper.java   |  25 ++
 .../camel/support/MemoryKeyValueRepository.java    |  28 ++
 .../camel/support/builder/PredicateBuilder.java    |  13 +
 .../support/MemoryKeyValueRepositoryTest.java      |  67 +++++
 .../java/org/apache/camel/util/SecurityUtils.java  |   1 +
 .../ROOT/pages/camel-4x-upgrade-guide-4_23.adoc    |  68 ++++-
 ...DynamicRouterControlEndpointBuilderFactory.java |  42 +++
 .../dsl/DynamicRouterEndpointBuilderFactory.java   |  17 ++
 .../dsl/jbang/core/commands/tui/SourceViewer.java  | 199 +++++++++----
 .../core/commands/tui/YamlCompletionTest.java      | 319 +++++++++++++++++++++
 parent/pom.xml                                     |   6 +-
 53 files changed, 1438 insertions(+), 155 deletions(-)
 copy 
components/{camel-platform-http-main/src/test/java/org/apache/camel/component/platform/http/main/MainHttpServerStaticTest.java
 => 
camel-google/camel-google-bigquery/src/test/java/org/apache/camel/component/google/bigquery/sql/SqlHelperIdentifierTest.java}
 (50%)

Reply via email to