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
2 changes: 1 addition & 1 deletion .github/workflows/lint-php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-versions: ['8.0', '8.1', '8.2', '8.3']
php-versions: ['8.1', '8.2', '8.3']

name: php-lint

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/psalm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ jobs:
# do not stop on another job's failure
fail-fast: false
matrix:
ocp-version: ['^27', '^28', '^29', '^30', 'dev-master']
php-version: ['8.0', '8.1', '8.2', '8.3']
ocp-version: ['^29', '^30', '^31', 'dev-master']
php-version: ['8.1', '8.2', '8.3']


name: Psalm check on PHP ${{ matrix.php-version }} and OCP ${{ matrix.ocp-version }}
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## 3.2.0 - 2025-05-19

Maintenance update

### Added

- Added default access token user info in Admin settings
- Added notifications for new unread GitHub notifications (admin/user option to enable/disable)


## 3.1.1 – 2024-11-06

### Changed
Expand Down
7 changes: 5 additions & 2 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<description><![CDATA[GitHub integration provides a dashboard widget displaying your most important notifications
and a unified search provider for repositories, issues and pull requests. It also provides a link reference provider
to render links to issues, pull requests and comments in Talk and Text.]]></description>
<version>3.1.1</version>
<version>3.2.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Github</namespace>
Expand All @@ -23,8 +23,11 @@
<bugs>https://github.com/nextcloud/integration_github/issues</bugs>
<screenshot>https://github.com/nextcloud/integration_github/raw/main/img/screenshot1.jpg</screenshot>
<dependencies>
<nextcloud min-version="27" max-version="31"/>
<nextcloud min-version="29" max-version="32"/>
</dependencies>
<background-jobs>
<job>OCA\Github\BackgroundJob\CheckGithubNotificationsJob</job>
</background-jobs>
<settings>
<admin>OCA\Github\Settings\Admin</admin>
<admin-section>OCA\Github\Settings\AdminSection</admin-section>
Expand Down
1 change: 1 addition & 0 deletions appinfo/routes.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
],
"require": {
"league/commonmark": "^2.3",
"php": "^8.0",
"php": "^8.1",
"bamarni/composer-bin-plugin": "^1.8"
},
"scripts": {
Expand All @@ -30,7 +30,7 @@
"optimize-autoloader": true,
"classmap-authoritative": true,
"platform": {
"php": "8.0"
"php": "8.1"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true,
Expand Down
Loading
Loading