Skip to content

Commit

Permalink
1.29.0
Browse files Browse the repository at this point in the history
• Domain setting and 'Default' domain value sent to OpenOTP has been removed. It must be now configured by WebADM Client Policy
  • Loading branch information
ericjamesbye7 committed May 8, 2024
1 parent 2872cb2 commit 2df4eab
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 11 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ Y: Nextcloud version
Z: minor or patch

-----------------------------------------
1.29.0
Domain setting and 'Default' domain value sent to OpenOTP has been removed. It must be now configured by WebADM Client Policy

1.28.1
Domain setting and 'Default' domain value sent to OpenOTP has been removed. It must be now configured by WebADM Client Policy

1.28.0
Change: Complete rebuild of the application and change of versioning
Change: Voice authentication via web browser removed
Expand Down Expand Up @@ -74,25 +80,25 @@ Z: minor or patch
FIDO2 now supported, All FIDO protocols fully supported:
U2F: OpenOTP operated with CTAP1 only
FIDO2: OpenOTP operates with CTAP2 only (WebAuthn)
Activate Multilingual
Activate Multilingual
Add type to IProvider implemented classes

1.0.3
Update register settings scripts
Update deprecated classes

1.0.2
app:check-code integrity
Create new Administration menu entry in left side
app:check-code integrity
Create new Administration menu entry in left side
Personal settings are now situated in Security Section

1.0.1
Add compatibility to NextCloud v12/13
Add compatibility to NextCloud v12/13
OC_User::getLogoutAttribute() is now deprecated
Fixed ajax-loader img not showing while pressing Test button
custom_csp in config deprecated - nonce used instead + addDefaultPolicy
add Annotation @UseSession to store session
add EventListener on DOMContentLoaded in template challenge
add EventListener on DOMContentLoaded in template challenge
implement contextual authentication

1.0.0
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ It is enterprise-ready with strong support for:
* easy installation, update and configuration in RCDevs WebADM
* ... and much more.
</description>
<version>1.28.0</version>
<version>1.29.0</version>
<licence>agpl</licence>
<author>RCDevs</author>
<namespace>OpenOTPAuth</namespace>
Expand All @@ -39,7 +39,7 @@ It is enterprise-ready with strong support for:

<dependencies>
<php min-version="8.0" max-version="8.3"/>
<nextcloud min-version="28" max-version="28" />
<nextcloud min-version="29" max-version="29" />
</dependencies>

<two-factor-providers>
Expand Down
2 changes: 1 addition & 1 deletion lib/AuthService/OpenotpAuth.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function getDomain($username)
$ret['username'] = substr($username, $pos + 1);
} else {
// $ret = $this->default_domain;
$ret = 'Default';
$ret = '';
}
return $ret;
}
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "openotp_auth",
"version": "1.28.0",
"version": "1.29.0",
"description": "WebAuthn second factor provider for Nextcloud",
"private": true,
"dependencies": {
Expand Down

0 comments on commit 2df4eab

Please sign in to comment.