Skip to content

Commit

Permalink
build: Upgrade auth-service version to 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mihirpaldhikar committed Jun 4, 2024
1 parent 532e0de commit 5ecad93
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions AUTH_SERVICE_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,23 @@
## 2.0.0 (June 4, 2024)

### New:

- Add support for passkeys.
- Passkeys are default Authentication Strategy while authenticating.
- Implement Role Based Access Control (RBAC) to authorize user based on the Account Type.
- Add restrictions to account such as not issuing security tokens or register passkeys for authentication if the account is suspended.
- Add routes to get most secure authentication strategy for an account during authentication.
- Add ability to restrict the creation of new Account if the account requesting do not have authority to create new accounts.

### Fix:

- Fix an issue in which the unauthenticated and unauthorized account was able to register passkeys

### Miscellaneous:

- Rename accounts/signin route to accounts/authenticate
- Rename accounts/signup route to accounts/new for creating new accounts.

## 1.0.0 (May 22, 2024)

Initial Public Release.
2 changes: 1 addition & 1 deletion backend/services/auth-service/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ plugins {
}

group = "com.puconvocation"
version = "1.0.0"
version = "2.0.0"

application {
mainClass.set("com.puconvocation.ApplicationKt")
Expand Down

0 comments on commit 5ecad93

Please sign in to comment.