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/24 18:41:10 UTC

[camel] branch regen_bot updated (022db35 -> 36daf1c)

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.


    from 022db35  CAMEL-17839: camel-health - Allow to configure initial state of health-checks (readiness). This mostly affect scheduled consumers which can be in either DOWN or UNKNOWN state before doing their first poll. By default we are careful and report as DOWN as we are not ready. But this allows users to not care and set it as UP or UNKNOWN.
     add 959eacd  CAMEL-17818: camel-salesforce: stream query results
     add 7aac023  Upgrade to activemq 5.17.0
     add f7f5573  Polished
     add cbdc15d  Upgrade to activemq 5.17.0
     add 36daf1c  Regen for commit cbdc15d9e3672543b0561f14a6329aa27452cfd2

No new revisions were added by this update.

Summary of changes:
 camel-dependencies/pom.xml                         |   2 +-
 .../camel/catalog/components/salesforce.json       |   2 +
 components/camel-cxf/pom.xml                       |   7 ++
 .../apache/camel/component/http/HttpComponent.java |   3 +-
 .../salesforce/SalesforceComponentConfigurer.java  |   6 ++
 .../salesforce/SalesforceEndpointConfigurer.java   |   6 ++
 .../salesforce/SalesforceEndpointUriFactory.java   |   3 +-
 .../camel/component/salesforce/salesforce.json     |   2 +
 .../src/main/docs/salesforce-component.adoc        |   6 +-
 .../salesforce/SalesforceEndpointConfig.java       |  16 +++
 .../api/dto/AbstractQueryRecordsBase.java          |  33 ++----
 .../dto/analytics/reports/QueryRecordsReport.java  |  14 +--
 .../internal/dto/QueryRecordsPushTopic.java        |  13 +--
 .../internal/processor/AbstractRestProcessor.java  |  28 +++++-
 .../internal/processor/JsonRestProcessor.java      |  52 +++++++++-
 .../internal/processor/QueryResultIterator.java    |  95 ++++++++++++++++++
 .../CompositeApiBatchIntegrationTest.java          |  12 +--
 .../salesforce/CompositeApiIntegrationTest.java    |  12 +--
 .../salesforce/RecentIntegrationTest.java          |  12 +--
 .../salesforce/RestApiIntegrationTest.java         |  77 ++++++++++++--
 .../dto/generated/QueryRecordsAccount.java         |  13 +--
 .../dto/generated/QueryRecordsContact.java         |  13 +--
 .../dto/generated/QueryRecordsLine_Item__c.java    |  13 +--
 .../AbstractRestProcessorApprovalTest.java         |   7 ++
 .../resources/sobject-query-records-optional.vm    |  12 +--
 .../src/main/resources/sobject-query-records.vm    |  12 +--
 .../test/resources/generated/QueryRecordsCase.java |  12 +--
 .../QueryRecordsComplexCalculatedFormula.java      |  12 +--
 .../dsl/SalesforceComponentBuilderFactory.java     |  19 ++++
 .../dsl/SalesforceEndpointBuilderFactory.java      | 111 +++++++++++++++++++++
 parent/pom.xml                                     |   2 +-
 31 files changed, 446 insertions(+), 181 deletions(-)
 create mode 100644 components/camel-salesforce/camel-salesforce-component/src/main/java/org/apache/camel/component/salesforce/internal/processor/QueryResultIterator.java