Skip to content

Commit 4851283

Browse files
author
semenykhin
committed
Merge branch 'release-13.4'
2 parents e5c7262 + d569376 commit 4851283

File tree

22 files changed

+530
-68
lines changed

22 files changed

+530
-68
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ Please use correct version of xs2a-connector-examples and Ledgers. Matches are d
1313

1414
| xs2a-connector-examples | Ledgers |
1515
|-------------------------|---------|
16+
| v.13.4 | v.4.17 |
1617
| v.13.3 | v.4.17 |
1718
| v.13.2 | v.4.16 |
1819
| v.13.1 | v.4.15 |
1920
| v.13.0 | v.4.14 |
21+
| v.12.4 | v.4.17 |
2022
| v.12.3 | v.4.17 |
2123
| v.12.2 | v.4.16 |
2224
| v.12.1 | v.4.15 |
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
= Release notes v.13.4
2+
3+
== Table of Contents
4+
5+
* Implemented writing transactions data into file asynchronous
6+
7+
* Technical password from property `xs2a.funds-confirmation-user-password` changed
8+
9+
== Implemented writing transactions data into file asynchronous
10+
11+
From now on, content of downloaded transaction file is no more mocked, but the real data got during Read Transaction List
12+
request. Transaction file writing is being performed in a separate thread to increase performance and reduce response time.
13+
New properties were added into `application.yml` :
14+
15+
* `xs2a.download.files.dir` - path to directory, where files are being created for downloading
16+
* `xs2a.download.files.cleanup.delay_s` - time in seconds, specifies how long download link will be valid after the first retrieval request.
17+
When specified time passes, file and its parent directory will be deleted, all next requests by the same download
18+
link will cause response with code 404 `Not Found`
19+
20+
== Technical password from property `xs2a.funds-confirmation-user-password` changed
21+
22+
Property value `xs2a.funds-confirmation-user-password` changed from `12345` to `admin123` to handle properly
23+
ASPSP PIIS consents.

gateway-app-embedded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>xs2a-connector-examples</artifactId>
2323
<groupId>de.adorsys.ledgers</groupId>
24-
<version>13.3</version>
24+
<version>13.4</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

gateway-app-embedded/src/main/resources/application.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,14 @@ keycloak:
4747
secret: a61a81cd-7178-40d8-8386-ed02791e6592 #Here should be personal generated secret for client (swap public to 'private?' generate secret, swap to public again)
4848

4949
xs2a.funds-confirmation-user-login: admin
50-
xs2a.funds-confirmation-user-password: 12345
50+
xs2a.funds-confirmation-user-password: admin123
51+
52+
# FILE DOWNLOADING RELATED PROPERTIES
53+
#Filedir for the files which should be accessible by downloadLink, default value "/tmp/XS2A"
54+
xs2a.download.files.dir: /tmp/XS2A
55+
#Delay in seconds when already downloaded file and its parent dir will be deleted, default value 30
56+
xs2a.download.files.cleanup.delay_s: 30
57+
5158

5259
spring:
5360
application.name: ledgers-xs2a-gateway

gateway-app/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>de.adorsys.ledgers</groupId>
77
<artifactId>xs2a-connector-examples</artifactId>
8-
<version>13.3</version>
8+
<version>13.4</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>gateway-app</artifactId>

gateway-app/src/main/resources/application.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,13 @@ keycloak:
3737
xs2a.swagger.psd2.api.location: #/psd2-api-1.2-Update-2018-08-18-non-oauth.yaml
3838

3939
xs2a.funds-confirmation-user-login: admin
40-
xs2a.funds-confirmation-user-password: 12345
40+
xs2a.funds-confirmation-user-password: admin123
41+
42+
# FILE DOWNLOADING RELATED PROPERTIES
43+
#Filedir for the accessible by 'downloadLink' files, default value "/tmp/XS2A"
44+
xs2a.download.files.dir: /tmp/XS2A/
45+
#Delay in seconds when already downloaded file and its parent dir will be deleted, default value 30
46+
xs2a.download.files.cleanup.delay_s: 30
4147

4248
#TanEncryption
4349
application:

ledgers-rest-client/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<groupId>de.adorsys.ledgers</groupId>
77
<artifactId>xs2a-connector-examples</artifactId>
8-
<version>13.3</version>
8+
<version>13.4</version>
99
<relativePath>..</relativePath>
1010
</parent>
1111
<artifactId>ledgers-rest-client</artifactId>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<modelVersion>4.0.0</modelVersion>
2323
<groupId>de.adorsys.ledgers</groupId>
2424
<artifactId>xs2a-connector-examples</artifactId>
25-
<version>13.3</version>
25+
<version>13.4</version>
2626
<packaging>pom</packaging>
2727

2828
<name>XS2A Connector Examples</name>
@@ -86,7 +86,7 @@
8686
<ruleset.basedir>${project.basedir}</ruleset.basedir>
8787

8888
<!-- xs2a version -->
89-
<xs2a.version>13.3</xs2a.version>
89+
<xs2a.version>13.4</xs2a.version>
9090
<!-- ledgers version -->
9191
<ledgers.version>4.17</ledgers.version>
9292

xs2a-connector-embedded/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>xs2a-connector-examples</artifactId>
2323
<groupId>de.adorsys.ledgers</groupId>
24-
<version>13.3</version>
24+
<version>13.4</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

xs2a-connector-oauth-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<parent>
2222
<artifactId>xs2a-connector-examples</artifactId>
2323
<groupId>de.adorsys.ledgers</groupId>
24-
<version>13.3</version>
24+
<version>13.4</version>
2525
</parent>
2626
<modelVersion>4.0.0</modelVersion>
2727

0 commit comments

Comments
 (0)