Skip to content

Commit 35986ab

Browse files
committed
Merge branch 'release/2.12.2' into support/2.12.0
2 parents 2cd2bd6 + 8b73aaa commit 35986ab

File tree

4 files changed

+34
-3
lines changed

4 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
## [2.12.2](https://github.com/pluginsglpi/formcreator/compare/v2.12.1...v2.12.2) (2021-09-14)
2+
3+
4+
### Bug Fixes
5+
6+
* **entityconfig:** hamonize wtUI with GLPI ([99ef6e6](https://github.com/pluginsglpi/formcreator/commit/99ef6e6d339c9714aa40c7fb2428a70214424c3a))
7+
* **field:** check access rights before updating fields visibility ([ef3fc66](https://github.com/pluginsglpi/formcreator/commit/ef3fc6623cfb2b9a1ebc7d6889179d895f2a0852))
8+
* **form_validator:** php errors in import process ([7ae01dc](https://github.com/pluginsglpi/formcreator/commit/7ae01dc90d414bfc5af44fa77dd2b5c56fc15210))
9+
* **ipfield, hiddenfield:** do not generate HTML input if edition disabled ([0776ef2](https://github.com/pluginsglpi/formcreator/commit/0776ef2c3342fb5881790c48239904017559788c))
10+
* **targetticket:** associated items from question ([2cd2bd6](https://github.com/pluginsglpi/formcreator/commit/2cd2bd62e8767b8eba63f0a617053a0fed6ea44d))
11+
* check right before export ([af04e78](https://github.com/pluginsglpi/formcreator/commit/af04e78ccbb0de4471a567b2f4ca9b419ac3ef31))
12+
* duplicate JS function ([5386f65](https://github.com/pluginsglpi/formcreator/commit/5386f650e6bf5cd178908f56ca4b1414315ed9ea))
13+
* **fields:** preveint fatal error when inconsistency found in DB ([65c461a](https://github.com/pluginsglpi/formcreator/commit/65c461a10316cc02d46f1ec95e2c10ea78bb07e1))
14+
* **ldapfield:** organize code and prevent obsolete function call ([514e751](https://github.com/pluginsglpi/formcreator/commit/514e751c92ce3b7e9c73642e74eb3e3ad7ecde99))
15+
* **ldapfield:** undefined var makes LDAP querying fail ([2dddc30](https://github.com/pluginsglpi/formcreator/commit/2dddc301f7a137ceb03c4602b89f8b5236ea6a55))
16+
* **question:** save images in description as inline base64 ([21b94f5](https://github.com/pluginsglpi/formcreator/commit/21b94f5b762633c4e3288667fdcbe10ab3453e1b))
17+
* **targetticket:** remove useless use statement ([906ebeb](https://github.com/pluginsglpi/formcreator/commit/906ebeb41059456a838a77f93e514169ad257468))
18+
* **targetticket:** type not set ([6d4c3af](https://github.com/pluginsglpi/formcreator/commit/6d4c3af65e1c1ed336e1d35befff5ae9b321eea0))
19+
* **targetticket, targetchange:** embedded image handling ([44a65a0](https://github.com/pluginsglpi/formcreator/commit/44a65a0218d9ac472b3a77f3a4de69b0609e9c1b))
20+
* **targetticket,targetchange:** avoid adding same actor several times ([1f82f3b](https://github.com/pluginsglpi/formcreator/commit/1f82f3b191e52f4bb3000c1c16b93806e83dcd68))
21+
* **textfield,txtareafield:** defaultr value not translated ([15bb281](https://github.com/pluginsglpi/formcreator/commit/15bb281e611ffc5f202ee5d45b06510ae83c8dd4))
22+
* **urgencyfield:** obey empty_value_setting ([91f14eb](https://github.com/pluginsglpi/formcreator/commit/91f14ebcb01b3da4519e5e8c55e42a371cc21df3))
23+
* LDAP error handler ([6130581](https://github.com/pluginsglpi/formcreator/commit/6130581309c080d9c8e9f3b99ad8761e770fc6df))
24+
25+
26+
127
<a name="v2.12.1"></a>
228
## [v2.12.1](https://github.com/pluginsglpi/formcreator/compare/v2.12.0...v2.12.1) (2021-08-16)
329

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
"tag": true
1515
}
1616
},
17-
"version": "2.12.2-dev"
17+
"version": "2.12.2"
1818
}

plugin.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ Features
6161
<author>Teclib'</author>
6262
</authors>
6363
<versions>
64+
<version>
65+
<num>2.12.2</num>
66+
<compatibility>9.5.5</compatibility>
67+
<download_url>https://github.com/pluginsGLPI/formcreator/releases/download/v2.12.2/glpi-formcreator-2.12.2.tar.bz2</download_url>
68+
</version>
6469
<version>
6570
<num>2.12.1</num>
6671
<compatibility>9.5.5</compatibility>

setup.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131

3232
global $CFG_GLPI;
3333
// Version of the plugin (major.minor.bugfix)
34-
define('PLUGIN_FORMCREATOR_VERSION', '2.12.2-dev');
34+
define('PLUGIN_FORMCREATOR_VERSION', '2.12.2');
3535
// Schema version of this version (major.minor only)
3636
define('PLUGIN_FORMCREATOR_SCHEMA_VERSION', '2.12');
3737
// is or is not an official release of the plugin
38-
define('PLUGIN_FORMCREATOR_IS_OFFICIAL_RELEASE', false);
38+
define('PLUGIN_FORMCREATOR_IS_OFFICIAL_RELEASE', true);
3939

4040
// Minimal GLPI version, inclusive
4141
define ('PLUGIN_FORMCREATOR_GLPI_MIN_VERSION', '9.5');

0 commit comments

Comments
 (0)