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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,19 @@ 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]

### Fixed

- Fix the `Task completed` message during plugin update

## [2.14.3] - 2025-09-16

### Fixed

- Fix `License` injection


## [2.14.2] - 2025-08-22

### Fixed
Expand Down
15 changes: 0 additions & 15 deletions hook.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,6 @@ function plugin_datainjection_uninstall()

function plugin_datainjection_migration_2141_2150(Migration $migration)
{
$migration->setVersion('2.15.0');

$migration->addField(
'glpi_plugin_datainjection_models',
'replace_multiline_value',
Expand All @@ -233,9 +231,6 @@ function plugin_datainjection_migration_2141_2150(Migration $migration)

function plugin_datainjection_migration_2121_2122(Migration $migration)
{

$migration->setVersion('2.12.2');

//remove useless field
$migration->dropField("glpi_plugin_datainjection_models", "perform_network_connection");

Expand All @@ -249,8 +244,6 @@ function plugin_datainjection_migration_290_2100(Migration $migration)
/** @var DBmysql $DB */
global $DB;

$migration->setVersion('2.10.0');

$migration->addPostQuery(
$DB->buildUpdate(
'glpi_plugin_datainjection_mappings',
Expand All @@ -274,8 +267,6 @@ function plugin_datainjection_migration_264_270(Migration $migration)
/** @var DBmysql $DB */
global $DB;

$migration->setVersion('2.7.0');

$migration->addPostQuery(
$DB->buildUpdate(
'glpi_plugin_datainjection_mappings',
Expand All @@ -299,8 +290,6 @@ function plugin_datainjection_migration_251_252(Migration $migration)
/** @var DBmysql $DB */
global $DB;

$migration->setVersion('2.5.2');

if (
$DB->tableExists('glpi_plugin_datainjection_models')
&& $DB->fieldExists('glpi_plugin_datainjection_models', 'date_mod')
Expand All @@ -322,8 +311,6 @@ function plugin_datainjection_migration_24_250(Migration $migration)
/** @var DBmysql $DB */
global $DB;

$migration->setVersion('2.5.0');

if (
$DB->tableExists('glpi_plugin_datainjection_models')
&& !$DB->fieldExists('glpi_plugin_datainjection_models', 'date_creation')
Expand Down Expand Up @@ -354,8 +341,6 @@ function plugin_datainjection_upgrade23_240(Migration $migration)
/** @var DBmysql $DB */
global $DB;

$migration->setVersion('2.4.0');

if ($DB->tableExists('glpi_plugin_datainjection_profiles')) {
if ($DB->fieldExists('glpi_plugin_datainjection_profiles', 'ID')) {
$migration->changeField('glpi_plugin_datainjection_profiles', 'ID', 'id', 'autoincrement');
Expand Down