Skip to content

Commit

Permalink
Fix migration instructions (#1836)
Browse files Browse the repository at this point in the history
  • Loading branch information
romanstrobl authored Jan 21, 2025
1 parent ab8d33f commit 6fd80c2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion docs/Migration-Instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ When updating across multiple versions, you need to perform all migration steps
<!-- end -->

- [PowerAuth Server 2.0.0](./PowerAuth-Server-2.0.0.md)
- [PowerAuth Server 1.10.0](./PowerAuth-Server-1.10.0.md)
- [PowerAuth Server 1.9.0](./PowerAuth-Server-1.9.0.md)
- [PowerAuth Server 1.8.0](./PowerAuth-Server-1.8.0.md)
- [PowerAuth Server 1.7.0](./PowerAuth-Server-1.7.0.md)
Expand Down
7 changes: 0 additions & 7 deletions docs/PowerAuth-Server-1.10.0.md

This file was deleted.

8 changes: 7 additions & 1 deletion docs/PowerAuth-Server-2.0.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,10 @@

### Updated Package Names

Package names in Java code have been updated from historical `io.getlime` to `com.wultra`. Please update package imports in your source code which uses any `io.getlime` packages from PowerAuth server.
Package names in Java code have been updated from historical `io.getlime` to `com.wultra`. Please update package imports in your source code which uses any `io.getlime` packages from PowerAuth server.

### Updated Validations in REST API

We have unified validations in PowerAuth server REST API. The error code returned for failed request validations is always `ERR0024`. As a side effect, the error code `ERR0002` used for case when no application ID was set in request is no longer returned.

The validation of requests is now stricter and more complete to ensure data integrity. In case you get the `ERR0024` error in your integration with PowerAuth server, please make sure the requests contain all parameters, as seen in REST API documentation available at `http[s]://[hostname]:[port]/powerauth-java-server/swagger-ui/index.html`.

0 comments on commit 6fd80c2

Please sign in to comment.