Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): Prepare for 1.4.0 release #170

Merged
merged 1 commit into from
Aug 1, 2024
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
7 changes: 2 additions & 5 deletions .github/workflows/cypress-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,6 @@ jobs:
server-versions: 'stable22'
- php-versions: '7.4'
server-versions: 'stable23'
exclude:
- php-versions: '8.0'
server-versions: 'stable25'

env:
PUPPETEER_SKIP_DOWNLOAD: true
Expand Down Expand Up @@ -157,9 +154,9 @@ jobs:

- name: Upload NC logs
uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
if: always()
if: failure()
with:
name: ${{ matrix.server-versions }}-${{ matrix.containers }}.log
name: nc_logs_${{ matrix.server-versions }}_${{ matrix.containers }}.log
path: data/nextcloud.log
retention-days: 5

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## [1.4.0] - 2024-08-01

- Add support for Nextcloud 30
- Update PHP + NPM dependencies

## [1.3.0] - 2024-04-27

- Add support for Nextcloud 29
Expand Down
5 changes: 2 additions & 3 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,15 @@
<name>Monthly Status Mails</name>
<summary>Send monthly status mails to users</summary>
<description>Monthly notifications, e.g. summary of used storage and usage hints.</description>
<version>1.3.0</version>
<version>1.4.0</version>
<licence>agpl</licence>
<author>Carl Schwan</author>
<author>Jonas Meurer</author>
<author>Vitor Mattos</author>
<namespace>MonthlyStatusEmail</namespace>
<category>social</category>
<bugs>https://github.com/nextcloud/monthly_status_email/issues</bugs>
<dependencies>
<nextcloud min-version="22" max-version="29" />
<nextcloud min-version="22" max-version="30" />
</dependencies>
<background-jobs>
<job>OCA\MonthlyStatusEmail\Jobs\SendNotificationsJob</job>
Expand Down
Loading