diff --git a/CHANGELOG.md b/CHANGELOG.md index 71b721e..4c212ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [UNRELEASE] +## [1.0.3] - 2025-07-10 + ### Fixed - Do not disclose `password` from `form` input. diff --git a/databaseinventory.xml b/databaseinventory.xml index 92ce28a..c21cf30 100644 --- a/databaseinventory.xml +++ b/databaseinventory.xml @@ -26,6 +26,11 @@ ~11.0.0 https://github.com/pluginsGLPI/databaseinventory/releases/download/1.1.0-beta1/glpi-databaseinventory-1.1.0-beta1.tar.bz2 + + 1.0.3 + ~10.0.0 + https://github.com/pluginsGLPI/databaseinventory/releases/download/1.0.3/glpi-databaseinventory-1.0.3.tar.bz2 + 1.0.2 ~10.0.0 diff --git a/inc/profile.class.php b/inc/profile.class.php index 956ad32..b7eddab 100644 --- a/inc/profile.class.php +++ b/inc/profile.class.php @@ -32,7 +32,7 @@ class PluginDatabaseinventoryProfile extends Profile { public static $rightname = 'profile'; - const RUN_DATABSE_INVENTORY = 256; + public const RUN_DATABSE_INVENTORY = 256; public static function getTypeName($nb = 0) { @@ -61,7 +61,7 @@ private static function getAllRights($all = false) return $rights; } - function getRights($interface = 'central') + public function getRights($interface = 'central') { $rights = parent::getRights(); $rights[self::RUN_DATABSE_INVENTORY] = __("Run database inventory", "databaseinventory"); diff --git a/setup.php b/setup.php index ec3fced..ba85439 100644 --- a/setup.php +++ b/setup.php @@ -28,7 +28,7 @@ * ------------------------------------------------------------------------- */ -define('PLUGIN_DATABASEINVENTORY_VERSION', '1.0.2'); +define('PLUGIN_DATABASEINVENTORY_VERSION', '1.0.3'); // Minimal GLPI version, inclusive define('PLUGIN_DATABASEINVENTORY_MIN_GLPI', '10.0.0');