Compare commits

...

4 Commits

Author SHA1 Message Date
Yuri Kuznetsov eb6f9b602f upgrade 2022-10-23 16:40:40 +03:00
Yuri Kuznetsov cf508a540e Merge branch 'fix' of https://github.com/espocrm/espocrm into fix 2022-10-23 16:36:19 +03:00
Yuri Kuznetsov 5278e3bf06 v 2022-10-23 16:25:17 +03:00
David 5763f5b58e fixed require promise (#2473)
Co-authored-by: David Moškoř <david.moskor@apertia.cz>
2022-10-20 18:55:50 +03:00
4 changed files with 17 additions and 3 deletions
+1 -1
View File
@@ -766,7 +766,7 @@
return new Promise((resolve, reject) => {
this.require(
subject,
() => resolve(),
(...args) => resolve(...args),
() => reject()
);
});
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "espocrm",
"version": "7.2.5",
"version": "7.2.6",
"lockfileVersion": 2,
"requires": true,
"packages": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "espocrm",
"version": "7.2.5",
"version": "7.2.6",
"description": "Open-source CRM.",
"repository": {
"type": "git",
+14
View File
@@ -0,0 +1,14 @@
{
"mandatoryFiles": [
"application/Espo/Core/Authentication/LDAP/Client.php",
"application/Espo/Core/Authentication/LDAP/ClientFactory.php",
"application/Espo/Core/Authentication/LDAP/Utils.php"
],
"manifest": {
"delete": [
"application/Espo/Core/Authentication/Ldap/Client.php",
"application/Espo/Core/Authentication/Ldap/ClientFactory.php",
"application/Espo/Core/Authentication/Ldap/Utils.php"
]
}
}