Skip to content
This repository was archived by the owner on Jan 21, 2022. It is now read-only.

1.8.0 Release Notes

Choose a tag to compare

@HoloRin HoloRin released this 31 Jul 07:55
· 226 commits to master since this release

Account Creation

A user can now sign up on the login server. This will create a user in the uaadb, with a "uaa" origin. This flow can be enabled or disabled through the login.signupsEnabled option in login.yml. It is enabled by default. A client may have a signup_redirect_url configured via the uaa.yml or uaac. This allows that client to direct a user to the signup page with their client id as a parameter (i.e. /accounts/new?client_id=app), and the user will be redirected to that url when they complete the account activation flow.

Gradle

Login Server now builds with gradle. This simplifies the build process, as one can now build from scratch, and run the login-server, uaa, app, and api apps with a simple

./gradlew run

Unit tests can be run with ./gradlew :test, and integration tests with ./gradlew :integrationTest

War and Jar files can be built with ./gradlew :assemble

Forgot Password Functionality

The forgot password page now assumes that usernames are emails. Password reset requests for usernames that are not emails will fail. This allows us to ensure that email address collisions on Scim users do not result in unexpected behavior.

Stories Completed
Features
User can create an account
cloudfoundry/uaa #83: remove unnecessary requirement for accept header
User is redirected upon verification