Skip to content
Merged

1.22.1 #1032

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
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

## ['UNRELEASED']

## [1.22.1] - 2025-10-10

### Fixed

- Fix UI with GLPI 11
Expand All @@ -27,6 +29,18 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fix display from Planning view
- Fix `classname` resolution when multiple `s` at end of container name


## [1.21.24] - 2025-10-10

### Fixed

- Fix `massive action` for adding value to `multiple` dropdown fields
- Fix for the `COALESCE` part of the `SQL query` for `multiple` dropdowns
- Fix `search option` for `multiple` dropdown
- Fix display from Planning view
- Fix `classname` resolution when multiple `s` at end of container name


## [1.21.23] - 2025-08-26

### Fixed
Expand Down
10 changes: 10 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,11 +98,21 @@ Il existe un [script de migration](https://github.com/pluginsGLPI/customfields/b
<author>Olivier Moron</author>
</authors>
<versions>
<version>
<num>1.21.24</num>
<compatibility>~10.0.11</compatibility>
<download_url>https://github.com/pluginsGLPI/fields/releases/download/1.21.24/glpi-fields-1.21.24.tar.bz2</download_url>
</version>
<version>
<num>1.21.23</num>
<compatibility>~10.0.11</compatibility>
<download_url>https://github.com/pluginsGLPI/fields/releases/download/1.21.23/glpi-fields-1.21.23.tar.bz2</download_url>
</version>
<version>
<num>1.22.1</num>
<compatibility>~11.0.0</compatibility>
<download_url>https://github.com/pluginsGLPI/fields/releases/download/1.22.1/glpi-fields-1.22.1.tar.bz2</download_url>
</version>
<version>
<num>1.22.0</num>
<compatibility>~11.0.0</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 @@
/** @var array $CFG_GLPI */
global $CFG_GLPI;

define('PLUGIN_FIELDS_VERSION', '1.22.0');
define('PLUGIN_FIELDS_VERSION', '1.22.1');

// Minimal GLPI version, inclusive
define('PLUGIN_FIELDS_MIN_GLPI', '11.0.0');
Expand Down