diff --git a/CHANGELOG.md b/CHANGELOG.md
index d98d43e..03031c5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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.4] - 2026-06-24
### Fixed
diff --git a/inc/tag.class.php b/inc/tag.class.php
index 24b7de9..a7eb07a 100644
--- a/inc/tag.class.php
+++ b/inc/tag.class.php
@@ -544,7 +544,7 @@ public static function preKanbanContent($params = [])
$color = $data['color'] ?: '#DDDDDD';
$textcolor = idealTextColor($color);
$style = sprintf('background-color: %s; color: %s;', $color, $textcolor);
- $content .= sprintf("%s ", $style, $title, htmlentities($name, ENT_QUOTES, "UTF-8"));
+ $content .= sprintf("%s ", $style, $title, htmlentities((string) $name, ENT_QUOTES, "UTF-8"));
}
$content .= "";
diff --git a/plugin.xml b/plugin.xml
index a59bc0f..26454cf 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -33,6 +33,11 @@
TECLIB'
+
+ 2.14.4
+ ~11.0.1
+ https://github.com/pluginsGLPI/tag/releases/download/2.14.4/glpi-tag-2.14.4.tar.bz2
+
2.14.3
~11.0.1
diff --git a/setup.php b/setup.php
index c44ae76..357a801 100644
--- a/setup.php
+++ b/setup.php
@@ -39,7 +39,7 @@
use function Safe\define;
-define('PLUGIN_TAG_VERSION', '2.14.3');
+define('PLUGIN_TAG_VERSION', '2.14.4');
// Minimal GLPI version, inclusive
define("PLUGIN_TAG_MIN_GLPI", "11.0.1");