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: [ '^26', '^27', '^28', '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 @@ -4,6 +4,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-20

Maintenance update

### Added

- Enforce GitLab instance URL setting
- Added account Projects filter for Dashboard widget
- Added account Group filter for Dashboard widget

## 3.1.2 – 2024-10-10

### Fixed
Expand Down
14 changes: 7 additions & 7 deletions appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<summary>Integration of GitLab software development management service</summary>
<description><![CDATA[GitLab integration provides a dashboard widget displaying your most important notifications
and a unified search provider for repositories, issues and merge requests.]]></description>
<version>3.1.3</version>
<version>3.2.0</version>
<licence>agpl</licence>
<author>Julien Veyssier</author>
<namespace>Gitlab</namespace>
Expand All @@ -18,13 +18,13 @@
<bugs>https://github.com/nextcloud/integration_gitlab/issues</bugs>
<screenshot>https://github.com/nextcloud/integration_gitlab/raw/main/img/screenshot1.jpg</screenshot>
<dependencies>
<nextcloud min-version="26" max-version="31"/>
<nextcloud min-version="29" max-version="32"/>
</dependencies>
<repair-steps>
<post-migration>
<step>OCA\Gitlab\Migration\MultiAccountRepairStep</step>
</post-migration>
</repair-steps>
<repair-steps>
<post-migration>
<step>OCA\Gitlab\Migration\MultiAccountRepairStep</step>
</post-migration>
</repair-steps>
<settings>
<admin>OCA\Gitlab\Settings\Admin</admin>
<admin-section>OCA\Gitlab\Settings\AdminSection</admin-section>
Expand Down
5 changes: 4 additions & 1 deletion appinfo/routes.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

/**
* Nextcloud - GitLab
*
Expand All @@ -14,12 +15,14 @@
['name' => 'config#oauthRedirect', 'url' => '/oauth-redirect', 'verb' => 'GET'],
['name' => 'config#setConfig', 'url' => '/config', 'verb' => 'PUT'],
['name' => 'config#addAccount', 'url' => '/account', 'verb' => 'POST'],
['name' => 'config#updateAccount', 'url' => '/account/{id}', 'verb' => 'PUT'],
['name' => 'config#updateAccountFilters', 'url' => '/account/{id}/filters', 'verb' => 'PUT'],
['name' => 'config#deleteAccount', 'url' => '/account/{id}', 'verb' => 'DELETE'],
['name' => 'config#setAdminConfig', 'url' => '/admin-config', 'verb' => 'PUT'],
['name' => 'config#setSensitiveAdminConfig', 'url' => '/sensitive-admin-config', 'verb' => 'PUT'],

['name' => 'gitlabAPI#getTodos', 'url' => '/gitlab/{accountId}/todos', 'verb' => 'GET'],
['name' => 'gitlabAPI#getProjectsList', 'url' => '/gitlab/{accountId}/projects', 'verb' => 'GET'],
['name' => 'gitlabAPI#getGroupsList', 'url' => '/gitlab/{accountId}/groups', 'verb' => 'GET'],
['name' => 'gitlabAPI#getProjectAvatar', 'url' => '/gitlab/{accountId}/avatar/project', 'verb' => 'GET'],
['name' => 'gitlabAPI#getUserAvatar', 'url' => '/gitlab/{accountId}/avatar/user/{userId}', 'verb' => 'GET'],
]
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
],
"require": {
"league/commonmark": "^2.3",
"php": "^8.0",
"php": "^8.1",
"bamarni/composer-bin-plugin": "^1.8"
},
"scripts": {
Expand All @@ -34,7 +34,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