Skip to content

Commit addc4a6

Browse files
author
Bogdan Mocanu
committed
Update documentation to refer to the latest client versions, v1.5.1
1 parent 68ba278 commit addc4a6

4 files changed

Lines changed: 12 additions & 9 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mobile ID Java client (v1.5.0)
1+
# Mobile ID Java client (v1.5.1)
22

33
Swisscom Mobile ID is a cost-efficient, managed authentication service from Swisscom. The customer-facing API is
44
based on open standard ETSI 102 2041. The library from this repository is a reference implementation for

docs/build-download-or-link.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,15 +37,15 @@ For Maven projects, add the following in your _POM_ file:
3737
<dependency>
3838
<groupId>ch.mobileid.mid-java-client</groupId>
3939
<artifactId>mid-java-client-rest</artifactId>
40-
<version>1.5.0</version> <!-- or any later version - see README.md in the repository's root -->
40+
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
4141
</dependency>
4242
</dependencies>
4343
<!-- Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense -->
4444
<dependencies>
4545
<dependency>
4646
<groupId>ch.mobileid.mid-java-client</groupId>
4747
<artifactId>mid-java-client-soap</artifactId>
48-
<version>1.5.0</version> <!-- or any later version - see README.md in the repository's root -->
48+
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
4949
</dependency>
5050
</dependencies>
5151
</project>
@@ -60,9 +60,9 @@ plugins {
6060
// ...
6161
6262
dependencies {
63-
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.5.0' // or any later version - see README.md in the repository's root
63+
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.5.1' // or any later version - see README.md in the repository's root
6464
// Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense
65-
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.5.0' // or any later version - see README.md in the repository's root
65+
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.5.1' // or any later version - see README.md in the repository's root
6666
// ...
6767
}
6868
```

docs/use-the-client-programmatically.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ For Maven projects, add the following in your _POM_ file:
1515
<dependency>
1616
<groupId>ch.mobileid.mid-java-client</groupId>
1717
<artifactId>mid-java-client-rest</artifactId>
18-
<version>1.5.0</version> <!-- or any later version - see README.md in the repository's root -->
18+
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
1919
</dependency>
2020
</dependencies>
2121
<!-- Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense -->
2222
<dependencies>
2323
<dependency>
2424
<groupId>ch.mobileid.mid-java-client</groupId>
2525
<artifactId>mid-java-client-soap</artifactId>
26-
<version>1.5.0</version> <!-- or any later version - see README.md in the repository's root -->
26+
<version>1.5.1</version> <!-- or any later version - see README.md in the repository's root -->
2727
</dependency>
2828
</dependencies>
2929
</project>
@@ -38,9 +38,9 @@ plugins {
3838
// ...
3939
4040
dependencies {
41-
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.5.0' // or any later version - see README.md in the repository's root
41+
compile 'ch.mobileid.mid-java-client:mid-java-client-rest:1.5.1' // or any later version - see README.md in the repository's root
4242
// Alternatively, you can also reference the SOAP implementation of the client; adding both of them does not make much sense
43-
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.5.0' // or any later version - see README.md in the repository's root
43+
compile 'ch.mobileid.mid-java-client:mid-java-client-soap:1.5.1' // or any later version - see README.md in the repository's root
4444
// ...
4545
}
4646
```

docs/version-history.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Version history
22

3+
# v1.5.1
4+
Update the jackson-databind and woodstox-core libraries to newer versions to overcome the vulnerabilities reported by Sonatype Lift.
5+
36
# v1.5.0
47
Add support for signature validation, after a mobile signature is successfully created. Add a new component that can be configured separately
58
for validating the signing certificate, the certificate path, the actual signature and the DTBD/DTBS that was signed.

0 commit comments

Comments
 (0)