Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
**/target
target

/.idea/
**/.idea/
*.iml
.project
.settings
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## [8.1.2](https://github.com/Backbase/stream-services/compare/7.8.0...8.0.0)
## [8.1.3](https://github.com/Backbase/stream-services/compare/8.1.2...8.1.3)
### Changed
- Added dependency validation to stream-compositions services pom.xml to fix product validation issues for arrangements with additional properties.
- Upgraded SSDK to 19.1.1 in stream-compositions services pom.xml to align with the rest of stream-services modules.

## [8.1.2](https://github.com/Backbase/stream-services/compare/8.0.0...8.1.2)
### Changed
- Update Transaction API to version 3 and adjust related models

Expand Down
5 changes: 4 additions & 1 deletion stream-compositions/services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>service-sdk-starter-mapping</artifactId>
</dependency>

<dependency>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>validation</artifactId>
</dependency>
<!-- Test dependencies -->
<dependency>
<groupId>com.backbase.stream.compositions</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ void initializeIntegrationServer() throws IOException {
response()
.withStatusCode(200)
.withContentType(MediaType.APPLICATION_JSON)
.withBody(readContentFromClasspath("integration-data/arrangement-response.json"))
.withBody(readContentFromClasspath("integration-data/arrangement-response-additions.json"))
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,17 @@ backbase:
enableFailed: true
cursor:
enabled: false

api:
extensions:
classes:
com.backbase.dbs.arrangement.api.service.v3.model.ArrangementPutItem: additional-acc-data
property-sets:
additional-acc-data:
properties:
- property-name: templateType
type: string
- property-name: overdraftProtection
type: boolean
logging:
level:
com.backbase.stream.compositions: DEBUG
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"arrangement": {
"externalArrangementId": "externalArrangementId",
"name": "Arrangement name",
"currency": "USD",
"additions":
{
"templateType": "checking",
"overdraftProtection": true
}
}
}
10 changes: 5 additions & 5 deletions stream-sdk/stream-starter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
<dependency>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>backbase-building-blocks-release</artifactId>
<version>19.0.0</version>
<version>19.1.1</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -362,12 +362,12 @@
<dependency>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>jib-dependencies-extension</artifactId>
<version>19.0.0</version>
<version>19.1.1</version>
</dependency>
<dependency>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>jib-entrypoint-extension</artifactId>
<version>19.0.0</version>
<version>19.1.1</version>
</dependency>
</dependencies>
</plugin>
Expand Down Expand Up @@ -415,7 +415,7 @@
<plugin>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>service-sdk-build-utils-maven-plugin</artifactId>
<version>19.0.0</version>
<version>19.1.1</version>
<executions>
<execution>
<id>find-main-package-for-archunit-maven</id>
Expand Down Expand Up @@ -516,7 +516,7 @@
<dependency>
<groupId>com.backbase.buildingblocks</groupId>
<artifactId>service-sdk-archunit</artifactId>
<version>19.0.0</version>
<version>19.1.1</version>
</dependency>
</dependencies>
<executions>
Expand Down
Loading