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
10 changes: 9 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Authentication Service MKII release notes

## 0.7.2
## 0.8.0

* BACKWARDS INCOMPATIBILITY: In flight login sessions when the server is upgraded will fail.
For a completely safe transition, stop the server, remove any temporary session data, and
bring the new server up.
* BACKWARDS INCOMPATIBILITY: Repeated or trailing underscores are
no longer allowed in usernames. Existing usernames are unaffected.
* The MultiFactor Authentication status is now available for tokens fetched from the service.
Currently only OrcID supports MFA statuses other than `Unknown`. Other statuses are `Used` and
`Not Used`.
* Fixed a bug where usernames with underscores would not be matched in username searches if an
underscore was an interior character of a search prefix.
* Fixed a bug where a MongoDB error would be thrown if a user search prefix resulted in no search
terms if it had no valid characters for the requested search, whether user name or display
name. Now a service error is thrown.
* The `/tokens` endpoint can now accept `Service` or `service` to specify that a service token
should be created.

## 0.7.1

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/us/kbase/auth2/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
public class Version {

/** The version of the KBase Auth2 service. */
public static final String VERSION = "0.7.2";
public static final String VERSION = "0.8.0";

}
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
public class ServiceCommonTest {

public static final String SERVICE_NAME = "Authentication Service";
public static final String SERVER_VER = "0.7.2";
public static final String SERVER_VER = "0.8.0";
public static final String GIT_ERR =
"Missing git commit file gitcommit, should be in us.kbase.auth2";

Expand Down
Loading