Skip to content
Merged

1.23.0 #1075

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

### Fixed

- Fix bad SQL query for `GenericObject`
## [1.23.0] - 2025-11-05

### Added

Expand All @@ -20,6 +16,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
### Fixed

- Align the fields of the plugin with the user form
- Fix bad SQL query for `GenericObject`

## [1.22.2] - 2025-10-24

Expand Down
5 changes: 5 additions & 0 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,11 @@ Il existe un [script de migration](https://github.com/pluginsGLPI/customfields/b
<author>Olivier Moron</author>
</authors>
<versions>
<version>
<num>1.23.0</num>
<compatibility>~11.0.2</compatibility>
<download_url>https://github.com/pluginsGLPI/fields/releases/download/1.23.0/glpi-fields-1.23.0.tar.bz2</download_url>
</version>
<version>
<num>1.22.2</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.2');
define('PLUGIN_FIELDS_VERSION', '1.23.0');

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