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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ 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/).

## [Unreleased]
## [2.14.7] - 2026-08-11

### Fixed

Expand Down
10 changes: 10 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,16 @@
<author>TECLIB'</author>
</authors>
<versions>
<version>
<num>2.14.7</num>
<compatibility>~11.0.1</compatibility>
<download_url>https://github.com/pluginsGLPI/tag/releases/download/2.14.7/glpi-tag-2.14.7.tar.bz2</download_url>
</version>
<version>
<num>2.12.6</num>
<compatibility>~10.0.11</compatibility>
<download_url>https://github.com/pluginsGLPI/tag/releases/download/2.12.6/glpi-tag-2.12.6.tar.bz2</download_url>
</version>
<version>
<num>2.14.6</num>
<compatibility>~11.0.1</compatibility>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

use function Safe\define;

define('PLUGIN_TAG_VERSION', '2.14.6');
define('PLUGIN_TAG_VERSION', '2.14.7');

// Minimal GLPI version, inclusive
define("PLUGIN_TAG_MIN_GLPI", "11.0.1");
Expand Down
2 changes: 1 addition & 1 deletion tests/TagTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public function loginAs(array $credentials): int
$DB->update(
'glpi_profilerights',
[
'rights' => CREATE | UPDATE | PURGE,
'rights' => READ | CREATE | UPDATE | PURGE,
],
[
'profiles_id' => $user_profile,
Expand Down
6 changes: 6 additions & 0 deletions tests/Units/TagDestinationFieldTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ final class TagDestinationFieldTest extends AbstractDestinationFieldTest
{
use FormTesterTrait;

public function setUp(): void
{
parent::setUp();
$this->login();
}

public function testNoTags(): void
{
$form = $this->createAndGetFormWithMultipleTagQuestions();
Expand Down
2 changes: 2 additions & 0 deletions tests/Units/TagItemTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,8 @@ final class TagItemTest extends TagTestCase
{
public function testTagsFromTicket(): void
{
$this->login();

$tagID1 = $this->createTag('TicketTag1');
$tagID2 = $this->createTag('TicketTag2');

Expand Down