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
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
strategy:
matrix:
php-version: ['8.1', '8.2', '8.3', '8.4']
nextcloud-version: ['master', 'stable32', 'stable31', 'stable30']
nextcloud-version: ['stable32', 'stable31', 'stable30']
exclude:
- php-version: '8.4'
nextcloud-version: 'stable30'
Expand Down Expand Up @@ -59,11 +59,11 @@ jobs:
strategy:
matrix:
php-version: [ '8.4' ]
nextcloud-version: [ 'master' ]
nextcloud-version: [ 'stable32' ]
db: [ 'sqlite' ]
include:
- php-version: '8.1'
nextcloud-version: master
nextcloud-version: stable32
db: 'oci'
- php-version: '8.1'
nextcloud-version: stable32
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
strategy:
matrix:
php-version: [ '8.1', '8.2', '8.3', '8.4' ]
nextcloud-version: [ 'master', 'stable32', 'stable31', 'stable30' ]
nextcloud-version: [ 'stable32', 'stable31', 'stable30' ]
exclude:
- php-version: '8.4'
nextcloud-version: 'stable30'
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@

All notable changes to this project will be documented in this file.

## 2.4.0 - 2025-09-15
### Changed
- Code refactoring under the hood
### Fixed
- Fix npm audit

## 2.3.0 - 2025-08-19
### Added
- Support for Nextcloud 32
Expand Down
4 changes: 2 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<name>Two-Factor WebAuthn</name>
<summary>WebAuthn two-factor provider</summary>
<description>A two-factor provider for WebAuthn devices</description>
<version>2.4.0-dev.0</version>
<version>2.4.0</version>
<licence>agpl</licence>
<author>Christoph Wurst</author>
<author>Michael Blumenstein</author>
Expand All @@ -25,7 +25,7 @@
<dependencies>
<php min-version="8.1" max-version="8.4"/>
<lib>gmp</lib>
<nextcloud min-version="30" max-version="33" />
<nextcloud min-version="30" max-version="32" />
</dependencies>

<repair-steps>
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": "twofactor_webauthn",
"version": "2.4.0-dev.0",
"version": "2.4.0",
"description": "WebAuthn second factor provider for Nextcloud",
"private": true,
"dependencies": {
Expand Down
Loading