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
9 changes: 8 additions & 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.15.2] - 2025-11-25

### Fixed

Expand All @@ -17,6 +17,13 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Remove groups as import link field
- Fix `clean` function

## [2.14.4] - 2025-11-25

### Fixed

- Fix truncated CSV export
- Fix missing `purge` action

## [2.15.1] - 2025-10-14

### Fixed
Expand Down
10 changes: 10 additions & 0 deletions datainjection.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@
<author>Xavier Caillaud</author>
</authors>
<versions>
<version>
<num>2.15.2</num>
<compatibility>~11.0.0</compatibility>
<download_url>https://github.com/pluginsGLPI/datainjection/releases/download/2.15.2/glpi-datainjection-2.15.2.tar.bz2</download_url>
</version>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we prepare GLPI 10 version too ?

<version>
<num>2.14.4</num>
<compatibility>~10.0.11</compatibility>
<download_url>https://github.com/pluginsGLPI/datainjection/releases/download/2.14.4/glpi-datainjection-2.14.4.tar.bz2</download_url>
</version>
<version>
<num>2.14.3</num>
<compatibility>~10.0.11</compatibility>
Expand Down
2 changes: 1 addition & 1 deletion setup.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
use function Safe\define;
use function Safe\mkdir;

define('PLUGIN_DATAINJECTION_VERSION', '2.15.1');
define('PLUGIN_DATAINJECTION_VERSION', '2.15.2');

// Minimal GLPI version, inclusive
define("PLUGIN_DATAINJECTION_MIN_GLPI", "11.0.0");
Expand Down