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/10/28 01:11:18 UTC

[camel-spring-boot] branch automatic-periodic-sync updated (29142e78cfa -> 23b7a76d120)

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

github-bot pushed a change to branch automatic-periodic-sync
in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git


    omit 29142e78cfa [create-pull-request] automated change
     add d0e01bdcc7d [create-pull-request] automated change (#655)
     add 9ceabf6aa99 CAMEL-14832: Data format for SWIFT financial message conversion support (#656)
     add 23b7a76d120 [create-pull-request] automated change

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   (29142e78cfa)
            \
             N -- N -- N   refs/heads/automatic-periodic-sync (23b7a76d120)

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/springboot/catalog/components/git.json   |   1 +
 .../springboot/catalog/dataformats.properties      |   2 +
 .../springboot/catalog/dataformats/swiftMt.json    |  22 +++
 .../springboot/catalog/dataformats/swiftMx.json    |  25 +++
 .../catalog/dataformats/univocityCsv.json          |   2 +-
 .../catalog/dataformats/univocityFixed.json        |   2 +-
 .../catalog/dataformats/univocityTsv.json          |   2 +-
 .../pom.xml                                        |  27 ++--
 .../camel-swift-starter/src/main/docs/swift.json   |  83 ++++++++++
 .../SwiftMtDataFormatAutoConfiguration.java}       |  20 +--
 .../SwiftMtDataFormatConfiguration.java}           |  23 ++-
 .../SwiftMxDataFormatAutoConfiguration.java}       |  20 +--
 .../springboot/SwiftMxDataFormatConfiguration.java |  90 +++++++++++
 .../src/main/resources/META-INF/LICENSE.txt        |   0
 .../src/main/resources/META-INF/NOTICE.txt         |   0
 .../src/main/resources/META-INF/spring.factories   |   4 +-
 .../src/main/resources/META-INF/spring.provides    |   2 +-
 .../dataformat/swift/mt/SwiftMtDataFormatTest.java | 109 +++++++++++++
 .../dataformat/swift/mx/SwiftMxDataFormatTest.java | 167 ++++++++++++++++++++
 .../src/test/resources/mt/message1.txt             |  55 +++++++
 .../src/test/resources/mt/message2.json            | 118 ++++++++++++++
 .../src/test/resources/mt/message2.txt             |  20 +++
 .../src/test/resources/mx/message1.xml}            |  20 ++-
 .../src/test/resources/mx/message2.json            | 169 +++++++++++++++++++++
 .../src/test/resources/mx/message2.xml             | 129 ++++++++++++++++
 .../src/test/resources/mx/message3.xml             |  43 ++++++
 .../resources/routes/SwiftMtDataFormatTest.xml}    |  33 ++--
 .../resources/routes/SwiftMxDataFormatTest.xml     |  52 +++++++
 .../src/main/docs/univocity-parsers.json           |   6 +-
 .../UniVocityCsvDataFormatConfiguration.java       |   4 +-
 .../UniVocityFixedDataFormatConfiguration.java     |   4 +-
 .../UniVocityTsvDataFormatConfiguration.java       |   4 +-
 components-starter/pom.xml                         |   1 +
 tooling/camel-spring-boot-bom/pom.xml              |   5 +
 tooling/camel-spring-boot-dependencies/pom.xml     |   5 +
 35 files changed, 1196 insertions(+), 73 deletions(-)
 create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/swiftMt.json
 create mode 100644 catalog/camel-catalog-provider-springboot/src/main/resources/org/apache/camel/springboot/catalog/dataformats/swiftMx.json
 copy components-starter/{camel-webhook-starter => camel-swift-starter}/pom.xml (78%)
 create mode 100644 components-starter/camel-swift-starter/src/main/docs/swift.json
 copy components-starter/{camel-fhir-starter/src/main/java/org/apache/camel/component/fhir/springboot/FhirXmlDataFormatAutoConfiguration.java => camel-swift-starter/src/main/java/org/apache/camel/dataformat/swift/mt/springboot/SwiftMtDataFormatAutoConfiguration.java} (85%)
 copy components-starter/{camel-hl7-starter/src/main/java/org/apache/camel/component/hl7/springboot/HL7DataFormatConfiguration.java => camel-swift-starter/src/main/java/org/apache/camel/dataformat/swift/mt/springboot/SwiftMtDataFormatConfiguration.java} (70%)
 copy components-starter/{camel-fhir-starter/src/main/java/org/apache/camel/component/fhir/springboot/FhirXmlDataFormatAutoConfiguration.java => camel-swift-starter/src/main/java/org/apache/camel/dataformat/swift/mx/springboot/SwiftMxDataFormatAutoConfiguration.java} (85%)
 create mode 100644 components-starter/camel-swift-starter/src/main/java/org/apache/camel/dataformat/swift/mx/springboot/SwiftMxDataFormatConfiguration.java
 copy {archetypes/camel-archetype-spring-boot => components-starter/camel-swift-starter}/src/main/resources/META-INF/LICENSE.txt (100%)
 copy {archetypes/camel-archetype-spring-boot => components-starter/camel-swift-starter}/src/main/resources/META-INF/NOTICE.txt (100%)
 copy components-starter/{camel-fastjson-starter => camel-swift-starter}/src/main/resources/META-INF/spring.factories (87%)
 copy components-starter/{camel-as2-starter => camel-swift-starter}/src/main/resources/META-INF/spring.provides (97%)
 create mode 100644 components-starter/camel-swift-starter/src/test/java/org/apache/camel/dataformat/swift/mt/SwiftMtDataFormatTest.java
 create mode 100644 components-starter/camel-swift-starter/src/test/java/org/apache/camel/dataformat/swift/mx/SwiftMxDataFormatTest.java
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/mt/message1.txt
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/mt/message2.json
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/mt/message2.txt
 copy components-starter/{camel-ftp-starter/src/test/data/bar.xml => camel-swift-starter/src/test/resources/mx/message1.xml} (61%)
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/mx/message2.json
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/mx/message2.xml
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/mx/message3.xml
 copy components-starter/{camel-infinispan-starter/src/test/resources/org/apache/camel/component/infinispan/spring/SpringInfinispanRemoteIdempotentRepositorySpringTest.xml => camel-swift-starter/src/test/resources/routes/SwiftMtDataFormatTest.xml} (64%)
 create mode 100644 components-starter/camel-swift-starter/src/test/resources/routes/SwiftMxDataFormatTest.xml