From da993afe887abe3c74959d9c06e76eadbbd86ff2 Mon Sep 17 00:00:00 2001 From: Yuri Kuznetsov Date: Thu, 14 Nov 2024 18:51:49 +0200 Subject: [PATCH] fix version --- application/Espo/Core/Acl.php | 2 +- application/Espo/Core/AclManager.php | 2 +- .../Espo/Core/Notification/AssignmentNotificator/Params.php | 2 +- .../Espo/Core/Select/Helpers/RelationQueryHelper.php | 2 +- application/Espo/Core/Select/Where/Converter/Params.php | 2 +- application/Espo/Core/Select/Where/Scanner.php | 2 +- application/Espo/Tools/AppSecret/SecretProvider.php | 2 +- client/src/app-params.js | 2 +- client/src/helpers/list/settings.js | 4 ++-- client/src/views/fields/text.js | 2 +- client/src/views/list.js | 2 +- client/src/views/modals/select-records.js | 2 +- client/src/views/record/detail.js | 4 ++-- client/src/views/record/list.js | 4 ++-- schema/metadata/app/adminPanel.json | 2 +- schema/metadata/app/record.json | 2 +- schema/metadata/entityDefs.json | 6 +++--- schema/metadata/scopes.json | 2 +- 18 files changed, 23 insertions(+), 23 deletions(-) diff --git a/application/Espo/Core/Acl.php b/application/Espo/Core/Acl.php index bd3aef9b11..61a0e482ce 100644 --- a/application/Espo/Core/Acl.php +++ b/application/Espo/Core/Acl.php @@ -218,7 +218,7 @@ class Acl * Check whether an entity is shared with a user. * * @param Table::ACTION_* $action - * @since 8.5.0 + * @since 9.0.0 * @noinspection PhpDocSignatureInspection */ public function checkOwnershipShared(Entity $entity, string $action): bool diff --git a/application/Espo/Core/AclManager.php b/application/Espo/Core/AclManager.php index 5ef48d3dc6..b4f9d6a02e 100644 --- a/application/Espo/Core/AclManager.php +++ b/application/Espo/Core/AclManager.php @@ -402,7 +402,7 @@ class AclManager * Check whether an entity is shared with a user. * * @param Table::ACTION_* $action - * @since 8.5.0 + * @since 9.0.0 * @noinspection PhpDocSignatureInspection */ public function checkOwnershipShared(User $user, Entity $entity, string $action): bool diff --git a/application/Espo/Core/Notification/AssignmentNotificator/Params.php b/application/Espo/Core/Notification/AssignmentNotificator/Params.php index 52f37777e0..782aa0e040 100644 --- a/application/Espo/Core/Notification/AssignmentNotificator/Params.php +++ b/application/Espo/Core/Notification/AssignmentNotificator/Params.php @@ -80,7 +80,7 @@ class Params /** * Clone with an option. * - * @since 8.5.0 + * @since 9.0.0 */ public function withOption(string $option, mixed $value): self { diff --git a/application/Espo/Core/Select/Helpers/RelationQueryHelper.php b/application/Espo/Core/Select/Helpers/RelationQueryHelper.php index ca2b87ee47..5de07f709e 100644 --- a/application/Espo/Core/Select/Helpers/RelationQueryHelper.php +++ b/application/Espo/Core/Select/Helpers/RelationQueryHelper.php @@ -39,7 +39,7 @@ use Espo\ORM\Query\Part\WhereItem; use Espo\ORM\Query\SelectBuilder as QueryBuilder; /** - * @since 8.5.0 + * @since 9.0.0 */ class RelationQueryHelper { diff --git a/application/Espo/Core/Select/Where/Converter/Params.php b/application/Espo/Core/Select/Where/Converter/Params.php index f034934e7b..fae4c1c386 100644 --- a/application/Espo/Core/Select/Where/Converter/Params.php +++ b/application/Espo/Core/Select/Where/Converter/Params.php @@ -33,7 +33,7 @@ namespace Espo\Core\Select\Where\Converter; * Where converter parameters. * * @immutable - * @since 8.5.0 + * @since 9.0.0 */ class Params { diff --git a/application/Espo/Core/Select/Where/Scanner.php b/application/Espo/Core/Select/Where/Scanner.php index 0e336d7330..be585096d6 100644 --- a/application/Espo/Core/Select/Where/Scanner.php +++ b/application/Espo/Core/Select/Where/Scanner.php @@ -65,7 +65,7 @@ class Scanner /** * Check whether at least one has-many link appears in the where-clause. * - * @since 8.5.0 + * @since 9.0.0 */ public function hasRelatedMany(string $entityType, Item $item): bool { diff --git a/application/Espo/Tools/AppSecret/SecretProvider.php b/application/Espo/Tools/AppSecret/SecretProvider.php index 24c472859b..f27562aaa5 100644 --- a/application/Espo/Tools/AppSecret/SecretProvider.php +++ b/application/Espo/Tools/AppSecret/SecretProvider.php @@ -36,7 +36,7 @@ use Espo\ORM\Query\Part\Condition; use Espo\ORM\Query\Part\Expression; /** - * @since 8.5.0 + * @since 9.0.0 * @noinspection PhpUnused */ class SecretProvider diff --git a/client/src/app-params.js b/client/src/app-params.js index d4d0dfc7b8..f398b44bcb 100644 --- a/client/src/app-params.js +++ b/client/src/app-params.js @@ -29,7 +29,7 @@ /** * Application parameters. * - * @since 8.5.0 + * @since 9.0.0 */ export default class AppParams { diff --git a/client/src/helpers/list/settings.js b/client/src/helpers/list/settings.js index 34b31717c7..3c702524bb 100644 --- a/client/src/helpers/list/settings.js +++ b/client/src/helpers/list/settings.js @@ -93,7 +93,7 @@ class ListSettingsHelper { * @param {string} name A name. * @param {boolean} [hidden] Is hidden by default. * @return {boolean} - * @since 8.5.0 + * @since 9.0.0 */ isColumnHidden(name, hidden) { const hiddenMap = this.getHiddenColumnMap(); @@ -117,7 +117,7 @@ class ListSettingsHelper { * Is column resize enabled. * * @return {boolean} - * @since 8.5.0 + * @since 9.0.0 */ getColumnResize() { if (this.columnResize === undefined) { diff --git a/client/src/views/fields/text.js b/client/src/views/fields/text.js index 272a4d4519..74093ad6f4 100644 --- a/client/src/views/fields/text.js +++ b/client/src/views/fields/text.js @@ -531,7 +531,7 @@ class TextFieldView extends BaseFieldView { /** * Show the preview modal. * - * @since 8.5.0 + * @since 9.0.0 * @return {Promise} */ async preview() { diff --git a/client/src/views/list.js b/client/src/views/list.js index cec31d51df..e5c54dea6b 100644 --- a/client/src/views/list.js +++ b/client/src/views/list.js @@ -159,7 +159,7 @@ class ListView extends MainView { * * @protected * @type {Object.} - * @since 8.5.0 + * @since 9.0.0 */ rootData diff --git a/client/src/views/modals/select-records.js b/client/src/views/modals/select-records.js index 342dbde2b8..2fa9022c89 100644 --- a/client/src/views/modals/select-records.js +++ b/client/src/views/modals/select-records.js @@ -99,7 +99,7 @@ class SelectRecordsModalView extends ModalView { * @property {string[]} [mandatorySelectAttributeList] Mandatory attributes to select. * @property {function(): Promise} [createAttributesProvider] Create-attributes provider. * @property {Record} [createAttributes] Create-attributes. - * @property {function(import('model').default[])} [onSelect] On record select. As of 8.5. + * @property {function(import('model').default[])} [onSelect] On record select. As of 9.0.0. */ /** diff --git a/client/src/views/record/detail.js b/client/src/views/record/detail.js index 5728196bf1..547f891cab 100644 --- a/client/src/views/record/detail.js +++ b/client/src/views/record/detail.js @@ -528,7 +528,7 @@ class DetailRecordView extends BaseRecordView { * * @protected * @type {Object.} - * @since 8.5.0 + * @since 9.0.0 */ dataObject @@ -537,7 +537,7 @@ class DetailRecordView extends BaseRecordView { * * @protected * @type {Record} - * @since 8.5.0 + * @since 9.0.0 */ rootData diff --git a/client/src/views/record/list.js b/client/src/views/record/list.js index 0967629ed4..38a97cf72c 100644 --- a/client/src/views/record/list.js +++ b/client/src/views/record/list.js @@ -328,7 +328,7 @@ class ListRecordView extends View { * * @protected * @type {boolean} - * @since 8.5.0 + * @since 9.0.0 */ columnResize = true @@ -584,7 +584,7 @@ class ListRecordView extends View { * * @protected * @type {Object.} - * @since 8.5.0 + * @since 9.0.0 */ rootData diff --git a/schema/metadata/app/adminPanel.json b/schema/metadata/app/adminPanel.json index cce9189a90..fd25994fe0 100644 --- a/schema/metadata/app/adminPanel.json +++ b/schema/metadata/app/adminPanel.json @@ -47,7 +47,7 @@ }, "tabQuickSearch": { "type": "boolean", - "description": "Makes available in the navbar tab quick search. As if v8.5." + "description": "Makes available in the navbar tab quick search. As if v9.0." } } } diff --git a/schema/metadata/app/record.json b/schema/metadata/app/record.json index f9fee347eb..3647d9904e 100644 --- a/schema/metadata/app/record.json +++ b/schema/metadata/app/record.json @@ -13,7 +13,7 @@ {"type": "string"} ] }, - "description": "Classes for additional handling of a select query. Should implement Espo\\Core\\Select\\Applier\\AdditionalApplier interface. An entity type is passed to the constructor in `$entityType` parameter. As of v8.5.0." + "description": "Classes for additional handling of a select query. Should implement Espo\\Core\\Select\\Applier\\AdditionalApplier interface. An entity type is passed to the constructor in `$entityType` parameter. As of v9.0." } } } diff --git a/schema/metadata/entityDefs.json b/schema/metadata/entityDefs.json index c94ecbe32c..5ff8c132f4 100644 --- a/schema/metadata/entityDefs.json +++ b/schema/metadata/entityDefs.json @@ -303,7 +303,7 @@ "properties": { "preview": { "type": "boolean", - "description": "Show the preview button. Applicable only if Markdown is enabled. As of v8.5." + "description": "Show the preview button. Applicable only if Markdown is enabled. As of v9.0." }, "displayRawText": { "type": "boolean", @@ -325,7 +325,7 @@ }, "attachmentField": { "type": "string", - "description": "An attachment-multiple field to connect with. As of v8.5." + "description": "An attachment-multiple field to connect with. As of v9.0." } } } @@ -1322,7 +1322,7 @@ "properties": { "orderBy": { "type": "string", - "description": "An attribute or expression to order by. Applied when getting related entities from an entity. As of v8.5." + "description": "An attribute or expression to order by. Applied when getting related entities from an entity. As of v9.0." }, "order": { "enum": ["asc", "desc"], diff --git a/schema/metadata/scopes.json b/schema/metadata/scopes.json index 5e1a2ab1a3..67c0105568 100644 --- a/schema/metadata/scopes.json +++ b/schema/metadata/scopes.json @@ -291,7 +291,7 @@ "type": "boolean" }, "preserveAuditLog": { - "description": "Disables audit log cleanup. As of v8.5.", + "description": "Disables audit log cleanup. As of v9.0.", "type": "boolean" }, "exportFormatList": {