From 4d59e796483fefe7b9ef8d992de4811cb427b7f0 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 29 Jul 2024 12:54:43 +0700 Subject: [PATCH 001/149] Move UI changes to main (#6161) Signed-off-by: Alexander Platov --- packages/theme/styles/popups.scss | 1 - packages/ui/src/components/Button.svelte | 2 + .../src/components/NotificationToast.svelte | 6 +- .../components/ActivityMessageAction.svelte | 6 +- .../components/ActivityMessageActions.svelte | 10 ++- .../components/state/StatePresenter.svelte | 4 +- .../components/state/StateRefPresenter.svelte | 2 +- .../src/components/Templates.svelte | 3 +- .../src/components/TextActionButton.svelte | 1 + .../src/components/DueDateEditor.svelte | 1 + .../src/components/ObjectPresenter.svelte | 4 +- .../src/components/ServerManager.svelte | 79 +++++++++++-------- .../custom-atributes/class-properties-page.ts | 2 +- tests/sanity/tests/model/channel-page.ts | 32 ++++++-- .../model/documents/document-content-page.ts | 2 +- .../tests/model/planning/planning-page.ts | 8 +- .../sanity/tests/model/tracker/issues-page.ts | 11 ++- 17 files changed, 107 insertions(+), 67 deletions(-) diff --git a/packages/theme/styles/popups.scss b/packages/theme/styles/popups.scss index 31e5ae1f23f..aab96f82cab 100644 --- a/packages/theme/styles/popups.scss +++ b/packages/theme/styles/popups.scss @@ -194,7 +194,6 @@ height: max-content; overflow-x: hidden; overflow-y: auto; - scrollbar-width: thin; &::-webkit-scrollbar { width: 0; } .box { diff --git a/packages/ui/src/components/Button.svelte b/packages/ui/src/components/Button.svelte index 5812b007b77..9c44f0692d2 100644 --- a/packages/ui/src/components/Button.svelte +++ b/packages/ui/src/components/Button.svelte @@ -57,6 +57,7 @@ export let title: string | undefined = undefined export let borderStyle: 'solid' | 'dashed' | 'none' = 'solid' export let id: string | undefined = undefined + export let dataId: string | undefined = undefined export let input: HTMLButtonElement | undefined = undefined export let showTooltip: LabelAndProps | undefined = undefined export let short: boolean = false @@ -154,6 +155,7 @@ on:mousemove on:mouseleave {id} + data-id={dataId} > {#if icon && !loading}
diff --git a/packages/ui/src/components/NotificationToast.svelte b/packages/ui/src/components/NotificationToast.svelte index aba306a501e..0a6b7a37779 100644 --- a/packages/ui/src/components/NotificationToast.svelte +++ b/packages/ui/src/components/NotificationToast.svelte @@ -43,7 +43,7 @@ $: icon = getIcon() -
+
{#if icon} @@ -60,7 +60,7 @@ {title}
{#if onClose !== undefined} -
@@ -76,7 +76,7 @@
+
+ {#if selectedTab === 'general'} + + {:else if selectedTab === 'users'} + + {:else if selectedTab === 'statistics'} + + {:else if selectedTab === 'statistics-front'} + + {:else if selectedTab === 'statistics-collab'} + + {:else if selectedTab === 'account'} + + {/if} +
+
diff --git a/tests/sanity/tests/custom-atributes/class-properties-page.ts b/tests/sanity/tests/custom-atributes/class-properties-page.ts index 8275ec1704b..741010b2e14 100644 --- a/tests/sanity/tests/custom-atributes/class-properties-page.ts +++ b/tests/sanity/tests/custom-atributes/class-properties-page.ts @@ -31,7 +31,7 @@ export class ClassProperties { inputName = (): Locator => this.page.getByPlaceholder('Name') createButton = (): Locator => this.page.getByRole('button', { name: 'Create' }) enterTextString = (): Locator => this.page.getByPlaceholder('Type text...') - confirmChange = (): Locator => this.page.locator('.ml-2 > .antiButton') + confirmChange = (): Locator => this.page.locator('.selectPopup button') async selectDataType (dataType: DataType): Promise { switch (dataType) { diff --git a/tests/sanity/tests/model/channel-page.ts b/tests/sanity/tests/model/channel-page.ts index 442a772b38e..7226e1c78a9 100644 --- a/tests/sanity/tests/model/channel-page.ts +++ b/tests/sanity/tests/model/channel-page.ts @@ -14,17 +14,33 @@ export class ChannelPage { readonly channelTab = (): Locator => this.page.getByRole('link', { name: 'Channels' }).getByRole('button') readonly channelTable = (): Locator => this.page.getByRole('table') readonly channel = (channel: string): Locator => this.page.getByRole('button', { name: channel }) + readonly channelNameOnDetail = (channel: string): Locator => + this.page + .locator('span.labelOnPanel', { hasText: 'Name' }) + .locator('xpath=following-sibling::div[1]') + .locator('button', { hasText: channel }) + readonly chooseChannel = (channel: string): Locator => this.page.getByRole('button', { name: channel }) - readonly closePopupWindow = (): Locator => this.page.locator('.root > div > .antiButton').first() + readonly closePopupWindow = (): Locator => this.page.locator('.notifyPopup button[data-id="btnNotifyClose"]') readonly openAddMemberToChannel = (userName: string): Locator => this.page.getByRole('button', { name: userName }) readonly addMemberToChannelButton = (userName: string): Locator => this.page.getByText(userName) readonly joinChannelButton = (): Locator => this.page.getByRole('button', { name: 'Join' }) - readonly addEmojiButton = (): Locator => this.page.locator('.root > button').first() + readonly addEmojiButton = (): Locator => + this.page.locator('.activityMessage-actionPopup > button[data-id$="AddReactionAction"]') + readonly selectEmoji = (emoji: string): Locator => this.page.getByText(emoji) - readonly saveMessageButton = (): Locator => this.page.locator('.root > button:nth-child(2)') - readonly pinMessageButton = (): Locator => this.page.locator('.root > button:nth-child(3)') - readonly replyButton = (): Locator => this.page.locator('.root > button:nth-child(4)') - readonly openMoreButton = (): Locator => this.page.locator('.root > button:nth-child(5)') + readonly saveMessageButton = (): Locator => + this.page.locator('.activityMessage-actionPopup > button[data-id$="SaveForLaterAction"]') + + readonly pinMessageButton = (): Locator => + this.page.locator('.activityMessage-actionPopup > button[data-id$="PinMessageAction"]') + + readonly replyButton = (): Locator => + this.page.locator('.activityMessage-actionPopup > button[data-id$="ReplyToThreadAction"]') + + readonly openMoreButton = (): Locator => + this.page.locator('.activityMessage-actionPopup > button[data-id="btnMoreActions"]') + readonly messageSaveMarker = (): Locator => this.page.locator('.saveMarker') readonly saveMessageTab = (): Locator => this.page.getByRole('button', { name: 'Saved' }) readonly pinnedMessageButton = (): Locator => this.page.getByRole('button', { name: 'pinned' }) @@ -36,7 +52,7 @@ export class ChannelPage { readonly deleteMessageButton = (): Locator => this.page.getByRole('button', { name: 'Delete' }) readonly updateButton = (): Locator => this.page.getByRole('button', { name: 'Update' }) readonly openChannelDetails = (): Locator => this.page.locator('.hulyHeader-buttonsGroup > .antiButton') - readonly changeChannelNameConfirm = (): Locator => this.page.locator('.ml-2 > .antiButton') + readonly changeChannelNameConfirm = (): Locator => this.page.locator('.selectPopup button') readonly privateOrPublicChangeButton = (change: string, autoJoin: boolean): Locator => this.page .locator('span.labelOnPanel', { hasText: autoJoin ? 'Auto join' : 'Private' }) @@ -64,7 +80,7 @@ export class ChannelPage { } async changeChannelName (channel: string): Promise { - await this.channel(channel).nth(2).click() + await this.channelNameOnDetail(channel).click() await this.page.keyboard.type('New Channel Name') await this.changeChannelNameConfirm().click() } diff --git a/tests/sanity/tests/model/documents/document-content-page.ts b/tests/sanity/tests/model/documents/document-content-page.ts index 363eca9346e..5d6de50ea6c 100644 --- a/tests/sanity/tests/model/documents/document-content-page.ts +++ b/tests/sanity/tests/model/documents/document-content-page.ts @@ -11,7 +11,7 @@ export class DocumentContentPage extends CommonPage { readonly buttonDocumentTitle = (): Locator => this.page.locator('div[class*="main-content"] div.title input') readonly inputContent = (): Locator => this.page.locator('div.textInput div.tiptap') - readonly buttonToolbarLink = (): Locator => this.page.locator('div.text-editor-toolbar button:nth-child(10)') + readonly buttonToolbarLink = (): Locator => this.page.locator('div.text-editor-toolbar button[data-id="btnLink"]') readonly inputFormLink = (): Locator => this.page.locator('form[id="text-editor:string:Link"] input') readonly buttonFormLinkSave = (): Locator => this.page.locator('form[id="text-editor:string:Link"] button[type="submit"]') diff --git a/tests/sanity/tests/model/planning/planning-page.ts b/tests/sanity/tests/model/planning/planning-page.ts index f5b1f149473..7f7e36406f5 100644 --- a/tests/sanity/tests/model/planning/planning-page.ts +++ b/tests/sanity/tests/model/planning/planning-page.ts @@ -21,12 +21,8 @@ export class PlanningPage extends CalendarPage { readonly inputPopupCreateTitle = (): Locator => this.popup().locator('input[type="text"]') readonly inputPopupCreateDescription = (): Locator => this.popup().locator('div.tiptap') readonly inputPanelCreateDescription = (): Locator => this.panel().locator('div.tiptap') - readonly buttonPopupCreateDueDate = (): Locator => - this.popup().locator('div.block:first-child div.flex-row-center button:nth-child(3)') - - readonly buttonPanelCreateDueDate = (): Locator => - this.panel().locator('div.slots-content div.flex-row-top.justify-between div.flex-row-center button:first-child') - + readonly buttonPopupCreateDueDate = (): Locator => this.popup().locator('button#dueDateButton') + readonly buttonPanelCreateDueDate = (): Locator => this.panel().locator('button#dueDateButton') readonly buttonPopupCreatePriority = (): Locator => this.popup().locator('button#priorityButton') readonly buttonPanelCreatePriority = (): Locator => this.panel().locator('button#priorityButton') readonly buttonPopupCreateVisible = (): Locator => this.popup().locator('button#visibleButton') diff --git a/tests/sanity/tests/model/tracker/issues-page.ts b/tests/sanity/tests/model/tracker/issues-page.ts index 5a589f495ce..f1004db8225 100644 --- a/tests/sanity/tests/model/tracker/issues-page.ts +++ b/tests/sanity/tests/model/tracker/issues-page.ts @@ -113,7 +113,12 @@ export class IssuesPage extends CommonTrackerPage { createdTab = (): Locator => this.page.locator('[data-id="tab-created"]') subscribedTab = (): Locator => this.page.locator('[data-id="tab-subscribed"]') issueListPanel = (): Locator => this.page.locator('.hulyComponent') - notTrackButton = (): Locator => this.page.locator('button:has-text("Appleseed John") >> nth=1') + notTrackButton = (): Locator => + this.page + .locator('span.labelOnPanel', { hasText: 'Collaborators' }) + .locator('xpath=following-sibling::div[1]') + .locator('button') + selectPopup = (): Locator => this.page.locator('.selectPopup >> button:has-text("Appleseed John")') notificationTimeoutSetting = (timeout: string): Promise => { return this.page.evaluate((timeout) => { @@ -136,7 +141,7 @@ export class IssuesPage extends CommonTrackerPage { issueName = (name: string): Locator => this.page.locator(`text="${name}"`) issuesButton = (): Locator => this.page.locator('text="Issues"') viewButton = (): Locator => this.page.locator('button[data-id="btn-viewOptions"]') - orderingButton = (): Locator => this.page.locator('.ordering >> nth=0') + orderingButton = (): Locator => this.page.locator('.ordering button') modifiedDateMenuItem = (): Locator => this.page.locator('button.menu-item', { hasText: 'Modified date' }) estimationContainer = (): Locator => this.page.locator('.estimation-container').first() addTimeReportButton = (): Locator => this.page.locator('button:has-text("Add time report")') @@ -158,7 +163,7 @@ export class IssuesPage extends CommonTrackerPage { dueDateButton = (): Locator => this.page.locator('button:has-text("Due date")') specificDay = (day: string): Locator => this.page.locator(`.date-popup-container div.day >> text=${day}`).first() inputTextPlaceholder = (): Locator => this.page.getByPlaceholder('Type text...') - confirmInput = (): Locator => this.page.locator('.ml-2 > .antiButton') + confirmInput = (): Locator => this.page.locator('.selectPopup button') async navigateToIssues (): Promise { await this.page.click('text="Issues"') From 8000a080f244e7bfbf066a175e38a6853b3f900b Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 29 Jul 2024 16:21:56 +0700 Subject: [PATCH 002/149] Fix desktop build Signed-off-by: Andrey Sobolev --- common/config/rush/pnpm-lock.yaml | 141 +++++++++++++----------------- desktop/package.json | 2 +- 2 files changed, 63 insertions(+), 80 deletions(-) diff --git a/common/config/rush/pnpm-lock.yaml b/common/config/rush/pnpm-lock.yaml index f8b0b7e4a8b..724c5068f2a 100644 --- a/common/config/rush/pnpm-lock.yaml +++ b/common/config/rush/pnpm-lock.yaml @@ -1425,8 +1425,8 @@ dependencies: specifier: ~1.0.0 version: 1.0.1 electron-store: - specifier: ^10.0.0 - version: 10.0.0 + specifier: ^8.2.0 + version: 8.2.0 electron-updater: specifier: ^6.2.1 version: 6.2.1 @@ -7773,7 +7773,7 @@ packages: pretty-hrtime: 1.0.3 prompts: 2.4.2 read-pkg-up: 7.0.1 - semver: 7.6.0 + semver: 7.6.3 telejson: 7.2.0 tiny-invariant: 1.3.1 ts-dedent: 2.2.0 @@ -9639,7 +9639,7 @@ packages: debug: 4.3.4 globby: 11.1.0 is-glob: 4.0.3 - semver: 7.6.0 + semver: 7.6.3 tsutils: 3.21.0(typescript@5.3.3) typescript: 5.3.3 transitivePeerDependencies: @@ -9682,7 +9682,7 @@ packages: '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.3) eslint: 8.56.0 eslint-scope: 5.1.1 - semver: 7.6.0 + semver: 7.6.3 transitivePeerDependencies: - supports-color - typescript @@ -10218,15 +10218,6 @@ packages: ajv: 8.12.0 dev: false - /ajv-formats@3.0.1: - resolution: {integrity: sha512-8iUql50EUR+uUcdRQ3HDqa6EVyo3docL8g5WJ3FNcWmu62IbkGUue/pEyLBW8VGKKucTPgqeks4fIU1DA4yowQ==} - peerDependenciesMeta: - ajv: - optional: true - dependencies: - ajv: 8.17.1 - dev: false - /ajv-keywords@3.5.2(ajv@6.12.6): resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==} peerDependencies: @@ -10711,11 +10702,9 @@ packages: engines: {node: '>=8.0.0'} dev: false - /atomically@2.0.3: - resolution: {integrity: sha512-kU6FmrwZ3Lx7/7y3hPS5QnbJfaohcIul5fGqf7ok+4KklIEk9tJ0C2IQPdacSbVUWv6zVHXEBWoWd6NrVMT7Cw==} - dependencies: - stubborn-fs: 1.2.5 - when-exit: 2.1.3 + /atomically@1.7.0: + resolution: {integrity: sha512-Xcz9l0z7y9yQ9rdDaxlmaI4uJHf/T8g9hOEzJcsEqX2SjCj4J20uK7+ldkDHMbpJDK76wF7xEIgxc/vSlsfw5w==} + engines: {node: '>=10.12.0'} dev: false /autolinker@4.0.0: @@ -11771,19 +11760,20 @@ packages: typedarray: 0.0.6 dev: false - /conf@13.0.1: - resolution: {integrity: sha512-l9Uwc9eOnz39oADzGO2cSBDi7siv8lwO+31ocQ2nOJijnDiW3pxqm9VV10DPYUO28wW83DjABoUqY1nfHRR2hQ==} - engines: {node: '>=18'} + /conf@10.2.0: + resolution: {integrity: sha512-8fLl9F04EJqjSqH+QjITQfJF8BrOVaYr1jewVgSRAEWePfxT0sku4w2hrGQ60BC/TNLGQ2pgxNlTbWQmMPFvXg==} + engines: {node: '>=12'} dependencies: ajv: 8.17.1 - ajv-formats: 3.0.1 - atomically: 2.0.3 - debounce-fn: 6.0.0 - dot-prop: 9.0.0 - env-paths: 3.0.0 - json-schema-typed: 8.0.1 + ajv-formats: 2.1.1 + atomically: 1.7.0 + debounce-fn: 4.0.0 + dot-prop: 6.0.1 + env-paths: 2.2.1 + json-schema-typed: 7.0.3 + onetime: 5.1.2 + pkg-up: 3.1.0 semver: 7.6.3 - uint8array-extras: 1.4.0 dev: false /config-file-ts@0.2.6: @@ -12227,11 +12217,11 @@ packages: '@babel/runtime': 7.23.9 dev: false - /debounce-fn@6.0.0: - resolution: {integrity: sha512-rBMW+F2TXryBwB54Q0d8drNEI+TfoS9JpNTAoVpukbWEhjXQq4rySFYLaqXMFXwdv61Zb2OHtj5bviSoimqxRQ==} - engines: {node: '>=18'} + /debounce-fn@4.0.0: + resolution: {integrity: sha512-8pYCQiL9Xdcg0UPSD3d+0KMlOjp+KGU5EPwYddgzQ7DATsg4fuUDjQtsYLmWjnk2obnNHgV3vE2Y4jejSOJVBQ==} + engines: {node: '>=10'} dependencies: - mimic-function: 5.0.1 + mimic-fn: 3.1.0 dev: false /debounce@1.2.1: @@ -12714,11 +12704,11 @@ packages: tslib: 2.6.2 dev: false - /dot-prop@9.0.0: - resolution: {integrity: sha512-1gxPBJpI/pcjQhKgIU91II6Wkay+dLcN3M6rf2uwP8hRur3HtQXjVrdAK3sjC0piaEuxzMwjXChcETiJl47lAQ==} - engines: {node: '>=18'} + /dot-prop@6.0.1: + resolution: {integrity: sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==} + engines: {node: '>=10'} dependencies: - type-fest: 4.23.0 + is-obj: 2.0.0 dev: false /dotenv-defaults@2.0.2: @@ -12938,12 +12928,11 @@ packages: debug: 2.6.9 dev: false - /electron-store@10.0.0: - resolution: {integrity: sha512-BU/QZh+5twHBprRdLu3YZX/rIarmZzhTNpJvAvqG1/yN0mNCrsMh0kl7bM4xaUKDNRiHz1r7wP/7Prjh7cleIw==} - engines: {node: '>=20'} + /electron-store@8.2.0: + resolution: {integrity: sha512-ukLL5Bevdil6oieAOXz3CMy+OgaItMiVBg701MNlG6W5RaC0AHN7rvlqTCmeb6O7jP0Qa1KKYTE0xV0xbhF4Hw==} dependencies: - conf: 13.0.1 - type-fest: 4.23.0 + conf: 10.2.0 + type-fest: 2.19.0 dev: false /electron-to-chromium@1.4.679: @@ -13053,11 +13042,6 @@ packages: engines: {node: '>=6'} dev: false - /env-paths@3.0.0: - resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} - dev: false - /envinfo@7.11.1: resolution: {integrity: sha512-8PiZgZNIB4q/Lw4AhOvAfB/ityHAd2bli3lESSWmWSzSsl5dKpy5N1d1Rfkd2teq/g9xN90lc6o98DOjMeYHpg==} engines: {node: '>=4'} @@ -16009,6 +15993,11 @@ packages: engines: {node: '>=0.12.0'} dev: false + /is-obj@2.0.0: + resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==} + engines: {node: '>=8'} + dev: false + /is-path-cwd@2.2.0: resolution: {integrity: sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==} engines: {node: '>=6'} @@ -16224,7 +16213,7 @@ packages: '@babel/parser': 7.23.9 '@istanbuljs/schema': 0.1.3 istanbul-lib-coverage: 3.2.2 - semver: 7.6.0 + semver: 7.6.3 transitivePeerDependencies: - supports-color dev: false @@ -16907,8 +16896,8 @@ packages: resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} dev: false - /json-schema-typed@8.0.1: - resolution: {integrity: sha512-XQmWYj2Sm4kn4WeTYvmpKEbyPsL7nBsb647c7pMe6l02/yx2+Jfc4dT6UZkEXnIUb5LhD55r2HPsJ1milQ4rDg==} + /json-schema-typed@7.0.3: + resolution: {integrity: sha512-7DE8mpG+/fVw+dTpjbxnx47TaMnDfOI1jwft9g1VybltZCduyRQPJPvc+zzKY9WPHxhPWczyFuYa6I8Mw4iU5A==} dev: false /json-stable-stringify-without-jsonify@1.0.1: @@ -16961,7 +16950,7 @@ packages: lodash.isstring: 4.0.1 lodash.once: 4.1.1 ms: 2.1.3 - semver: 7.6.0 + semver: 7.6.3 dev: false /jsx-ast-utils@3.3.5: @@ -17537,7 +17526,7 @@ packages: resolution: {integrity: sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==} engines: {node: '>=10'} dependencies: - semver: 7.6.0 + semver: 7.6.3 dev: false /make-error@1.3.6: @@ -17759,16 +17748,16 @@ packages: engines: {node: '>=6'} dev: false + /mimic-fn@3.1.0: + resolution: {integrity: sha512-Ysbi9uYW9hFyfrThdDEQuykN4Ey6BuwPD2kpI5ES/nFTDn/98yxYNLZJcgUAKPT/mcrLLKaGzJR9YVxJrIdASQ==} + engines: {node: '>=8'} + dev: false + /mimic-fn@4.0.0: resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} engines: {node: '>=12'} dev: false - /mimic-function@5.0.1: - resolution: {integrity: sha512-VP79XUPxV2CigYP3jWwAUFSku2aKqBH7uTAapFWCBqutsbmDo96KY5o8uh6U+/YSIn5OxJnXp73beVkpqMIGhA==} - engines: {node: '>=18'} - dev: false - /mimic-response@1.0.1: resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==} engines: {node: '>=4'} @@ -18120,7 +18109,7 @@ packages: resolution: {integrity: sha512-uPEjtyh2tFEvWYt4Jw7McOD5FPcHkcxm/tHZc5PWaDB3JYq0rGFUbgaAK+CT5pYpQddBfsZVWI08OwoRfdfbcQ==} engines: {node: '>=10'} dependencies: - semver: 7.6.0 + semver: 7.6.3 dev: false /node-abort-controller@3.1.1: @@ -19044,6 +19033,13 @@ packages: find-up: 6.3.0 dev: false + /pkg-up@3.1.0: + resolution: {integrity: sha512-nDywThFk1i4BQK4twPQ6TA4RT8bDY96yeuCVBWL3ePARCiEKDRSrNGbFIgUJpLp+XeIR65v8ra7WuJOFUBtkMA==} + engines: {node: '>=8'} + dependencies: + find-up: 3.0.0 + dev: false + /playwright-core@1.41.2: resolution: {integrity: sha512-VaTvwCA4Y8kxEe+kfm2+uUUw5Lubf38RxF7FpBxLPmGe5sdNkSg5e3ChEigaGrX7qdqT3pt2m/98LiyvU2x6CA==} engines: {node: '>=16'} @@ -21284,10 +21280,6 @@ packages: peek-readable: 4.1.0 dev: false - /stubborn-fs@1.2.5: - resolution: {integrity: sha512-H2N9c26eXjzL/S/K+i/RHHcFanE74dptvvjM8iwzwbVcWY/zjBbgRqF3K0DY4+OD+uTTASTBvDoxPDaPN02D7g==} - dev: false - /style-loader@3.3.4(webpack@5.90.3): resolution: {integrity: sha512-0WqXzrsMTyb8yjZJHDqwmnwRJvhALK9LfRtRc6B4UTWe8AijYLZYZ9thuJTZc2VfQWINADW/j+LiJnfy2RoC1w==} engines: {node: '>= 12.13.0'} @@ -22342,11 +22334,6 @@ packages: resolution: {integrity: sha512-IevTus0SbGwQzYh3+fRsAMTVVPOoIVufzacXcHPmdlle1jUpq7BRL+mw3dgeLanvGZdwwbWhRV6XrcFNdBmjWA==} dev: false - /uint8array-extras@1.4.0: - resolution: {integrity: sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ==} - engines: {node: '>=18'} - dev: false - /unbox-primitive@1.0.2: resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} dependencies: @@ -23109,10 +23096,6 @@ packages: webidl-conversions: 3.0.1 dev: false - /when-exit@2.1.3: - resolution: {integrity: sha512-uVieSTccFIr/SFQdFWN/fFaQYmV37OKtuaGphMAzi4DmmUlrvRBJW5WSLkHyjNQY/ePJMz3LoiX9R3yy1Su6Hw==} - dev: false - /which-boxed-primitive@1.0.2: resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==} dependencies: @@ -23830,7 +23813,7 @@ packages: dev: false file:projects/analytics-service.tgz(@types/node@20.11.19)(esbuild@0.20.1)(ts-node@10.9.2): - resolution: {integrity: sha512-3hpPEwojBH/WARd3evdL3zOnOb9ygsuGRlKmPARpwJx3BV2iI/yapLa2vF7pZUSOZRNK+U3sfYNUGmjMUiV3PA==, tarball: file:projects/analytics-service.tgz} + resolution: {integrity: sha512-CNOxEi0TSwyscgxa3iTdWPASgNS0YwNXfS5L52nmlmi+Y2OH7N4wwOXS0BKyEuqYYkSMsEMArPfB5xYaYoNkJw==, tarball: file:projects/analytics-service.tgz} id: file:projects/analytics-service.tgz name: '@rush-temp/analytics-service' version: 0.0.0 @@ -25143,7 +25126,7 @@ packages: dev: false file:projects/desktop.tgz(bufferutil@4.0.8)(sass@1.71.1)(utf-8-validate@6.0.4): - resolution: {integrity: sha512-2edgvVz9CadWKo8x9QaO8UNcvjxSGilnSzeLzkV9ijegvq0HinqBqu4Q/sFmKKHMBXYc5ZNW3wJ+/2BGvEIMZw==, tarball: file:projects/desktop.tgz} + resolution: {integrity: sha512-ttUpcNZ8VKqQjGhZ6u9UwTTCOpXBKD8BC7CziczYCzKpTCjdwEJh9agnt8uJU6eETt57hJY2c8BU/aIESyYMZA==, tarball: file:projects/desktop.tgz} id: file:projects/desktop.tgz name: '@rush-temp/desktop' version: 0.0.0 @@ -25165,7 +25148,7 @@ packages: electron-context-menu: 4.0.1 electron-log: 5.1.7 electron-squirrel-startup: 1.0.1 - electron-store: 10.0.0 + electron-store: 8.2.0 electron-updater: 6.2.1 electron-windows-badge: 1.1.0 esbuild: 0.20.1 @@ -28496,7 +28479,7 @@ packages: dev: false file:projects/pod-account.tgz: - resolution: {integrity: sha512-yI2LfUu2SCsh/b97mSszloCkfnaZ0s0AllwwszhB5S3V6jJFzAcyhfX2Zw9y2XRbe2UOPMyISs16JrCFDI8Rog==, tarball: file:projects/pod-account.tgz} + resolution: {integrity: sha512-4GzxbT2fBrGb3XHE1U4rRqzn73jrkUyIaWJUsjDzDAYzmOGAUX3n+DplPLC3rPCql58F6XxniPQH25KcmLkkCw==, tarball: file:projects/pod-account.tgz} name: '@rush-temp/pod-account' version: 0.0.0 dependencies: @@ -28589,7 +28572,7 @@ packages: dev: false file:projects/pod-backup.tgz: - resolution: {integrity: sha512-kDZfttPxTuMHKyNcRqOBDuzJjR+H4DGGAFor6GvK4vNDRDHmw0vxFg8zkhDCSLgUAGaHIq/Xw8SxkADO1BKJQQ==, tarball: file:projects/pod-backup.tgz} + resolution: {integrity: sha512-K4zdP793+k9e7WeP7+suiK8gd/vTQftNronVzzMmx5qRRnqNJhqdY6QffMuYPzqEytxwmg+7T8MSfYEwPvlMJw==, tarball: file:projects/pod-backup.tgz} name: '@rush-temp/pod-backup' version: 0.0.0 dependencies: @@ -28686,7 +28669,7 @@ packages: dev: false file:projects/pod-collaborator.tgz: - resolution: {integrity: sha512-3qz7k9xtE0tZjr0MlSs062eI+X4WfPh+anTCA7btPShvsC+5GdSYBXxD5nCT4rO7klt7pCLfXMozSEJrIXTM2Q==, tarball: file:projects/pod-collaborator.tgz} + resolution: {integrity: sha512-ayRiefa0hytLnCUUVac5/YEwko1XSxpudTToOamTBxzFfXlwGdlK6D2gQMN/dNkbTG4Wc9KLzjlwDb4VXUkLmw==, tarball: file:projects/pod-collaborator.tgz} name: '@rush-temp/pod-collaborator' version: 0.0.0 dependencies: @@ -28719,7 +28702,7 @@ packages: dev: false file:projects/pod-front.tgz: - resolution: {integrity: sha512-dfeO6R4HILQ4+Z+sBAH3KAPWLOXtwCQjlaxfD9//EOAyiXBynRyGKJUgudkWm/iG0fpgfxdYogYzg2OyUjKtJg==, tarball: file:projects/pod-front.tgz} + resolution: {integrity: sha512-YkIJf+SF6JuDvwC0ANFW/F/DLjC7M/5vm+aXzIK/CJUnojLex6nCeyDNzLqfl0E3oecLOKz13pRHsDzgNHYAGQ==, tarball: file:projects/pod-front.tgz} name: '@rush-temp/pod-front' version: 0.0.0 dependencies: @@ -28766,7 +28749,7 @@ packages: dev: false file:projects/pod-github.tgz(bufferutil@4.0.8)(utf-8-validate@6.0.4)(y-prosemirror@1.2.2): - resolution: {integrity: sha512-WnIupxKJkkE/0F06plCcJxaijJf8mwN80v8tgb1hqkpNOB2BbBWdcDbFk0apeiASq7SiI22r16l7aZA2kAqjig==, tarball: file:projects/pod-github.tgz} + resolution: {integrity: sha512-RA87aZVbfB6BoGlJ19b/c8Hqd6Xc8T0VjxDw/cmrGWVBP5itbg/Vliquag/JsEXrqzRKr/c0WkNWB6lkr4ojSQ==, tarball: file:projects/pod-github.tgz} id: file:projects/pod-github.tgz name: '@rush-temp/pod-github' version: 0.0.0 diff --git a/desktop/package.json b/desktop/package.json index 707f7d7f5b9..cb1136e7c8f 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -203,7 +203,7 @@ "electron-windows-badge": "^1.1.0", "svelte": "^4.2.12", "commander": "^8.1.0", - "electron-store": "^10.0.0", + "electron-store": "^8.2.0", "electron-log": "^5.1.7", "electron-updater": "^6.2.1", "livekit-client": "^2.0.10" From cd868b8db8f6d73ffe54ccb56ed127e38122c383 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 29 Jul 2024 16:42:49 +0700 Subject: [PATCH 003/149] UBERF-7698: Fix backup Signed-off-by: Andrey Sobolev --- server/server/src/backup.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/server/src/backup.ts b/server/server/src/backup.ts index 11b4968b8ef..65d507dfc70 100644 --- a/server/server/src/backup.ts +++ b/server/server/src/backup.ts @@ -28,7 +28,7 @@ export class BackupClientSession extends ClientSession implements BackupSession async loadChunk (_ctx: ClientSessionCtx, domain: Domain, idx?: number, recheck?: boolean): Promise { this.lastRequest = Date.now() try { - const result = await this.ops.loadChunk(_ctx.ctx, domain) + const result = await this.ops.loadChunk(_ctx.ctx, domain, idx, recheck) await _ctx.sendResponse(result) } catch (err: any) { await _ctx.sendResponse({ error: err.message }) From e7b31803a0a18bddaf8aa54c3c4de7b7169710a3 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 30 Jul 2024 12:58:35 +0700 Subject: [PATCH 004/149] Fix maintenance period warning Signed-off-by: Andrey Sobolev --- .../src/components/ServerManagerGeneral.svelte | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/plugins/workbench-resources/src/components/ServerManagerGeneral.svelte b/plugins/workbench-resources/src/components/ServerManagerGeneral.svelte index 9ab69f43f22..6e2f40b2c3d 100644 --- a/plugins/workbench-resources/src/components/ServerManagerGeneral.svelte +++ b/plugins/workbench-resources/src/components/ServerManagerGeneral.svelte @@ -1,5 +1,5 @@ @@ -808,5 +826,17 @@ display: flex; justify-content: center; bottom: -0.75rem; + animation: 1s fadeIn; + animation-fill-mode: forwards; + visibility: hidden; + } + + @keyframes fadeIn { + 99% { + visibility: hidden; + } + 100% { + visibility: visible; + } } diff --git a/plugins/chunter-resources/src/components/chat/create/CreateChannel.svelte b/plugins/chunter-resources/src/components/chat/create/CreateChannel.svelte index 2c107044f07..67bea5688fc 100644 --- a/plugins/chunter-resources/src/components/chat/create/CreateChannel.svelte +++ b/plugins/chunter-resources/src/components/chat/create/CreateChannel.svelte @@ -63,8 +63,7 @@ await client.createDoc(notification.class.DocNotifyContext, channelId, { user: accountId, attachedTo: channelId, - attachedToClass: chunter.class.Channel, - hidden: false + attachedToClass: chunter.class.Channel }) openChannel(channelId, chunter.class.Channel) diff --git a/plugins/chunter-resources/src/components/chat/create/CreateDirectChat.svelte b/plugins/chunter-resources/src/components/chat/create/CreateDirectChat.svelte index 2660dc63256..4b64e245b05 100644 --- a/plugins/chunter-resources/src/components/chat/create/CreateDirectChat.svelte +++ b/plugins/chunter-resources/src/components/chat/create/CreateDirectChat.svelte @@ -81,7 +81,6 @@ }) if (context !== undefined) { - await client.diffUpdate(context, { hidden: false }) openChannel(dmId, chunter.class.DirectMessage) return @@ -90,8 +89,7 @@ await client.createDoc(notification.class.DocNotifyContext, dmId, { user: myAccId, attachedTo: dmId, - attachedToClass: chunter.class.DirectMessage, - hidden: false + attachedToClass: chunter.class.DirectMessage }) openChannel(dmId, chunter.class.DirectMessage) diff --git a/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte b/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte index a9f942d9aed..9d2a945af4a 100644 --- a/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte +++ b/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte @@ -55,7 +55,7 @@ notification.class.DocNotifyContext, { ...model.query, - hidden: false, + [`${chunter.mixin.ChannelInfo}.hidden`]: { $ne: true }, user: getCurrentAccount()._id }, (res: DocNotifyContext[]) => { diff --git a/plugins/chunter-resources/src/components/chat/navigator/ChatNavItem.svelte b/plugins/chunter-resources/src/components/chat/navigator/ChatNavItem.svelte index 62ade329912..a150169788b 100644 --- a/plugins/chunter-resources/src/components/chat/navigator/ChatNavItem.svelte +++ b/plugins/chunter-resources/src/components/chat/navigator/ChatNavItem.svelte @@ -128,6 +128,7 @@ {count} title={item.title} description={item.description} + secondaryNotifyMarker={(context?.lastViewedTimestamp ?? 0) < (context?.lastUpdateTimestamp ?? 0)} {actions} {type} on:click={() => { diff --git a/plugins/chunter-resources/src/components/chat/navigator/NavItem.svelte b/plugins/chunter-resources/src/components/chat/navigator/NavItem.svelte index a303b7326fa..59f3172d73c 100644 --- a/plugins/chunter-resources/src/components/chat/navigator/NavItem.svelte +++ b/plugins/chunter-resources/src/components/chat/navigator/NavItem.svelte @@ -35,6 +35,7 @@ export let isSelected: boolean = false export let isSecondary: boolean = false export let count: number | null = null + export let secondaryNotifyMarker: boolean = false export let title: string | undefined = undefined export let intlTitle: IntlString | undefined = undefined export let description: string | undefined = undefined @@ -99,6 +100,10 @@
+ {:else if secondaryNotifyMarker} +
+ +
{/if} diff --git a/plugins/chunter-resources/src/components/chat/utils.ts b/plugins/chunter-resources/src/components/chat/utils.ts index 176b04c653a..e0b47e8e73b 100644 --- a/plugins/chunter-resources/src/components/chat/utils.ts +++ b/plugins/chunter-resources/src/components/chat/utils.ts @@ -12,7 +12,7 @@ // See the License for the specific language governing permissions and // limitations under the License. // -import notification, { type DocNotifyContext, type InboxNotification } from '@hcengineering/notification' +import notification, { type DocNotifyContext } from '@hcengineering/notification' import { generateId, type Ref, @@ -353,8 +353,8 @@ function getActivityActions (contexts: DocNotifyContext[]): Action[] { } }, { - icon: view.icon.CheckCircle, - label: notification.string.ArchiveAll, + icon: view.icon.EyeCrossed, + label: view.string.Hide, action: async () => { archiveActivityChannels(contexts) } @@ -400,18 +400,18 @@ export function loadSavedAttachments (): void { } export async function removeActivityChannels (contexts: DocNotifyContext[]): Promise { - const client = InboxNotificationsClientImpl.getClient() - const notificationsByContext = get(client.inboxNotificationsByContext) const ops = getClient().apply(generateId(), 'removeActivityChannels') try { for (const context of contexts) { - const notifications = notificationsByContext.get(context._id) ?? [] - await client.archiveNotifications( - ops, - notifications.map(({ _id }: InboxNotification) => _id) - ) - await ops.remove(context) + await ops.createMixin(context._id, context._class, context.space, chunter.mixin.ChannelInfo, { hidden: true }) + } + const hidden = contexts.map(({ _id }) => _id) + const account = getCurrentAccount() as PersonAccount + const chatInfo = await ops.findOne(chunter.class.ChatInfo, { user: account.person }) + + if (chatInfo !== undefined) { + await ops.update(chatInfo, { hidden: chatInfo.hidden.concat(hidden) }) } } finally { await ops.commit() diff --git a/plugins/chunter-resources/src/utils.ts b/plugins/chunter-resources/src/utils.ts index bfa07e82900..17f6e655e72 100644 --- a/plugins/chunter-resources/src/utils.ts +++ b/plugins/chunter-resources/src/utils.ts @@ -35,10 +35,9 @@ import { type Timestamp, type WithLookup } from '@hcengineering/core' -import notification, { type DocNotifyContext, type InboxNotification } from '@hcengineering/notification' +import { type DocNotifyContext, type InboxNotification } from '@hcengineering/notification' import { InboxNotificationsClientImpl, - archiveContextNotifications, isActivityNotification, isMentionNotification } from '@hcengineering/notification-resources' @@ -343,7 +342,12 @@ export async function joinChannel (channel: Channel, value: Ref | Array } } -export async function leaveChannel (channel: Channel, value: Ref | Array>): Promise { +export async function leaveChannel ( + channel: Channel | undefined, + value: Ref | Array> +): Promise { + if (channel === undefined) return + const client = getClient() if (Array.isArray(value)) { @@ -351,10 +355,8 @@ export async function leaveChannel (channel: Channel, value: Ref | Arra await client.update(channel, { $pull: { members: { $in: value } } }) } } else { - const context = await client.findOne(notification.class.DocNotifyContext, { attachedTo: channel._id }) - await client.update(channel, { $pull: { members: value } }) - await removeChannelAction(context, undefined, { object: channel }) + await resetChunterLocIfEqual(channel._id, channel._class, channel) } } @@ -499,11 +501,27 @@ export async function removeChannelAction ( } const client = getClient() + const hierarchy = client.getHierarchy() + const inboxClient = InboxNotificationsClientImpl.getClient() - await archiveContextNotifications(context) - await client.remove(context) + if (hierarchy.isDerived(context.attachedToClass, chunter.class.Channel)) { + const channel = await client.findOne(chunter.class.Channel, { _id: context.attachedTo as Ref }) + await leaveChannel(channel, getCurrentAccount()._id) + } else { + const object = await client.findOne(context.attachedToClass, { _id: context.attachedTo }) + const account = getCurrentAccount() as PersonAccount + + await client.createMixin(context._id, context._class, context.space, chunter.mixin.ChannelInfo, { hidden: true }) + + const chatInfo = await client.findOne(chunter.class.ChatInfo, { user: account.person }) + + if (chatInfo !== undefined) { + await client.update(chatInfo, { hidden: chatInfo.hidden.concat([context._id]) }) + } + await resetChunterLocIfEqual(context.attachedTo, context.attachedToClass, object) + } - await resetChunterLocIfEqual(context.attachedTo, context.attachedToClass, props?.object) + void inboxClient.readDoc(client, context.attachedTo) } export function isThreadMessage (message: ActivityMessage): message is ThreadMessage { diff --git a/plugins/chunter/src/index.ts b/plugins/chunter/src/index.ts index 5f2d0ea03ce..f33f08c6cf3 100644 --- a/plugins/chunter/src/index.ts +++ b/plugins/chunter/src/index.ts @@ -15,11 +15,12 @@ import { ActivityMessage, ActivityMessageViewlet } from '@hcengineering/activity' import type { Class, Doc, Markup, Mixin, Ref, Space, Timestamp } from '@hcengineering/core' -import { NotificationType } from '@hcengineering/notification' +import { DocNotifyContext, NotificationType } from '@hcengineering/notification' import type { Asset, Plugin } from '@hcengineering/platform' import { IntlString, plugin } from '@hcengineering/platform' import { AnyComponent } from '@hcengineering/ui' import { Action } from '@hcengineering/view' +import { Person } from '@hcengineering/contact' /** * @public @@ -72,6 +73,16 @@ export interface ChatMessageViewlet extends ActivityMessageViewlet { label?: IntlString } +export interface ChatInfo extends Doc { + user: Ref + hidden: Ref[] + timestamp: Timestamp +} + +export interface ChannelInfo extends DocNotifyContext { + hidden: boolean +} + /** * @public */ @@ -110,10 +121,12 @@ export default plugin(chunterId, { Channel: '' as Ref>, DirectMessage: '' as Ref>, ChatMessage: '' as Ref>, - ChatMessageViewlet: '' as Ref> + ChatMessageViewlet: '' as Ref>, + ChatInfo: '' as Ref> }, mixin: { - ObjectChatPanel: '' as Ref> + ObjectChatPanel: '' as Ref>, + ChannelInfo: '' as Ref> }, string: { Reactions: '' as IntlString, diff --git a/plugins/notification-resources/src/components/NotificationPresenter.svelte b/plugins/notification-resources/src/components/NotificationPresenter.svelte index 73b12d421be..ceced3f77c8 100644 --- a/plugins/notification-resources/src/components/NotificationPresenter.svelte +++ b/plugins/notification-resources/src/components/NotificationPresenter.svelte @@ -27,7 +27,7 @@ $: notifyContext = $contextByDocStore.get(value._id) $: inboxNotifications = notifyContext ? $inboxNotificationsByContextStore.get(notifyContext._id) ?? [] : [] - $: hasNotification = !notifyContext?.hidden && inboxNotifications.some(({ isViewed }) => !isViewed) + $: hasNotification = inboxNotifications.some(({ isViewed }) => !isViewed) {#if hasNotification} diff --git a/plugins/notification-resources/src/components/NotifyMarker.svelte b/plugins/notification-resources/src/components/NotifyMarker.svelte index 4aa0781f65a..806f5149635 100644 --- a/plugins/notification-resources/src/components/NotifyMarker.svelte +++ b/plugins/notification-resources/src/components/NotifyMarker.svelte @@ -14,13 +14,14 @@ --> {#if count > 0} -
+
{#if count > maxNumber} {maxNumber}+ {:else} @@ -29,6 +30,10 @@
{/if} +{#if count === 0 && kind === 'secondary'} +
+{/if} + diff --git a/packages/ui/src/components/TimeLeft.svelte b/packages/ui/src/components/TimeLeft.svelte new file mode 100644 index 00000000000..1ca3d3e14ce --- /dev/null +++ b/packages/ui/src/components/TimeLeft.svelte @@ -0,0 +1,66 @@ + + + + +{#if displayTime > 0} + {getDisplayTime(displayTime)} +{/if} diff --git a/packages/ui/src/index.ts b/packages/ui/src/index.ts index 4b2e7dff345..c14bf31e7d7 100644 --- a/packages/ui/src/index.ts +++ b/packages/ui/src/index.ts @@ -265,6 +265,8 @@ export { default as SimpleTimePopup } from './components/calendar/SimpleTimePopu export { default as NumberInput } from './components/NumberInput.svelte' export { default as Lazy } from './components/Lazy.svelte' export { default as TimeZonesPopup } from './components/TimeZonesPopup.svelte' +export { default as CodeInput } from './components/CodeInput.svelte' +export { default as TimeLeft } from './components/TimeLeft.svelte' export { default as Dock } from './components/Dock.svelte' diff --git a/plugins/login-assets/lang/en.json b/plugins/login-assets/lang/en.json index 7cca47286e6..e627fc91d88 100644 --- a/plugins/login-assets/lang/en.json +++ b/plugins/login-assets/lang/en.json @@ -42,6 +42,20 @@ "ConfirmationSent": "A message has been sent to your email containing a link to confirm your address.", "ConfirmationSent2": "Please follow the link to complete your sign up.", "Slogan": "A unique place to manage all of your work\nWelcome to the Platform", - "ContinueWith": "Continue with {provider}" + "ContinueWith": "Continue with {provider}", + "HaventReceivedCode": "Haven't received the code?", + "ResendCode": "Resend code", + "WrongEmail": "Wrong email?", + "ChangeEmail": "Change email", + "SentTo": "We've sent a code to ", + "CanFindCode": "Can't find your code? Check your spam folder.", + "LoginWithPassword": "Login with password", + "LoginWithCode": "Login with code", + "FillInProfile": "Fill in your profile", + "SetUpPassword": "Set up your password", + "Next": "Next", + "Skip": "Skip", + "SignUpCompleted": "Sign up completed", + "StartUsingHuly": "Start using Huly" } } diff --git a/plugins/login-assets/lang/es.json b/plugins/login-assets/lang/es.json index d35c5df1de8..aa22e6039db 100644 --- a/plugins/login-assets/lang/es.json +++ b/plugins/login-assets/lang/es.json @@ -42,6 +42,20 @@ "ConfirmationSent": "Se ha enviado un mensaje a su correo electrónico con un enlace para confirmar su dirección.", "ConfirmationSent2": "Por favor, siga el enlace para completar su registro.", "Slogan": "Un lugar único para gestionar todo tu trabajo\nBienvenido/a a la Plataforma", - "ContinueWith": "Continuar com {provider}" + "ContinueWith": "Continuar com {provider}", + "HaventReceivedCode": "¿No has recibido el código?", + "ResendCode": "Reenviar código", + "WrongEmail": "¿Correo electrónico incorrecto?", + "ChangeEmail": "Cambiar correo electrónico", + "SentTo": "Hemos enviado un código a ", + "CanFindCode": "¿No encuentras tu código? Revisa tu", + "LoginWithPassword": "Iniciar sesión con contraseña", + "LoginWithCode": "Iniciar sesión con código", + "FillInProfile": "Rellena tu perfil", + "SetUpPassword": "Establecer tu contraseña", + "Next": "Siguiente", + "Skip": "Saltar", + "SignUpCompleted": "Registro completado", + "StartUsingHuly": "Comienza a usar Huly" } } \ No newline at end of file diff --git a/plugins/login-assets/lang/fr.json b/plugins/login-assets/lang/fr.json index cc6f25cbd61..f9831f3053d 100644 --- a/plugins/login-assets/lang/fr.json +++ b/plugins/login-assets/lang/fr.json @@ -42,6 +42,20 @@ "ConfirmationSent": "Un message a été envoyé à votre adresse e-mail contenant un lien pour confirmer votre adresse.", "ConfirmationSent2": "Veuillez suivre le lien pour compléter votre inscription.", "Slogan": "Un lieu unique pour gérer tout votre travail\nBienvenue sur la plateforme", - "ContinueWith": "Continuer avec {provider}" + "ContinueWith": "Continuer avec {provider}", + "HaventReceivedCode": "Vous n'avez pas reçu le code ?", + "ResendCode": "Renvoyer le code", + "WrongEmail": "Mauvaise adresse e-mail ?", + "ChangeEmail": "Changer l'adresse e-mail", + "SentTo": "Nous avons envoyé un code à ", + "CanFindCode": "Vous ne trouvez pas votre code ? Vérifiez votre", + "LoginWithPassword": "Connexion avec mot de passe", + "LoginWithCode": "Connexion avec code", + "FillInProfile": "Remplissez votre profil", + "SetUpPassword": "Définir votre mot de passe", + "Next": "Suivant", + "Skip": "Passer", + "SignUpCompleted": "Inscription terminée", + "StartUsingHuly": "Commencez à utiliser Huly" } } \ No newline at end of file diff --git a/plugins/login-assets/lang/pt.json b/plugins/login-assets/lang/pt.json index 3b3e4cfde28..244e29c3d1f 100644 --- a/plugins/login-assets/lang/pt.json +++ b/plugins/login-assets/lang/pt.json @@ -42,6 +42,20 @@ "ConfirmationSent": "Foi enviada uma mensagem para o seu email contendo um link para confirmar o seu endereço.", "ConfirmationSent2": "Por favor, siga o link para concluir o seu registo.", "Slogan": "Um local único para gerir todo o seu trabalho\nBem-vindo à Plataforma", - "ContinueWith": "Continuar com {provider}" + "ContinueWith": "Continuar com {provider}", + "HaventReceivedCode": "Não recebeu o código?", + "ResendCode": "Reenviar código", + "WrongEmail": "Email errado?", + "ChangeEmail": "Alterar email", + "SentTo": "Enviamos um código para ", + "CanFindCode": "Não encontra o seu código? Verifique a sua pasta de spam.", + "LoginWithPassword": "Iniciar sessão com palavra-passe", + "LoginWithCode": "Iniciar sessão com código", + "FillInProfile": "Preencha o seu perfil", + "SetUpPassword": "Definir a sua palavra-passe", + "Next": "Seguinte", + "Skip": "Saltar", + "SignUpCompleted": "Registo concluído", + "StartUsingHuly": "Começar a usar Huly" } } \ No newline at end of file diff --git a/plugins/login-assets/lang/ru.json b/plugins/login-assets/lang/ru.json index 9e8a36c6442..81122907706 100644 --- a/plugins/login-assets/lang/ru.json +++ b/plugins/login-assets/lang/ru.json @@ -42,6 +42,20 @@ "ConfirmationSent": "На Вашу почту отправлено сообщение, c ссылкой для подтверждения email.", "ConfirmationSent2": "Пожалуйста, перейдите по ссылке для завершения регистрации.", "Slogan": "Уникальное место для организации всей вашей работы\nДобро пожаловать в Платформу", - "ContinueWith": "Войти через {provider}" + "ContinueWith": "Войти через {provider}", + "HaventReceivedCode": "Не получили код?", + "ResendCode": "Отправить код повторно", + "WrongEmail": "Неверный email?", + "ChangeEmail": "Изменить email", + "SentTo": "Мы отправили код на ", + "CanFindCode": "Не нашли код? Проверьте папку со спамом.", + "LoginWithPassword": "Войти с паролем", + "LoginWithCode": "Войти с кодом", + "FillInProfile": "Заполните профиль", + "SetUpPassword": "Установите пароль", + "Next": "Дальше", + "Skip": "Пропустить", + "SignUpCompleted": "Регистрация завершена", + "StartUsingHuly": "Начать использовать Huly" } } diff --git a/plugins/login-assets/lang/zh.json b/plugins/login-assets/lang/zh.json index 750816f4854..9c7a2ca8f02 100644 --- a/plugins/login-assets/lang/zh.json +++ b/plugins/login-assets/lang/zh.json @@ -42,6 +42,20 @@ "ConfirmationSent": "已发送确认邮件到您的邮箱,包含一个确认地址的链接。", "ConfirmationSent2": "请点击链接完成注册。", "Slogan": "一个独特的地方来管理你所有的工作\n欢迎来到平台", - "ContinueWith": "继续使用 {provider}" + "ContinueWith": "继续使用 {provider}", + "HaventReceivedCode": "没有收到验证码?", + "ResendCode": "重新发送验证码", + "WrongEmail": "错误的电子邮件?", + "ChangeEmail": "更改电子邮件", + "SentTo": "我们已发送验证码到 ", + "CanFindCode": "找不到验证码?请检查您的垃圾邮件文件夹。", + "LoginWithPassword": "使用密码登录", + "LoginWithCode": "使用代码登录", + "FillInProfile": "填写您的个人资料", + "SetUpPassword": "设置您的密码", + "Next": "下一个", + "Skip": "跳过", + "SignUpCompleted": "注册完成", + "StartUsingHuly": "开始使用 Huly" } } diff --git a/plugins/login-resources/src/components/Auth.svelte b/plugins/login-resources/src/components/Auth.svelte index 8755bf9e83a..56b4fbf7a0c 100644 --- a/plugins/login-resources/src/components/Auth.svelte +++ b/plugins/login-resources/src/components/Auth.svelte @@ -5,7 +5,7 @@ import { Loading, setMetadataLocalStorage } from '@hcengineering/ui' import { onMount } from 'svelte' import login from '../plugin' - import { afterConfirm, getSessionLoginInfo, navigateToWorkspace } from '../utils' + import { afterConfirm, getSessionLoginInfo, goTo, navigateToWorkspace } from '../utils' onMount(async () => { const result = await getSessionLoginInfo() @@ -18,7 +18,9 @@ setMetadataLocalStorage(login.metadata.LastToken, result.token) setMetadataLocalStorage(login.metadata.LoginEndpoint, result.endpoint) setMetadataLocalStorage(login.metadata.LoginEmail, result.email) - await afterConfirm() + await afterConfirm('onboard') + } else { + goTo('login') } }) diff --git a/plugins/login-resources/src/components/BottomAction.svelte b/plugins/login-resources/src/components/BottomAction.svelte new file mode 100644 index 00000000000..1d8d5e02c1e --- /dev/null +++ b/plugins/login-resources/src/components/BottomAction.svelte @@ -0,0 +1,45 @@ + + + + +
+ {#if action.caption} + + {/if} + {#if action.page} + + {:else} + + {/if} +
+ + diff --git a/plugins/login-resources/src/components/CreateWorkspaceForm.svelte b/plugins/login-resources/src/components/CreateWorkspaceForm.svelte index 305ba8ce66f..0b1d99e773c 100644 --- a/plugins/login-resources/src/components/CreateWorkspaceForm.svelte +++ b/plugins/login-resources/src/components/CreateWorkspaceForm.svelte @@ -14,14 +14,13 @@ // limitations under the License. --> @@ -150,28 +138,7 @@ }} > {#if loginState !== 'none'} - + {:else} {#if subtitle !== undefined}
@@ -234,14 +201,7 @@ {#if bottomActions.length} {/if} @@ -258,28 +218,6 @@ font-size: 1.25rem; color: var(--theme-caption-color); } - .caption a { - padding-bottom: 0.375rem; - border-bottom: 2px solid var(--theme-caption-color); - - &:not(.selected) { - color: var(--theme-dark-color); - border-bottom-color: transparent; - - &:hover { - color: var(--theme-caption-color); - } - } - &.selected { - cursor: default; - } - &:first-child { - margin-right: 1.75rem; - } - &:hover { - text-decoration: none; - } - } .status { padding-top: 1rem; grid-column-start: 1; diff --git a/plugins/login-resources/src/components/Join.svelte b/plugins/login-resources/src/components/Join.svelte index 902325ee639..d97080cd1a0 100644 --- a/plugins/login-resources/src/components/Join.svelte +++ b/plugins/login-resources/src/components/Join.svelte @@ -13,20 +13,13 @@ // limitations under the License. --> -
+{#if method === LoginMethods.Otp} + +
+ +
+{:else} + +
+ +
+{/if} + + diff --git a/plugins/login-resources/src/components/LoginOtpForm.svelte b/plugins/login-resources/src/components/LoginOtpForm.svelte new file mode 100644 index 00000000000..1782cc1d761 --- /dev/null +++ b/plugins/login-resources/src/components/LoginOtpForm.svelte @@ -0,0 +1,67 @@ + + + +{#if step === OtpLoginSteps.Email} + +{/if} + +{#if step === OtpLoginSteps.Otp && formData.username !== ''} + +{/if} diff --git a/plugins/login-resources/src/components/LoginPasswordForm.svelte b/plugins/login-resources/src/components/LoginPasswordForm.svelte new file mode 100644 index 00000000000..d5ac9c37a52 --- /dev/null +++ b/plugins/login-resources/src/components/LoginPasswordForm.svelte @@ -0,0 +1,68 @@ + + + + diff --git a/plugins/login-resources/src/components/OnboardForm.svelte b/plugins/login-resources/src/components/OnboardForm.svelte new file mode 100644 index 00000000000..333d14a7f7d --- /dev/null +++ b/plugins/login-resources/src/components/OnboardForm.svelte @@ -0,0 +1,91 @@ + + + +{#if account} + {#if step === OnboardSteps.Workspace} + + {:else if step === OnboardSteps.User} + + {:else if step === OnboardSteps.Finish} + + {/if} +{/if} diff --git a/plugins/login-resources/src/components/OnboardUserForm.svelte b/plugins/login-resources/src/components/OnboardUserForm.svelte new file mode 100644 index 00000000000..6627b788feb --- /dev/null +++ b/plugins/login-resources/src/components/OnboardUserForm.svelte @@ -0,0 +1,67 @@ + + + + { + dispatch('step') + } + } + ]} +/> diff --git a/plugins/login-resources/src/components/OnboardWorkspaceForm.svelte b/plugins/login-resources/src/components/OnboardWorkspaceForm.svelte new file mode 100644 index 00000000000..6429ad3f9be --- /dev/null +++ b/plugins/login-resources/src/components/OnboardWorkspaceForm.svelte @@ -0,0 +1,52 @@ + + + + diff --git a/plugins/login-resources/src/components/OtpForm.svelte b/plugins/login-resources/src/components/OtpForm.svelte new file mode 100644 index 00000000000..a5890f766aa --- /dev/null +++ b/plugins/login-resources/src/components/OtpForm.svelte @@ -0,0 +1,326 @@ + + + + + 720 ? '42rem' : '0'} +> +
+ +
+
+
+ +
+ {#each fields as field, index (field.name)} + {#if index === 3} +
+ {/if} +
+ { + trim(field.name) + }} + /> +
+ {/each} +
+ + + +
+ +
+ + + diff --git a/plugins/login-resources/src/components/Tabs.svelte b/plugins/login-resources/src/components/Tabs.svelte new file mode 100644 index 00000000000..0b90eb28d97 --- /dev/null +++ b/plugins/login-resources/src/components/Tabs.svelte @@ -0,0 +1,82 @@ + + + + + + + diff --git a/plugins/login-resources/src/index.ts b/plugins/login-resources/src/index.ts index 608a0a03a8c..01df18ea8f9 100644 --- a/plugins/login-resources/src/index.ts +++ b/plugins/login-resources/src/index.ts @@ -61,16 +61,33 @@ export const pages = [ 'join', 'confirm', 'confirmationSend', - 'auth' + 'auth', + 'login-password', + 'onboard' ] as const +export enum OnboardSteps { + Workspace = 'workspace', + User = 'user', + Finish = 'finish' +} + +export enum OtpLoginSteps { + Email = 'email', + Otp = 'otp' +} + +export enum LoginMethods { + Password = 'password', + Otp = 'otp' +} export type Pages = (typeof pages)[number] export interface BottomAction { i18n: IntlString page?: Pages func: () => void - caption: IntlString + caption?: IntlString } export * from './utils' diff --git a/plugins/login-resources/src/plugin.ts b/plugins/login-resources/src/plugin.ts index ce3cb0265c4..ded18a5d425 100644 --- a/plugins/login-resources/src/plugin.ts +++ b/plugins/login-resources/src/plugin.ts @@ -59,6 +59,20 @@ export default mergeIds(loginId, login, { ConfirmationSent: '' as IntlString, ConfirmationSent2: '' as IntlString, Slogan: '' as IntlString, - ContinueWith: '' as IntlString + ContinueWith: '' as IntlString, + HaventReceivedCode: '' as IntlString, + ResendCode: '' as IntlString, + WrongEmail: '' as IntlString, + ChangeEmail: '' as IntlString, + SentTo: '' as IntlString, + CanFindCode: '' as IntlString, + LoginWithCode: '' as IntlString, + LoginWithPassword: '' as IntlString, + FillInProfile: '' as IntlString, + SetUpPassword: '' as IntlString, + Next: '' as IntlString, + Skip: '' as IntlString, + SignUpCompleted: '' as IntlString, + StartUsingHuly: '' as IntlString } }) diff --git a/plugins/login-resources/src/utils.ts b/plugins/login-resources/src/utils.ts index 584016f7c5e..07e71ffe8be 100644 --- a/plugins/login-resources/src/utils.ts +++ b/plugins/login-resources/src/utils.ts @@ -14,8 +14,8 @@ // import { Analytics } from '@hcengineering/analytics' -import { AccountRole, concatLink, type Doc, type Ref } from '@hcengineering/core' -import login, { loginId, type LoginInfo, type Workspace, type WorkspaceLoginInfo } from '@hcengineering/login' +import { AccountRole, type Doc, type Ref, concatLink } from '@hcengineering/core' +import { loginId, type LoginInfo, type OtpInfo, type Workspace, type WorkspaceLoginInfo } from '@hcengineering/login' import { OK, PlatformError, @@ -24,7 +24,8 @@ import { translate, unknownError, unknownStatus, - type Status + Status, + Severity } from '@hcengineering/platform' import presentation from '@hcengineering/presentation' import { @@ -37,6 +38,8 @@ import { type Location } from '@hcengineering/ui' import { workbenchId } from '@hcengineering/workbench' + +import login from './plugin' import { type Pages } from './index' /** @@ -117,6 +120,40 @@ export async function signUp ( } } +export async function signUpOtp (email: string): Promise<[Status, OtpInfo | undefined]> { + const accountsUrl = getMetadata(login.metadata.AccountsUrl) + + if (accountsUrl === undefined) { + throw new Error('accounts url not specified') + } + + const request = { + method: 'signUpOtp', + params: [email] + } + + try { + const response = await fetch(accountsUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify(request) + }) + const result = await response.json() + if (result.error == null) { + Analytics.handleEvent('signUpOtp') + Analytics.setUser(email) + } else { + await handleStatusError('Sign up error', result.error) + } + return [result.error ?? OK, result.result] + } catch (err: any) { + Analytics.handleError(err) + return [unknownError(err), undefined] + } +} + export async function createWorkspace ( workspaceName: string ): Promise<[Status, (LoginInfo & { workspace: string }) | undefined]> { @@ -376,6 +413,9 @@ export function setLoginInfo (loginInfo: WorkspaceLoginInfo): void { const tokens: Record = fetchMetadataLocalStorage(login.metadata.LoginTokens) ?? {} tokens[loginInfo.workspace] = loginInfo.token + setMetadata(presentation.metadata.Token, loginInfo.token) + setMetadataLocalStorage(login.metadata.LastToken, loginInfo.token) + setMetadataLocalStorage(login.metadata.LoginTokens, tokens) setMetadataLocalStorage(login.metadata.LoginEndpoint, loginInfo.endpoint) setMetadataLocalStorage(login.metadata.LoginEmail, loginInfo.email) @@ -627,6 +667,36 @@ export async function changePassword (oldPassword: string, password: string): Pr } } +export async function changeUsername (first: string, last: string): Promise { + const accountsUrl = getMetadata(login.metadata.AccountsUrl) + + if (accountsUrl === undefined) { + throw new Error('accounts url not specified') + } + + const token = getMetadata(presentation.metadata.Token) as string + + const request = { + method: 'changeUsername', + params: [first, last] + } + + const response = await fetch(accountsUrl, { + method: 'POST', + headers: { + Authorization: 'Bearer ' + token, + 'Content-Type': 'application/json' + }, + body: JSON.stringify(request) + }) + const resp = await response.json() + if (resp.error !== undefined) { + const err = new PlatformError(resp.error) + Analytics.handleError(err) + throw err + } +} + export async function leaveWorkspace (email: string): Promise { const accountsUrl = getMetadata(login.metadata.AccountsUrl) @@ -802,20 +872,16 @@ export function getHref (path: Pages): string { return host + url } -export async function afterConfirm (): Promise { +export async function afterConfirm (wspage: 'onboard' | 'createWorkspace' = 'createWorkspace'): Promise { const joinedWS = await getWorkspaces() if (joinedWS.length === 0) { - goTo('createWorkspace') + goTo(wspage) } else if (joinedWS.length === 1) { const result = (await selectWorkspace(joinedWS[0].workspace, null))[1] if (result !== undefined) { setMetadata(presentation.metadata.Token, result.token) setMetadataLocalStorage(login.metadata.LastToken, result.token) - setMetadataLocalStorage(login.metadata.LoginEndpoint, result.endpoint) - setMetadataLocalStorage(login.metadata.LoginEmail, result.email) - const tokens: Record = fetchMetadataLocalStorage(login.metadata.LoginTokens) ?? {} - tokens[result.workspace] = result.token - setMetadataLocalStorage(login.metadata.LoginTokens, tokens) + setLoginInfo(result) navigateToWorkspace(joinedWS[0].workspace, result) } @@ -866,3 +932,124 @@ export async function getProviders (): Promise { } return [] } + +export async function sendOtp (email: string): Promise<[Status, OtpInfo | undefined]> { + const accountsUrl = getMetadata(login.metadata.AccountsUrl) + + if (accountsUrl === undefined) { + throw new Error('accounts url not specified') + } + + const request = { + method: 'sendOtp', + params: [email] + } + + try { + const response = await fetch(accountsUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify(request) + }) + const result = await response.json() + + if (result.error == null) { + Analytics.handleEvent('sendOtp') + Analytics.setUser(email) + } else { + await handleStatusError('Send otp error', result.error) + } + return [result.error ?? OK, result.result] + } catch (err: any) { + console.error('Send otp error', err) + Analytics.handleError(err) + return [unknownError(err), undefined] + } +} + +export async function loginWithOtp (email: string, otp: string): Promise<[Status, LoginInfo | undefined]> { + const accountsUrl = getMetadata(login.metadata.AccountsUrl) + + if (accountsUrl === undefined) { + throw new Error('accounts url not specified') + } + + const request = { + method: 'validateOtp', + params: [email, otp] + } + + try { + const response = await fetch(accountsUrl, { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify(request) + }) + const result = await response.json() + + if (result.error == null) { + Analytics.handleEvent('loginWithOtp') + Analytics.setUser(email) + } else { + await handleStatusError('Login with otp error', result.error) + } + return [result.error ?? OK, result.result] + } catch (err: any) { + console.error('Login with otp error', err) + Analytics.handleError(err) + return [unknownError(err), undefined] + } +} + +export async function doLoginNavigate ( + result: LoginInfo | undefined, + updateStatus: (status: Status) => void, + navigateUrl?: string +): Promise { + if (result !== undefined) { + setMetadata(presentation.metadata.Token, result.token) + setMetadataLocalStorage(login.metadata.LastToken, result.token) + setMetadataLocalStorage(login.metadata.LoginEndpoint, result.endpoint) + setMetadataLocalStorage(login.metadata.LoginEmail, result.email) + + if (navigateUrl !== undefined) { + try { + const loc = JSON.parse(decodeURIComponent(navigateUrl)) as Location + const workspace = loc.path[1] + if (workspace !== undefined) { + const workspaces = await getWorkspaces() + if (workspaces.find((p) => p.workspace === workspace) !== undefined) { + updateStatus(new Status(Severity.INFO, login.status.ConnectingToServer, {})) + + const [loginStatus, result] = await selectWorkspace(workspace, undefined) + updateStatus(loginStatus) + navigateToWorkspace(workspace, result, navigateUrl) + return + } + } + } catch (err: any) { + // Json parse error could be ignored + } + } + const loc = getCurrentLocation() + loc.path[1] = result.confirmed ? 'selectWorkspace' : 'confirmationSend' + loc.path.length = 2 + if (navigateUrl !== undefined) { + loc.query = { ...loc.query, navigateUrl } + } + navigate(loc) + } +} + +export async function ensureConfirmed (account: LoginInfo): Promise { + if (!account.confirmed) { + const loc = getCurrentLocation() + loc.path[1] = 'confirmationSend' + loc.path.length = 2 + navigate(loc) + } +} diff --git a/plugins/login/src/index.ts b/plugins/login/src/index.ts index ebcda0d5719..c30a30b73c8 100644 --- a/plugins/login/src/index.ts +++ b/plugins/login/src/index.ts @@ -13,7 +13,7 @@ // limitations under the License. // -import { AccountRole, Doc, Ref } from '@hcengineering/core' +import { AccountRole, Doc, Ref, Timestamp } from '@hcengineering/core' import type { Asset, IntlString, Metadata, Plugin, Resource, Status } from '@hcengineering/platform' import { plugin } from '@hcengineering/platform' import type { AnyComponent } from '@hcengineering/ui' @@ -56,6 +56,11 @@ export interface LoginInfo { email: string } +export interface OtpInfo { + sent: boolean + retryOn: Timestamp +} + export default plugin(loginId, { metadata: { AccountsUrl: '' as Asset, diff --git a/pods/authProviders/package.json b/pods/authProviders/package.json index ea9f4063114..beca9b14b9d 100644 --- a/pods/authProviders/package.json +++ b/pods/authProviders/package.json @@ -48,6 +48,7 @@ "mongodb": "^6.8.0", "@hcengineering/core": "^0.6.32", "@hcengineering/account": "^0.6.0", + "passport-custom": "~1.1.1", "passport-google-oauth20": "~2.0.0", "passport-github2": "~0.1.12", "koa-passport": "^6.0.0", diff --git a/pods/authProviders/src/index.ts b/pods/authProviders/src/index.ts index b83ee7fa994..ae35c64fb4f 100644 --- a/pods/authProviders/src/index.ts +++ b/pods/authProviders/src/index.ts @@ -5,6 +5,7 @@ import session from 'koa-session' import { Db } from 'mongodb' import { registerGithub } from './github' import { registerGoogle } from './google' +import { registerToken } from './token' import { BrandingMap, MeasureContext } from '@hcengineering/core' export type Passport = typeof passport @@ -59,6 +60,8 @@ export function registerProviders ( }) }) + registerToken(ctx, passport, router, accountsUrl, db, productId, frontUrl, brandings) + const res: string[] = [] const providers: AuthProvider[] = [registerGoogle, registerGithub] for (const provider of providers) { diff --git a/pods/authProviders/src/token.ts b/pods/authProviders/src/token.ts new file mode 100644 index 00000000000..727844f7d1f --- /dev/null +++ b/pods/authProviders/src/token.ts @@ -0,0 +1,65 @@ +import { getAccountInfoByToken } from '@hcengineering/account' +import { BrandingMap, concatLink, MeasureContext } from '@hcengineering/core' +import Router from 'koa-router' +import { Db } from 'mongodb' +import { Strategy as CustomStrategy } from 'passport-custom' +import { Passport } from '.' +import { getBranding, getHost, safeParseAuthState } from './utils' + +export function registerToken ( + measureCtx: MeasureContext, + passport: Passport, + router: Router, + accountsUrl: string, + db: Db, + productId: string, + frontUrl: string, + brandings: BrandingMap +): string | undefined { + passport.use( + 'token', + new CustomStrategy(function (req: any, done: any) { + const token = req.body.token ?? req.query.token + + getAccountInfoByToken(measureCtx, db, productId, null, token) + .then((user: any) => done(null, user)) + .catch((err: any) => done(err)) + }) + ) + + router.get( + '/auth/token', + async (ctx, next) => { + measureCtx.info('try auth via', { provider: 'token' }) + const host = getHost(ctx.request.headers) + const branding = host !== undefined ? brandings[host]?.key ?? undefined : undefined + const state = encodeURIComponent( + JSON.stringify({ + inviteId: ctx.query?.inviteId, + branding + }) + ) + + await passport.authenticate('token', { session: true, state })(ctx, next) + }, + async (ctx, next) => { + measureCtx.info('Provider auth success', { type: 'token', user: ctx.state?.user }) + const user = ctx.state.user + if (user !== undefined) { + const state = safeParseAuthState(ctx.query?.state) + const branding = getBranding(brandings, state?.branding) + + if (ctx.session != null) { + ctx.session.loginInfo = user + } + + measureCtx.info('Success auth, redirect', { email: user.email, type: 'token' }) + // Successful authentication, redirect to your application + ctx.redirect(concatLink(branding?.front ?? frontUrl, '/login/auth')) + } + await next() + } + ) + + return 'token' +} diff --git a/qms-tests/sanity/tests/login/registration.spec.ts b/qms-tests/sanity/tests/login/registration.spec.ts index 7091c1dc331..61ce18ecf89 100644 --- a/qms-tests/sanity/tests/login/registration.spec.ts +++ b/qms-tests/sanity/tests/login/registration.spec.ts @@ -82,6 +82,7 @@ test.describe('Registration tests', () => { await allure.tms('TESTS-396', 'https://front.hc.engineering/workbench/platform/tracker/TESTS-396') await test.step('1. Try to login with wrong password', async () => { const loginPage = new LoginPage(page) + await loginPage.loginWithPassword.click() await loginPage.login('user1', 'wrongPassword') await loginPage.checkIfUserIsLoggedIn('wrong-password') }) @@ -93,6 +94,7 @@ test.describe('Registration tests', () => { await allure.tms('TESTS-397', 'https://front.hc.engineering/workbench/platform/tracker/TESTS-397') await test.step('1. Try to login with wrong email', async () => { const loginPage = new LoginPage(page) + await loginPage.loginWithPassword.click() await loginPage.login('wrongEmail', '1234') await loginPage.checkIfUserIsLoggedIn('wrong-email') }) @@ -104,6 +106,7 @@ test.describe('Registration tests', () => { await allure.tms('TESTS-398', 'https://front.hc.engineering/workbench/platform/tracker/TESTS-397') await test.step('1. Try to login with working credentials', async () => { const loginPage = new LoginPage(page) + await loginPage.loginWithPassword.click() await loginPage.login('user1', '1234') await loginPage.checkIfUserIsLoggedIn('correct-credentials') }) diff --git a/qms-tests/sanity/tests/model/login-page.ts b/qms-tests/sanity/tests/model/login-page.ts index 53f299fbcf0..44ff560641b 100644 --- a/qms-tests/sanity/tests/model/login-page.ts +++ b/qms-tests/sanity/tests/model/login-page.ts @@ -7,6 +7,7 @@ export class LoginPage { readonly inputPassword: Locator readonly buttonLogin: Locator readonly buttonSignUp: Locator + readonly loginWithPassword: Locator constructor (page: Page) { this.page = page @@ -14,6 +15,7 @@ export class LoginPage { this.inputPassword = page.locator('input[name=current-password]') this.buttonLogin = page.locator('button', { hasText: 'Log In' }) this.buttonSignUp = page.locator('a.title', { hasText: 'Sign Up' }) + this.loginWithPassword = page.locator('a', { hasText: 'Login with password' }) } async goto (): Promise { diff --git a/server/account-service/src/index.ts b/server/account-service/src/index.ts index 5a6b2292199..0f1468e09e6 100644 --- a/server/account-service/src/index.ts +++ b/server/account-service/src/index.ts @@ -8,8 +8,9 @@ import account, { UpgradeWorker, accountId, cleanInProgressWorkspaces, - getAllTransactors, - getMethods + getMethods, + cleanExpiredOtp, + getAllTransactors } from '@hcengineering/account' import accountEn from '@hcengineering/account/lang/en.json' import accountRu from '@hcengineering/account/lang/ru.json' @@ -88,6 +89,8 @@ export function serveAccount ( setMetadata(account.metadata.Transactors, transactorUri) setMetadata(platform.metadata.locale, lang) setMetadata(account.metadata.ProductName, productName) + setMetadata(account.metadata.OtpTimeToLiveSec, parseInt(process.env.OTP_TIME_TO_LIVE ?? '60')) + setMetadata(account.metadata.OtpRetryDelaySec, parseInt(process.env.OTP_RETRY_DELAY ?? '60')) setMetadata(account.metadata.SES_URL, ses) setMetadata(account.metadata.FrontURL, frontURL) @@ -105,10 +108,17 @@ export function serveAccount ( let client: MongoClient | Promise = MongoClient.connect(dbUri) + let worker: UpgradeWorker | undefined + const app = new Koa() const router = new Router() - let worker: UpgradeWorker | undefined + app.use( + cors({ + credentials: true + }) + ) + app.use(bodyParser()) void client.then(async (p: MongoClient) => { const db = p.db(ACCOUNT_DB) @@ -117,6 +127,13 @@ export function serveAccount ( // We need to clean workspace with creating === true, since server is restarted. void cleanInProgressWorkspaces(db, productId) + setInterval( + () => { + void cleanExpiredOtp(db) + }, + 3 * 60 * 1000 + ) + const performUpgrade = (process.env.PERFORM_UPGRADE ?? 'true') === 'true' if (performUpgrade) { await measureCtx.with('upgrade-all-models', {}, async (ctx) => { @@ -241,12 +258,6 @@ export function serveAccount ( ctx.body = result }) - app.use( - cors({ - credentials: true - }) - ) - app.use(bodyParser()) app.use(router.routes()).use(router.allowedMethods()) const server = app.listen(ACCOUNT_PORT, () => { diff --git a/server/account/lang/en.json b/server/account/lang/en.json index 5fa6f847b19..ee8d655aa6e 100644 --- a/server/account/lang/en.json +++ b/server/account/lang/en.json @@ -8,6 +8,9 @@ "RecoverySubject": "Password recovery", "InviteText": "You were invited to {ws}. To join, please paste the following link into your browser's URL bar: {link}. The link is valid for {expHours} hours.", "InviteHTML": "

You were invited to {ws}. To join, please click the link below: Join

If the invite link above does not work, paste the following link into your browser's URL bar: {link}

The link is valid for {expHours} hours.

", - "InviteSubject": "Invitation to {ws}" + "InviteSubject": "Invitation to {ws}", + "OtpText": "Confirm your email address to access {app}!\n\nYour confirmation code is below - enter it in the window where you've started signing in for {app}.\n\n{code}\n\nIf you didn’t request this email, there’s nothing to worry about — you can safely ignore it.", + "OtpHTML": "

Confirm your email address to access {app}!

Your confirmation code is below - enter it in the window where you've started signing in for {app}.


{code}

If you didn’t request this email, there’s nothing to worry about — you can safely ignore it.

", + "OtpSubject": "{app} confirmation code: {code}" } } diff --git a/server/account/lang/es.json b/server/account/lang/es.json index 62d9e310b9d..ae44c223e00 100644 --- a/server/account/lang/es.json +++ b/server/account/lang/es.json @@ -8,6 +8,9 @@ "RecoverySubject": "Recuperación de Contraseña", "InviteText": "Te invitaron a {ws}. Para unirte, pega el siguiente enlace en la barra de URL de tu navegador web: {link}. Enlace válido por {expHours} horas.", "InviteHTML": "

Te invitaron a {ws}. Para unirte, haz clic en el enlace a continuación: Unirse

Si el enlace de invitación anterior no funciona, pega el siguiente enlace en la barra de URL de tu navegador web: {link}

Enlace válido por {expHours} horas.

", - "InviteSubject": "Invitación a {ws}" + "InviteSubject": "Invitación a {ws}", + "OtpText": "¡Confirma tu dirección de correo electrónico para acceder a {app}!\n\nTu código de confirmación está a continuación: ingrésalo en la ventana donde iniciaste sesión en {app}.\n\n{code}\n\nSi no solicitaste este correo electrónico, no hay de qué preocuparse; puedes ignorarlo con seguridad.", + "OtpHTML": "

¡Confirma tu dirección de correo electrónico para acceder a {app}!

Tu código de confirmación está a continuación: ingrésalo en la ventana donde iniciaste sesión en {app}.


{code}

Si no solicitaste este correo electrónico, no hay de qué preocuparse; puedes ignorarlo con seguridad.

", + "OtpSubject": "Código de confirmación de {app}: {code}" } } \ No newline at end of file diff --git a/server/account/lang/fr.json b/server/account/lang/fr.json index 3a492c7a555..768924413c5 100644 --- a/server/account/lang/fr.json +++ b/server/account/lang/fr.json @@ -8,6 +8,9 @@ "RecoverySubject": "Réinitialisation du mot de passe", "InviteText": "Vous avez été invité à {ws}. Pour rejoindre, veuillez coller le lien suivant dans la barre d'adresse de votre navigateur web : {link}. Le lien est valable pendant {expHours} heures.", "InviteHTML": "

Vous avez été invité à {ws}. Pour rejoindre, veuillez cliquer sur le lien ci-dessous : Rejoindre

Si le lien d'invitation ci-dessus ne fonctionne pas, collez le lien suivant dans la barre d'adresse de votre navigateur web : {link}

Le lien est valable pendant {expHours} heures.

", - "InviteSubject": "Invitation à {ws}" + "InviteSubject": "Invitation à {ws}", + "OtpText": "Confirmez votre adresse e-mail pour accéder à {app}!\n\nVotre code de confirmation est ci-dessous - entrez-le dans la fenêtre où vous avez commencé à vous connecter pour {app}.\n\n{code}\n\nSi vous n'avez pas demandé cet e-mail, ne vous inquiétez pas - vous pouvez l'ignorer en toute sécurité.", + "OtpHTML": "

Confirmez votre adresse e-mail pour accéder à {app}!

Votre code de confirmation est ci-dessous - entrez-le dans la fenêtre où vous avez commencé à vous connecter pour {app}.


{code}

Si vous n'avez pas demandé cet e-mail, ne vous inquiétez pas - vous pouvez l'ignorer en toute sécurité.

", + "OtpSubject": "Code de confirmation {app} : {code}" } } \ No newline at end of file diff --git a/server/account/lang/pt.json b/server/account/lang/pt.json index 07c8b313ac9..aa7f066f42f 100644 --- a/server/account/lang/pt.json +++ b/server/account/lang/pt.json @@ -8,6 +8,9 @@ "RecoverySubject": "Recuperação de Senha", "InviteText": "Foi convidado para {ws}. Para se juntar, cole o seguinte link na barra de URL do seu navegador web: {link}. Link válido por {expHours} horas.", "InviteHTML": "

Foi convidado para {ws}. Para se juntar, clique no link abaixo: Juntar-se

Se o link de convite acima não funcionar, cole o seguinte link na barra de URL do seu navegador web: {link}

Link válido por {expHours} horas.

", - "InviteSubject": "Convite para {ws}" + "InviteSubject": "Convite para {ws}", + "OtpText": "Confirme o seu endereço de email para aceder a {app}!\n\nO seu código de confirmação está abaixo - introduza-o na janela onde começou a iniciar sessão para {app}.\n\n{code}\n\nSe não solicitou este email, não há motivo para preocupação - pode ignorá-lo com segurança.", + "OtpHTML": "

Confirme o seu endereço de email para aceder a {app}!

O seu código de confirmação está abaixo - introduza-o na janela onde começou a iniciar sessão para {app}.


{code}

Se não solicitou este email, não há motivo para preocupação - pode ignorá-lo com segurança.

", + "OtpSubject": "Código de confirmação {app}: {code}" } } \ No newline at end of file diff --git a/server/account/lang/ru.json b/server/account/lang/ru.json index e73fa43877b..335393704da 100644 --- a/server/account/lang/ru.json +++ b/server/account/lang/ru.json @@ -8,6 +8,9 @@ "RecoverySubject": "Восстановление пароля", "InviteText": "Вы были приглашены в {ws}. Чтобы присоединиться, пожалуйста, скопируйте ссылку ниже в адресную строку вашего браузера: {link}. Ссылка действительна в течение {expHours} ч.", "InviteHTML": "

Вы были приглашены в {ws}. Чтобы присоединиться, пожалуйста, скопируйте ссылку ниже в адресную строку вашего браузера: Присоединиться

Если ссылка выше не работает, скопируйте следующую ссылку в адресную строку вашего браузера: {link}

Ссылка действительна в течение {expHours} ч.

", - "InviteSubjectRU": "Приглашение в {ws}" + "InviteSubjectRU": "Приглашение в {ws}", + "OtpText": "Подтвердите адрес электронной почты для доступа к {app}!\n\nВаш код подтверждения ниже - введите его в окне, где вы начали входить в {app}.\n\n{code}\n\nЕсли вы не запрашивали это письмо, не беспокойтесь - вы можете спокойно проигнорировать его.", + "OtpHTML": "

Подтвердите адрес электронной почты для доступа к {app}!

Ваш код подтверждения ниже - введите его в окне, где вы начали входить в {app}.


{code}

Если вы не запрашивали это письмо, не беспокойтесь - вы можете спокойно проигнорировать его.

", + "OtpSubject": "Код подтверждения {app}: {code}" } } \ No newline at end of file diff --git a/server/account/lang/zh.json b/server/account/lang/zh.json index ddc619792d1..94df548e1bb 100644 --- a/server/account/lang/zh.json +++ b/server/account/lang/zh.json @@ -8,6 +8,9 @@ "RecoverySubject": "密码恢复", "InviteText": "您被邀请加入 {ws}。要加入,请将以下链接粘贴到您的浏览器地址栏中:{link}。链接有效期为 {expHours} 小时。", "InviteHTML": "

您被邀请加入 {ws}。要加入,请点击以下链接:加入

如果上面的邀请链接不起作用,请将以下链接粘贴到您的浏览器地址栏中:{link}

链接有效期为 {expHours} 小时。

", - "InviteSubject": "邀请加入 {ws}" + "InviteSubject": "邀请加入 {ws}", + "OtpText": "确认您的电子邮件地址以访问 {app}!\n\n您的确认码如下 - 请在您开始登录 {app} 的窗口中输入。\n\n{code}\n\n如果您没有请求此邮件,不用担心 — 您可以放心地忽略它。", + "OtpHTML": "

确认您的电子邮件地址以访问 {app}!

您的确认码如下 - 请在您开始登录 {app} 的窗口中输入。


{code}

如果您没有请求此邮件,不用担心 — 您可以放心地忽略它。

", + "OtpSubject": "{app} 确认码:{code}" } } diff --git a/server/account/package.json b/server/account/package.json index 4d7dd3d1173..f5ebc3a1256 100644 --- a/server/account/package.json +++ b/server/account/package.json @@ -36,7 +36,8 @@ "@types/node-fetch": "~2.6.2", "jest": "^29.7.0", "ts-jest": "^29.1.1", - "@types/jest": "^29.5.5" + "@types/jest": "^29.5.5", + "@types/otp-generator": "^4.0.2" }, "dependencies": { "mongodb": "^6.8.0", @@ -45,6 +46,7 @@ "@hcengineering/contact": "^0.6.24", "@hcengineering/client-resources": "^0.6.27", "@hcengineering/client": "^0.6.18", + "otp-generator": "^4.0.1", "ws": "^8.18.0", "@hcengineering/model": "^0.6.11", "@hcengineering/server-backup": "^0.6.0", diff --git a/server/account/src/operations.ts b/server/account/src/operations.ts index 7dc9540e028..d883f64ae8d 100644 --- a/server/account/src/operations.ts +++ b/server/account/src/operations.ts @@ -45,6 +45,7 @@ import core, { Version, versionToString, WorkspaceId, + Timestamp, WorkspaceIdWithUrl, type Branding } from '@hcengineering/core' @@ -62,6 +63,7 @@ import toolPlugin, { import { pbkdf2Sync, randomBytes } from 'crypto' import { Binary, Db, Filter, ObjectId, type MongoClient } from 'mongodb' import fetch from 'node-fetch' +import otpGenerator from 'otp-generator' import { DummyFullTextAdapter, Pipeline, @@ -76,10 +78,12 @@ import { registerServerPlugins, registerStringLoaders } from '@hcengineering/server-pipeline' + import { accountPlugin } from './plugin' const WORKSPACE_COLLECTION = 'workspace' const ACCOUNT_COLLECTION = 'account' +const OTP_COLLECTION = 'otp' const INVITE_COLLECTION = 'invite' /** * @public @@ -200,6 +204,18 @@ export interface Workspace extends BaseWorkspaceInfo { transactor?: string // Transactor group name } +export interface OtpRecord { + account: ObjectId + otp: string + expires: Timestamp + createdOn: Timestamp +} + +export interface OtpInfo { + sent: boolean + retryOn: Timestamp +} + /** * @public */ @@ -343,7 +359,36 @@ async function getAccountInfo ( return toAccountInfo(account) } -async function getAccountInfoByToken ( +async function sendOtpEmail (branding: Branding | null, otp: string, email: string): Promise { + const sesURL = getMetadata(accountPlugin.metadata.SES_URL) + if (sesURL === undefined || sesURL === '') { + console.info('Please provide email service url to enable email otp.') + return + } + + const lang = branding?.language + const app = branding?.title ?? getMetadata(accountPlugin.metadata.ProductName) + + const text = await translate(accountPlugin.string.OtpText, { code: otp, app }, lang) + const html = await translate(accountPlugin.string.OtpHTML, { code: otp, app }, lang) + const subject = await translate(accountPlugin.string.OtpSubject, { code: otp, app }, lang) + + const to = email + await fetch(concatLink(sesURL, '/send'), { + method: 'POST', + headers: { + 'Content-Type': 'application/json' + }, + body: JSON.stringify({ + text, + html, + subject, + to + }) + }) +} + +export async function getAccountInfoByToken ( ctx: MeasureContext, db: Db, productId: string, @@ -409,6 +454,117 @@ export async function login ( } } +async function getNewOtp (db: Db): Promise { + let otp = otpGenerator.generate(6, { + upperCaseAlphabets: false, + lowerCaseAlphabets: false, + specialChars: false + }) + + let exist = await db.collection(OTP_COLLECTION).findOne({ otp }) + + while (exist != null) { + otp = otpGenerator.generate(6, { + lowerCaseAlphabets: false + }) + exist = await db.collection(OTP_COLLECTION).findOne({ otp }) + } + + return otp +} + +export async function sendOtp ( + ctx: MeasureContext, + db: Db, + productId: string, + branding: Branding | null, + _email: string +): Promise { + const email = cleanEmail(_email) + const account = await getAccount(db, email) + + if (account == null) { + throw new PlatformError(new Status(Severity.ERROR, platform.status.AccountNotFound, { account: email })) + } + + const now = Date.now() + const otpData = ( + await db + .collection(OTP_COLLECTION) + .find({ account: account._id }) + .sort({ createdOn: -1 }) + .limit(1) + .toArray() + )[0] + + const retryDelay = getMetadata(accountPlugin.metadata.OtpRetryDelaySec) ?? 30 + const isValid = otpData !== undefined && otpData.expires > now && otpData.createdOn + retryDelay * 1000 > now + + if (isValid) { + return { sent: true, retryOn: otpData.createdOn + retryDelay * 1000 } + } + const secs = getMetadata(accountPlugin.metadata.OtpTimeToLiveSec) ?? 60 + const timeToLive = secs * 1000 + const expires = now + timeToLive + const otp = await getNewOtp(db) + + await sendOtpEmail(branding, otp, email) + await db.collection(OTP_COLLECTION).insertOne({ account: account._id, otp, expires, createdOn: now }) + + return { sent: true, retryOn: now + retryDelay * 1000 } +} + +async function isOtpValid (db: Db, account: Account, otp: string): Promise { + const now = Date.now() + const otpData = (await db.collection(OTP_COLLECTION).findOne({ account: account._id, otp })) ?? undefined + + return otpData !== undefined && otpData.expires > now +} + +export async function validateOtp ( + ctx: MeasureContext, + db: Db, + productId: string, + branding: Branding | null, + _email: string, + otp: string +): Promise { + const email = cleanEmail(_email) + const account = await getAccount(db, email) + + if (account == null) { + throw new PlatformError(new Status(Severity.ERROR, platform.status.AccountNotFound, { account: email })) + } + + const isValid = await isOtpValid(db, account, otp) + + if (!isValid) { + throw new PlatformError(new Status(Severity.ERROR, platform.status.InvalidOtp, {})) + } + + try { + const info = toAccountInfo(account) + + if (account.confirmed !== true) { + await db.collection(ACCOUNT_COLLECTION).updateOne({ _id: account._id }, { $set: { confirmed: true } }) + } + + const result = { + endpoint: '', + email, + confirmed: true, + token: generateToken(email, getWorkspaceId('', productId), getExtra(info)) + } + await db.collection(OTP_COLLECTION).deleteMany({ account: account._id }) + ctx.info('otp login success', { email, productId }) + return result + } catch (err: any) { + Analytics.handleError(err) + ctx.error('otp login failed', { email, productId, _email, err }) + throw err + } +} + /** * Will add extra props */ @@ -824,6 +980,25 @@ export async function createAccount ( return result } +/** + * @public + */ +export async function signUpOtp ( + ctx: MeasureContext, + db: Db, + productId: string, + branding: Branding | null, + _email: string +): Promise { + const email = cleanEmail(_email) + const first = email.split('@', 1)[0] ?? '' + const last = '' + + await createAcc(ctx, db, productId, branding, email, null, first, last, false) + + return await sendOtp(ctx, db, productId, branding, _email) +} + /** * @public */ @@ -894,6 +1069,10 @@ export async function cleanInProgressWorkspaces (db: Db, productId: string): Pro } } +export async function cleanExpiredOtp (db: Db): Promise { + await db.collection(OTP_COLLECTION).deleteMany({ expires: { $lte: Date.now() } }) +} + /** * @public */ @@ -2425,6 +2604,29 @@ export async function loginWithProvider ( } } +/** + * @public + */ +export async function changeUsername ( + ctx: MeasureContext, + db: Db, + productId: string, + branding: Branding | null, + token: string, + first: string, + last: string +): Promise { + const { email } = decodeToken(token) + const account = await getAccount(db, email) + + if (account == null) { + throw new PlatformError(new Status(Severity.ERROR, platform.status.AccountNotFound, { account: email })) + } + + await db.collection(ACCOUNT_COLLECTION).updateOne({ _id: account._id }, { $set: { first, last } }) + ctx.info('change-username success', { email }) +} + /** * @public */ @@ -2436,6 +2638,9 @@ export function getMethods ( return { login: wrap(login), join: wrap(join), + sendOtp: wrap(sendOtp), + validateOtp: wrap(validateOtp), + signUpOtp: wrap(signUpOtp), checkJoin: wrap(checkJoin), signUpJoin: wrap(signUpJoin), selectWorkspace: wrap(selectWorkspace), @@ -2455,7 +2660,8 @@ export function getMethods ( sendInvite: wrap(sendInvite), confirm: wrap(confirm), getAccountInfoByToken: wrap(getAccountInfoByToken), - createMissingEmployee: wrap(createMissingEmployee) + createMissingEmployee: wrap(createMissingEmployee), + changeUsername: wrap(changeUsername) // updateAccount: wrap(updateAccount) } } diff --git a/server/account/src/plugin.ts b/server/account/src/plugin.ts index 56c110535f7..f00ee30afb6 100644 --- a/server/account/src/plugin.ts +++ b/server/account/src/plugin.ts @@ -13,7 +13,9 @@ export const accountPlugin = plugin(accountId, { FrontURL: '' as Metadata, SES_URL: '' as Metadata, ProductName: '' as Metadata, - Transactors: '' as Metadata + Transactors: '' as Metadata, + OtpTimeToLiveSec: '' as Metadata, + OtpRetryDelaySec: '' as Metadata }, string: { ConfirmationText: '' as IntlString, @@ -24,6 +26,9 @@ export const accountPlugin = plugin(accountId, { RecoverySubject: '' as IntlString, InviteText: '' as IntlString, InviteHTML: '' as IntlString, - InviteSubject: '' as IntlString + InviteSubject: '' as IntlString, + OtpText: '' as IntlString, + OtpHTML: '' as IntlString, + OtpSubject: '' as IntlString } }) diff --git a/tests/sanity/tests/login.spec.ts b/tests/sanity/tests/login.spec.ts index 82e1ed1374c..5805bc7d74a 100644 --- a/tests/sanity/tests/login.spec.ts +++ b/tests/sanity/tests/login.spec.ts @@ -38,11 +38,14 @@ test.describe('login test', () => { test('check if user is able to go to to recovery, then login and then signup', async ({ page }) => { await checkIfUrlContains(page, '/login') await loginPage.checkIfLoginButtonIsDissaabled() + await loginPage.loginWithPassword().click() + await loginPage.checkIfLoginButtonIsDissaabled() await loginPage.clickOnRecover() await checkIfUrlContains(page, '/password') await loginPage.checkIfPasswordRecoveryIsVisible() await loginPage.clickOnRecoveryLogin() await checkIfUrlContains(page, '/login') + await loginPage.loginWithPassword().click() await loginPage.checkIfLoginButtonIsDissaabled() await loginPage.clickOnRecover() await loginPage.clickOnRecoverySignUp() diff --git a/tests/sanity/tests/model/login-page.ts b/tests/sanity/tests/model/login-page.ts index b76fb095914..17a5c7e8194 100644 --- a/tests/sanity/tests/model/login-page.ts +++ b/tests/sanity/tests/model/login-page.ts @@ -11,6 +11,7 @@ export class LoginPage { inputEmail = (): Locator => this.page.locator('input[name=email]') inputPassword = (): Locator => this.page.locator('input[name=current-password]') buttonLogin = (): Locator => this.page.locator('button', { hasText: 'Log In' }) + loginWithPassword = (): Locator => this.page.locator('a', { hasText: 'Login with password' }) linkSignUp = (): Locator => this.page.locator('a.title', { hasText: 'Sign Up' }) invalidPasswordMessage = (): Locator => this.page.getByText('Invalid password') recoverLink = (): Locator => this.page.getByRole('link', { name: 'Recover' }) @@ -42,6 +43,7 @@ export class LoginPage { } async login (email: string, password: string): Promise { + await this.loginWithPassword().click() await this.inputEmail().fill(email) await this.inputPassword().fill(password) expect(await this.buttonLogin().isEnabled()).toBe(true) From 51ae72b5cbf2b1abb47f89b7d5952e148db596ec Mon Sep 17 00:00:00 2001 From: Denis Bykhov Date: Tue, 30 Jul 2024 12:49:50 +0500 Subject: [PATCH 014/149] Front version (#6181) Signed-off-by: Denis Bykhov --- common/scripts/show_tag.js | 31 ++++++++++++++++++++++ desktop-package/package.json | 8 +++--- desktop-package/scripts/publish-version.sh | 2 +- desktop/package.json | 12 ++++----- desktop/src/main/start.ts | 5 ++-- desktop/src/ui/platform.ts | 6 ++++- desktop/src/ui/preload.ts | 3 ++- desktop/src/ui/types.ts | 1 + desktop/webpack.config.js | 3 ++- dev/prod/public/config.json | 5 ++-- dev/prod/src/platform.ts | 7 ++++- packages/presentation/src/plugin.ts | 3 ++- plugins/guest-resources/src/connect.ts | 14 ++++++++-- plugins/workbench-resources/src/connect.ts | 14 ++++++++-- pods/front/package.json | 4 +-- server/front/src/index.ts | 2 ++ server/front/src/starter.ts | 7 +++++ 17 files changed, 101 insertions(+), 26 deletions(-) create mode 100644 common/scripts/show_tag.js diff --git a/common/scripts/show_tag.js b/common/scripts/show_tag.js new file mode 100644 index 00000000000..4d405ce6f2b --- /dev/null +++ b/common/scripts/show_tag.js @@ -0,0 +1,31 @@ +// +// Copyright © 2024 Hardcore Engineering Inc. +// +// Licensed under the Eclipse Public License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. You may +// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// +// See the License for the specific language governing permissions and +// limitations under the License. +// + +const exec = require('child_process').exec + +exec('git describe --tags --abbrev=0', (err, stdout, stderr) => { + if (err !== null) { + console.log('"0.6.0"') + } + const rawVersion = stdout.trim().replace('v', '').split('.') + if (rawVersion.length === 3) { + const version = { + major: parseInt(rawVersion[0]), + minor: parseInt(rawVersion[1]), + patch: parseInt(rawVersion[2]) + } + console.log(`"${version.major}.${version.minor}.${version.patch}"`) + } +}) diff --git a/desktop-package/package.json b/desktop-package/package.json index 4285b1a0b57..0b7e3cb98df 100644 --- a/desktop-package/package.json +++ b/desktop-package/package.json @@ -7,10 +7,10 @@ "scripts": { "_phase:package": "rushx package", "package": "rushx bump && rm -rf ./dist && cp -r ../desktop/dist . && cp ../desktop/.env ./dist && echo 'done'", - "dist": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build -p onTag", - "dist-local": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build", - "dist-signed": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=true NODE_ENV=production MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build -c.afterSign=scripts/notarize.js -p onTag", - "dist-mac-win": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build --windows --x64", + "dist": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build -p onTag", + "dist-local": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build", + "dist-signed": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=true NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build -c.afterSign=scripts/notarize.js -p onTag", + "dist-mac-win": "cross-env CSC_IDENTITY_AUTO_DISCOVERY=false NODE_ENV=production VERSION=$(node ../common/scripts/show_tag.js) MODEL_VERSION=$(node ../common/scripts/show_version.js) electron-builder build --windows --x64", "format": "echo done", "bump": "bump-package-version" }, diff --git a/desktop-package/scripts/publish-version.sh b/desktop-package/scripts/publish-version.sh index 06fabf74b45..3bc113c3a72 100755 --- a/desktop-package/scripts/publish-version.sh +++ b/desktop-package/scripts/publish-version.sh @@ -1,7 +1,7 @@ #!/bin/bash endpoint=https://47fadbaa4ecbea9f3e8b7043a4584e27.r2.cloudflarestorage.com bucket=desktop-distro -rawVersion=$(node common/scripts/show_version.js) +rawVersion=$(node common/scripts/show_tag.js) version=${rawVersion:1:${#rawVersion}-2} cd desktop-package/deploy diff --git a/desktop/package.json b/desktop/package.json index cb1136e7c8f..6314c15e049 100644 --- a/desktop/package.json +++ b/desktop/package.json @@ -8,12 +8,12 @@ "build:watch": "tsc", "_phase:package": "rushx package", "_phase:validate": "compile validate", - "package": "rushx bump && cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) NODE_ENV=production webpack --stats-error-details && echo 'done'", - "webpack": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) NODE_ENV=development webpack --stats-error-details --progress -w", - "devp": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) NODE_ENV=production CLIENT_TYPE=dev webpack --progress -w", - "dev": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) NODE_ENV=development webpack --progress -w", - "start": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) NODE_ENV=production electron .", - "start-dev": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) NODE_ENV=development electron .", + "package": "rushx bump && cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) VERSION=$(node ../common/scripts/show_tag.js) NODE_ENV=production webpack --stats-error-details && echo 'done'", + "webpack": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) VERSION=$(node ../common/scripts/show_tag.js) NODE_ENV=development webpack --stats-error-details --progress -w", + "devp": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) VERSION=$(node ../common/scripts/show_tag.js) NODE_ENV=production CLIENT_TYPE=dev webpack --progress -w", + "dev": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) VERSION=$(node ../common/scripts/show_tag.js) NODE_ENV=development webpack --progress -w", + "start": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) VERSION=$(node ../common/scripts/show_tag.js) NODE_ENV=production electron .", + "start-dev": "cross-env MODEL_VERSION=$(node ../common/scripts/show_version.js) VERSION=$(node ../common/scripts/show_tag.js) NODE_ENV=development electron .", "format": "format", "bump": "bump-package-version" }, diff --git a/desktop/src/main/start.ts b/desktop/src/main/start.ts index 55d410dadec..71b035ebd72 100644 --- a/desktop/src/main/start.ts +++ b/desktop/src/main/start.ts @@ -73,7 +73,7 @@ if (require('electron-squirrel-startup') === true) { app.quit() } -console.log('Running Huly', process.env.MODEL_VERSION, isMac, isDev, process.env.NODE_ENV) +console.log('Running Huly', process.env.MODEL_VERSION, process.env.VERSION, isMac, isDev, process.env.NODE_ENV) function hookOpenWindow (window: BrowserWindow): void { window.webContents.setWindowOpenHandler(({ url }) => { @@ -226,7 +226,8 @@ ipcMain.handle('get-main-config', (event, path) => { CONFIG_URL: process.env.CONFIG_URL ?? '', FRONT_URL, INITIAL_URL: process.env.INITIAL_URL ?? '', - MODEL_VERSION: process.env.MODEL_VERSION ?? '' + MODEL_VERSION: process.env.MODEL_VERSION ?? '', + VERSION: process.env.VERSION ?? '', } return cfg }) diff --git a/desktop/src/ui/platform.ts b/desktop/src/ui/platform.ts index 6b3085f3d97..8006d2a9e97 100644 --- a/desktop/src/ui/platform.ts +++ b/desktop/src/ui/platform.ts @@ -211,7 +211,11 @@ export async function configurePlatform (): Promise { if (config.MODEL_VERSION != null) { console.log('Minimal Model version requirement', config.MODEL_VERSION) - setMetadata(presentation.metadata.RequiredVersion, config.MODEL_VERSION) + setMetadata(presentation.metadata.ModelVersion, config.MODEL_VERSION) + } + if (config.VERSION != null) { + console.log('Minimal version requirement', config.VERSION) + setMetadata(presentation.metadata.FrontVersion, config.VERSION) } setMetadata(telegram.metadata.TelegramURL, config.TELEGRAM_URL ?? 'http://localhost:8086') setMetadata(gmail.metadata.GmailURL, config.GMAIL_URL ?? 'http://localhost:8087') diff --git a/desktop/src/ui/preload.ts b/desktop/src/ui/preload.ts index 357cf71dec0..164457e2961 100644 --- a/desktop/src/ui/preload.ts +++ b/desktop/src/ui/preload.ts @@ -47,7 +47,8 @@ const expose: IPCMainExposed = { ...mainConfig, INITIAL_URL: openArg ?? '', UPLOAD_URL: concatLink(mainConfig.FRONT_URL, serverConfig.UPLOAD_URL), - MODEL_VERSION: mainConfig.MODEL_VERSION + MODEL_VERSION: mainConfig.MODEL_VERSION, + VERSION: mainConfig.VERSION } ipcRenderer.send('set-combined-config', combinedConfig) diff --git a/desktop/src/ui/types.ts b/desktop/src/ui/types.ts index d87eec04663..36abe5d6873 100644 --- a/desktop/src/ui/types.ts +++ b/desktop/src/ui/types.ts @@ -10,6 +10,7 @@ export interface Config { FRONT_URL: string UPLOAD_URL: string MODEL_VERSION?: string + VERSION?: string TELEGRAM_URL: string GMAIL_URL: string CALENDAR_URL: string diff --git a/desktop/webpack.config.js b/desktop/webpack.config.js index 0e33fac985a..d1712c5b2b4 100644 --- a/desktop/webpack.config.js +++ b/desktop/webpack.config.js @@ -67,7 +67,8 @@ module.exports = [ ...(doValidate ? [new ForkTsCheckerWebpackPlugin()] : []), new Dotenv({ path: prod ? '.env' : '.env-dev' }), new DefinePlugin({ - 'process.env.MODEL_VERSION': JSON.stringify(process.env.MODEL_VERSION) + 'process.env.MODEL_VERSION': JSON.stringify(process.env.MODEL_VERSION), + 'process.env.VERSION': JSON.stringify(process.env.VERSION) }) ], module: { diff --git a/dev/prod/public/config.json b/dev/prod/public/config.json index 1630beba51f..97c6971b9bb 100644 --- a/dev/prod/public/config.json +++ b/dev/prod/public/config.json @@ -3,7 +3,6 @@ "COLLABORATOR_URL": "ws://localhost:3078", "COLLABORATOR_API_URL": "http://localhost:3078", "UPLOAD_URL":"/files", - "MODEL_VERSION": null, "TELEGRAM_URL": "http://localhost:8086", "GMAIL_URL": "http://localhost:8088", "CALENDAR_URL": "http://localhost:8095", @@ -15,5 +14,7 @@ "PRINT_URL": "http://localhost:4005", "SIGN_URL": "http://localhost:4006", "ANALYTICS_COLLECTOR_URL": "http://localhost:4077", - "BRANDING_URL": "/branding.json" + "BRANDING_URL": "/branding.json", + "VERSION": "0.6.266", + "MODEL_VERSION": "0.6.266" } \ No newline at end of file diff --git a/dev/prod/src/platform.ts b/dev/prod/src/platform.ts index d1fef250a0e..f6f301c85f5 100644 --- a/dev/prod/src/platform.ts +++ b/dev/prod/src/platform.ts @@ -120,6 +120,7 @@ export interface Config { ACCOUNTS_URL: string UPLOAD_URL: string MODEL_VERSION: string + VERSION: string COLLABORATOR_URL: string COLLABORATOR_API_URL: string REKONI_URL: string @@ -291,7 +292,11 @@ export async function configurePlatform() { if (config.MODEL_VERSION != null) { console.log('Minimal Model version requirement', config.MODEL_VERSION) - setMetadata(presentation.metadata.RequiredVersion, config.MODEL_VERSION) + setMetadata(presentation.metadata.ModelVersion, config.MODEL_VERSION) + } + if (config.VERSION != null) { + console.log('Minimal version requirement', config.VERSION) + setMetadata(presentation.metadata.FrontVersion, config.VERSION) } setMetadata(telegram.metadata.TelegramURL, config.TELEGRAM_URL ?? 'http://localhost:8086') setMetadata(gmail.metadata.GmailURL, config.GMAIL_URL ?? 'http://localhost:8087') diff --git a/packages/presentation/src/plugin.ts b/packages/presentation/src/plugin.ts index d081075e852..05efb3e1168 100644 --- a/packages/presentation/src/plugin.ts +++ b/packages/presentation/src/plugin.ts @@ -126,7 +126,8 @@ export default plugin(presentationId, { FilePreviewExtension: '' as ComponentExtensionId }, metadata: { - RequiredVersion: '' as Metadata, + ModelVersion: '' as Metadata, + FrontVersion: '' as Metadata, Draft: '' as Metadata>, UploadURL: '' as Metadata, CollaboratorUrl: '' as Metadata, diff --git a/plugins/guest-resources/src/connect.ts b/plugins/guest-resources/src/connect.ts index 181d3873624..c9ef545952f 100644 --- a/plugins/guest-resources/src/connect.ts +++ b/plugins/guest-resources/src/connect.ts @@ -2,6 +2,7 @@ import { Analytics } from '@hcengineering/analytics' import client from '@hcengineering/client' import core, { ClientConnectEvent, + concatLink, setCurrentAccount, versionToString, type AccountClient, @@ -105,6 +106,15 @@ export async function connect (title: string): Promise { } versionError.set(`${currentVersionStr} => ${reconnectVersionStr}`) } + + const frontUrl = getMetadata(presentation.metadata.FrontUrl) ?? '' + const currentFrontVersion = getMetadata(presentation.metadata.FrontVersion) + if (currentFrontVersion !== undefined) { + const frontConfig = await (await fetch(concatLink(frontUrl, '/config.json'))).json() + if (frontConfig?.version !== undefined && frontConfig.version !== currentFrontVersion) { + location.reload() + } + } } })() } catch (err) { @@ -127,7 +137,7 @@ export async function connect (title: string): Promise { version = await _client.findOne(core.class.Version, {}) console.log('Model version', version) - const requiredVersion = getMetadata(presentation.metadata.RequiredVersion) + const requiredVersion = getMetadata(presentation.metadata.ModelVersion) if (requiredVersion !== undefined && version !== undefined) { console.log('checking min model version', requiredVersion) const versionStr = versionToString(version) @@ -140,7 +150,7 @@ export async function connect (title: string): Promise { } catch (err: any) { Analytics.handleError(err) console.error(err) - const requirdVersion = getMetadata(presentation.metadata.RequiredVersion) + const requirdVersion = getMetadata(presentation.metadata.ModelVersion) console.log('checking min model version', requirdVersion) if (requirdVersion !== undefined) { versionError.set(`'unknown' => ${requirdVersion}`) diff --git a/plugins/workbench-resources/src/connect.ts b/plugins/workbench-resources/src/connect.ts index 391567ab1c3..62faafa29a6 100644 --- a/plugins/workbench-resources/src/connect.ts +++ b/plugins/workbench-resources/src/connect.ts @@ -2,6 +2,7 @@ import { Analytics } from '@hcengineering/analytics' import client from '@hcengineering/client' import core, { ClientConnectEvent, + concatLink, getCurrentAccount, MeasureMetricsContext, metricsToString, @@ -211,6 +212,15 @@ export async function connect (title: string): Promise { } versionError.set(`${currentVersionStr} != ${reconnectVersionStr}`) } + + const frontUrl = getMetadata(presentation.metadata.FrontUrl) ?? '' + const currentFrontVersion = getMetadata(presentation.metadata.FrontVersion) + if (currentFrontVersion !== undefined) { + const frontConfig = await (await fetch(concatLink(frontUrl, '/config.json'))).json() + if (frontConfig?.version !== undefined && frontConfig.version !== currentFrontVersion) { + location.reload() + } + } } })() } catch (err) { @@ -265,7 +275,7 @@ export async function connect (title: string): Promise { ) console.log('Model version', version) - const requiredVersion = getMetadata(presentation.metadata.RequiredVersion) + const requiredVersion = getMetadata(presentation.metadata.ModelVersion) if (requiredVersion !== undefined && version !== undefined && requiredVersion !== '') { console.log('checking min model version', requiredVersion) const versionStr = versionToString(version) @@ -278,7 +288,7 @@ export async function connect (title: string): Promise { } catch (err: any) { console.error(err) Analytics.handleError(err) - const requiredVersion = getMetadata(presentation.metadata.RequiredVersion) + const requiredVersion = getMetadata(presentation.metadata.ModelVersion) console.log('checking min model version', requiredVersion) if (requiredVersion !== undefined) { versionError.set(`'unknown' => ${requiredVersion}`) diff --git a/pods/front/package.json b/pods/front/package.json index b4fff43f884..6f5050d442f 100644 --- a/pods/front/package.json +++ b/pods/front/package.json @@ -14,14 +14,14 @@ "_phase:package": "rushx package", "_phase:docker-build": "rushx docker:build", "_phase:docker-staging": "rushx docker:staging", - "bundle": "mkdir -p bundle && esbuild src/__start.ts --keep-names --define:process.env.MODEL_VERSION=$(node ../../common/scripts/show_version.js) --bundle --minify --platform=node --external:sharp --outfile=bundle/bundle.js --log-level=error --sourcemap=external", + "bundle": "mkdir -p bundle && esbuild src/__start.ts --keep-names --define:process.env.MODEL_VERSION=$(node ../../common/scripts/show_version.js) --define:process.env.VERSION=$(node ../../common/scripts/show_tag.js) --bundle --minify --platform=node --external:sharp --outfile=bundle/bundle.js --log-level=error --sourcemap=external", "package": "rm -rf ./dist && cp -r ../../dev/prod/dist . && cp -r ../../dev/prod/public/* ./dist/ && rm ./dist/config.json", "docker:build": "../../common/scripts/docker_build.sh hardcoreeng/front", "docker:staging": "../../common/scripts/docker_tag.sh hardcoreeng/front staging", "docker:push": "../../common/scripts/docker_tag.sh hardcoreeng/front", "docker:tbuild": "docker build -t hardcoreeng/front . --platform=linux/amd64 && ../../common/scripts/docker_tag_push.sh hardcoreeng/front", "format": "format src", - "run-local": "cross-env MINIO_ACCESS_KEY=minioadmin MINIO_SECRET_KEY=minioadmin MINIO_ENDPOINT=localhost SERVER_SECRET='secret' ACCOUNTS_URL=http://localhost:3000 UPLOAD_URL=/files ELASTIC_URL=http://localhost:9200 MODEL_VERSION=$(node ../../common/scripts/show_version.js) PUBLIC_DIR='.' ts-node ./src/__start.ts", + "run-local": "cross-env MINIO_ACCESS_KEY=minioadmin MINIO_SECRET_KEY=minioadmin MINIO_ENDPOINT=localhost SERVER_SECRET='secret' ACCOUNTS_URL=http://localhost:3000 UPLOAD_URL=/files ELASTIC_URL=http://localhost:9200 MODEL_VERSION=$(node ../../common/scripts/show_version.js) VERSION=$(node ../../common/scripts/show_tag.js) PUBLIC_DIR='.' ts-node ./src/__start.ts", "test": "jest --passWithNoTests --silent --forceExit", "_phase:build": "compile transpile src", "_phase:test": "jest --passWithNoTests --silent --forceExit", diff --git a/server/front/src/index.ts b/server/front/src/index.ts index 50c41d0cd25..d59b3aec396 100644 --- a/server/front/src/index.ts +++ b/server/front/src/index.ts @@ -241,6 +241,7 @@ export function start ( accountsUrl: string uploadUrl: string modelVersion: string + version: string rekoniUrl: string telegramUrl: string gmailUrl: string @@ -290,6 +291,7 @@ export function start ( ACCOUNTS_URL: config.accountsUrl, UPLOAD_URL: config.uploadUrl, MODEL_VERSION: config.modelVersion, + VERSION: config.version, REKONI_URL: config.rekoniUrl, TELEGRAM_URL: config.telegramUrl, GMAIL_URL: config.gmailUrl, diff --git a/server/front/src/starter.ts b/server/front/src/starter.ts index dde158120c9..6ba2d4ae47f 100644 --- a/server/front/src/starter.ts +++ b/server/front/src/starter.ts @@ -93,6 +93,12 @@ export function startFront (ctx: MeasureContext, extraConfig?: Record Date: Tue, 30 Jul 2024 11:50:08 +0400 Subject: [PATCH 015/149] Show all channels and directs in navigator (#6180) Signed-off-by: Kristina Fefelova --- .../src/components/chat/navigator/ChatNavGroup.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte b/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte index 9d2a945af4a..51511eb35be 100644 --- a/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte +++ b/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte @@ -87,7 +87,7 @@ const ids = ctx.map(({ attachedTo }) => attachedTo) const { query, limit } = objectsQueryByClass.get(_class) ?? { query: createQuery(), - limit: model.maxSectionItems ?? 5 + limit: hierarchy.isDerived(_class, chunter.class.ChunterSpace) ? -1 : model.maxSectionItems ?? 5 } objectsQueryByClass.set(_class, { query, limit: limit ?? model.maxSectionItems ?? 5 }) From 088da342217e00085a24056acdcba6a6656cb3c8 Mon Sep 17 00:00:00 2001 From: Denis Bykhov Date: Mon, 29 Jul 2024 20:50:47 +0500 Subject: [PATCH 016/149] Fix guest links (#6172) Signed-off-by: Denis Bykhov From 53ae66155ff4dd03775278a1fb1ae1fca1f5c03e Mon Sep 17 00:00:00 2001 From: Alexander Platov Date: Tue, 30 Jul 2024 08:49:02 +0300 Subject: [PATCH 017/149] UBERF-7721: fixed event display (#6175) Signed-off-by: Alexander Platov From 581a1c5ec3c1a4e0087436b1a8e3a5fce60acaf1 Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 30 Jul 2024 09:53:24 +0400 Subject: [PATCH 018/149] UBERF-7016: Hide channels without any activity long time (#6176) Signed-off-by: Kristina Fefelova From 8a0362afbae116a8a5df47de08d87c15a125830c Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 30 Jul 2024 14:01:27 +0700 Subject: [PATCH 019/149] Fix maintenance period warning (#6179) Signed-off-by: Andrey Sobolev From cb33d21fa0a0b27fdd0b295d34cbab8319bf2115 Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 30 Jul 2024 11:02:06 +0400 Subject: [PATCH 020/149] [Part 1]: Add space to activity queries/finds (#6177) Signed-off-by: Kristina Fefelova From 17648d742272a3612c33f16ba89b6e70ba54247b Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 30 Jul 2024 11:11:08 +0400 Subject: [PATCH 021/149] Fix message text alignment (#6178) Signed-off-by: Kristina Fefelova From 77c7d545340df33d84a4838db09a79c8150af6f7 Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 30 Jul 2024 11:12:18 +0400 Subject: [PATCH 022/149] Add login and signup by code (#6097) Signed-off-by: Kristina Fefelova From 5c1178f45e2642ca523e707ec16ce7d44ae0744f Mon Sep 17 00:00:00 2001 From: Denis Bykhov Date: Tue, 30 Jul 2024 12:49:50 +0500 Subject: [PATCH 023/149] Front version (#6181) Signed-off-by: Denis Bykhov From 020e82044948523b5ab2b27edee94543b423fde9 Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 30 Jul 2024 11:50:08 +0400 Subject: [PATCH 024/149] Show all channels and directs in navigator (#6180) Signed-off-by: Kristina Fefelova From 77d09dd645e7546bd3a1f725055f3c84c217c0db Mon Sep 17 00:00:00 2001 From: Igor Khvan Date: Tue, 30 Jul 2024 23:06:24 +0900 Subject: [PATCH 025/149] fix for cases when fileType is null which causes infinite loading bug (#6174) Signed-off-by: Igor Khvan --- .../src/components/extension/fileExt.ts | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/plugins/text-editor-resources/src/components/extension/fileExt.ts b/plugins/text-editor-resources/src/components/extension/fileExt.ts index eb1db8ac596..d33f51aadec 100644 --- a/plugins/text-editor-resources/src/components/extension/fileExt.ts +++ b/plugins/text-editor-resources/src/components/extension/fileExt.ts @@ -23,6 +23,8 @@ const attachIcon = '' const imageIcon = '' +const errorIcon = + '' /** * @public @@ -83,13 +85,19 @@ export const FileExtension = FileNode.extend({ const linkAttributes = { class: 'file-name', href, - type: fileType, + type: fileType ?? 'unknown', download: fileName, target: '_blank' } const icon = document.createElement('div') icon.classList.add('icon') - icon.innerHTML = fileType.startsWith('image') === true ? imageIcon : attachIcon + if (typeof fileType === 'string' && fileType.startsWith('image')) { + icon.innerHTML = imageIcon + } else if (fileType === null) { + icon.innerHTML = errorIcon + } else { + icon.innerHTML = attachIcon + } return [ 'div', From 62e2f18331ccc721923b4cda5c4977ac5c37f5d1 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 30 Jul 2024 21:44:18 +0700 Subject: [PATCH 026/149] UBERF-7734: Fix total with find with limit === 1 (#6187) Signed-off-by: Andrey Sobolev --- server/mongo/src/storage.ts | 8 ++++++-- services/rekoni/Dockerfile | 29 ++--------------------------- 2 files changed, 8 insertions(+), 29 deletions(-) diff --git a/server/mongo/src/storage.ts b/server/mongo/src/storage.ts index c3dbefc120e..5554436b05f 100644 --- a/server/mongo/src/storage.ts +++ b/server/mongo/src/storage.ts @@ -749,10 +749,14 @@ abstract class MongoAdapterBase implements DbAdapter { } const doc = await coll.findOne(mongoQuery, findOptions) + let total = -1 + if (options.total === true) { + total = await coll.countDocuments(mongoQuery) + } if (doc != null) { - return toFindResult([doc as unknown as T]) + return toFindResult([doc as unknown as T], total) } - return toFindResult([]) + return toFindResult([], total) }, { mongoQuery } ) diff --git a/services/rekoni/Dockerfile b/services/rekoni/Dockerfile index 607c0284731..bc1fe9c95c3 100644 --- a/services/rekoni/Dockerfile +++ b/services/rekoni/Dockerfile @@ -1,37 +1,12 @@ -FROM node:20-alpine AS build - -WORKDIR /usr/src/app - -RUN apk upgrade --update && apk add \ - coreutils \ - libxml2-dev \ - html2text \ - autoconf \ - automake \ - build-base \ - gcc - -RUN cd ~ && \ - wget http://www.gnu.org/software/unrtf/unrtf-0.21.9.tar.gz && \ - tar xzvf unrtf-0.21.9.tar.gz && \ - cd unrtf-0.21.9/ && \ - ./bootstrap && \ - ./configure && \ - make && \ - make install - - FROM node:20-alpine AS runtime RUN apk upgrade --update && apk add \ coreutils \ antiword \ poppler-utils \ - html2text + html2text \ + unrtf ENV NODE_ENV=production -COPY --from=build /usr/local/bin/unrtf /usr/local/bin -RUN mkdir /usr/local/share/unrtf -COPY --from=build /usr/local/share/unrtf/* /usr/local/share/unrtf/ WORKDIR /usr/src/app RUN npm install --ignore-scripts=false --verbose sharp@v0.30.2 pdfjs-dist@v2.12.313 --unsafe-perm COPY bundle/bundle.js ./ From bcbc8af9e5fa51ff2efab26bf22d992dad1cd9bf Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 1 Aug 2024 21:22:32 +0700 Subject: [PATCH 027/149] Fix wrong merge Signed-off-by: Andrey Sobolev --- packages/ui/src/components/CodeInput.svelte | 1 - .../src/components/Auth.svelte | 2 +- .../src/components/LoginApp.svelte | 3 -- .../src/components/OnboardForm.svelte | 2 +- .../src/components/OtpForm.svelte | 38 +++++++++++++------ plugins/login-resources/src/index.ts | 9 +---- plugins/login-resources/src/plugin.ts | 8 +--- plugins/login-resources/src/utils.ts | 15 ++------ pods/authProviders/src/token.ts | 2 +- server-plugins/chunter-resources/src/index.ts | 1 - server/account-service/src/index.ts | 7 +--- server/account/src/operations.ts | 34 ++++++++--------- 12 files changed, 53 insertions(+), 69 deletions(-) diff --git a/packages/ui/src/components/CodeInput.svelte b/packages/ui/src/components/CodeInput.svelte index ce53c077f8c..a62ec512967 100644 --- a/packages/ui/src/components/CodeInput.svelte +++ b/packages/ui/src/components/CodeInput.svelte @@ -31,7 +31,6 @@ on:change on:keyup on:input - maxlength={1} inputmode="numeric" autocomplete="off" placeholder="" diff --git a/plugins/login-resources/src/components/Auth.svelte b/plugins/login-resources/src/components/Auth.svelte index 56b4fbf7a0c..44c64d32a0f 100644 --- a/plugins/login-resources/src/components/Auth.svelte +++ b/plugins/login-resources/src/components/Auth.svelte @@ -18,7 +18,7 @@ setMetadataLocalStorage(login.metadata.LastToken, result.token) setMetadataLocalStorage(login.metadata.LoginEndpoint, result.endpoint) setMetadataLocalStorage(login.metadata.LoginEmail, result.email) - await afterConfirm('onboard') + await afterConfirm() } else { goTo('login') } diff --git a/plugins/login-resources/src/components/LoginApp.svelte b/plugins/login-resources/src/components/LoginApp.svelte index bdea1b058c3..77174900fab 100644 --- a/plugins/login-resources/src/components/LoginApp.svelte +++ b/plugins/login-resources/src/components/LoginApp.svelte @@ -51,7 +51,6 @@ import loginBackWebp from '../../img/login_back.webp' import loginBack2xWebp from '../../img/login_back_2x.webp' import login from '../plugin' - import OnboardForm from './OnboardForm.svelte' export let page: Pages = 'signup' @@ -138,8 +137,6 @@ {:else if page === 'signup'} - {:else if page === 'onboard'} - {:else if page === 'createWorkspace'} {:else if page === 'password'} diff --git a/plugins/login-resources/src/components/OnboardForm.svelte b/plugins/login-resources/src/components/OnboardForm.svelte index 333d14a7f7d..413ffdb09fd 100644 --- a/plugins/login-resources/src/components/OnboardForm.svelte +++ b/plugins/login-resources/src/components/OnboardForm.svelte @@ -13,7 +13,7 @@ // limitations under the License. --> diff --git a/services/github/pod-github/src/platform.ts b/services/github/pod-github/src/platform.ts index 950c6611c61..3875c61a796 100644 --- a/services/github/pod-github/src/platform.ts +++ b/services/github/pod-github/src/platform.ts @@ -15,7 +15,7 @@ import core, { Ref, TxOperations } from '@hcengineering/core' -import github, { GithubAuthentication, GithubIntegration, makeQuery } from '@hcengineering/github' +import github, { GithubAuthentication, makeQuery } from '@hcengineering/github' import { MongoClientReference, getMongoClient } from '@hcengineering/mongo' import { setMetadata } from '@hcengineering/platform' import { buildStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage' @@ -104,11 +104,6 @@ export class PlatformWorker { this.integrations = await this.integrationCollection.find({}).toArray() await this.queryInstallations(ctx) - const workspacesToCheck = new Set() - // We need to delete local integrations not retrieved by queryInstallations() - for (const intValue of this.integrations) { - workspacesToCheck.add(intValue.workspace) - } for (const integr of [...this.integrations]) { // We need to check and remove integrations without a real integration's if (!this.installations.has(integr.installationId)) { @@ -116,31 +111,11 @@ export class PlatformWorker { installationId: integr.installationId, workspace: integr.workspace }) + await this.integrationCollection.deleteOne({ installationId: integr.installationId }) this.integrations = this.integrations.filter((it) => it.installationId !== integr.installationId) } } - const checkClean = async (): Promise => { - const rateLimit = new RateLimiter(10) - for (const workspace of workspacesToCheck) { - // We need to connect to workspace and verify all installations and clean if required - try { - await rateLimit.add(async () => { - ctx.info('check clean', { workspace }) - try { - await this.cleanWorkspaceInstallations(ctx, workspace) - } catch (err: any) { - ctx.error('failed to check clean', { workspace }) - } - }) - } catch (err: any) { - ctx.error('failed to clean workspace', { err, workspace }) - } - } - await rateLimit.waitProcessing() - } - void checkClean() - void this.doSyncWorkspaces().catch((err) => { ctx.error('error during sync workspaces', { err }) process.exit(1) @@ -181,6 +156,7 @@ export class PlatformWorker { } await new Promise((resolve) => { this.triggerCheckWorkspaces = resolve + this.ctx.info('Workspaces check triggered') if (errors) { setTimeout(resolve, 5000) } @@ -217,44 +193,6 @@ export class PlatformWorker { return (await this.usersCollection.find({ _id: login }).toArray()).shift() } - async cleanWorkspaceInstallations (ctx: MeasureContext, workspace: string, installId?: number): Promise { - // TODO: Do not remove record from $github if we failed to clean github installations inside workspace. - const token = generateToken( - config.SystemEmail, - { - name: workspace, - productId: config.ProductID - }, - { mode: 'github' } - ) - let workspaceInfo: ClientWorkspaceInfo - try { - workspaceInfo = await getWorkspaceInfo(token) - } catch (err: any) { - ctx.error('Workspace not found:', { workspace }) - return - } - if (workspaceInfo === undefined) { - ctx.error('No workspace found', { workspace }) - return - } - let client: Client | undefined - try { - client = await createPlatformClient(workspace, config.ProductID, 10000) - const ops = new TxOperations(client, core.account.System) - - const wsIntegerations = await client.findAll(github.class.GithubIntegration, {}) - - for (const intValue of wsIntegerations) { - if (!this.installations.has(intValue.installationId) || intValue.installationId === installId) { - await ops.remove(intValue) - } - } - } finally { - await client?.close() - } - } - async mapInstallation ( ctx: MeasureContext, workspace: string, @@ -297,8 +235,6 @@ export class PlatformWorker { installation_id: installationId }) } - // Clean workspace - await this.cleanWorkspaceInstallations(ctx, workspace, installationId) this.triggerCheckWorkspaces() } @@ -679,6 +615,7 @@ export class PlatformWorker { index: widx, total: workspaces.length }) + const worker = await GithubWorker.create( this, workerCtx, @@ -708,6 +645,12 @@ export class PlatformWorker { // No if no integration, we will try connect one more time in a time period this.clients.set(workspace, worker) } else { + workerCtx.info('Failed Register worker, timeout or integrations removed', { + workspaceId: workspaceInfo.workspaceId, + workspace: workspaceInfo.workspace, + index: widx, + total: workspaces.length + }) errors++ } } catch (e: any) { @@ -729,7 +672,6 @@ export class PlatformWorker { const ws = this.clients.get(deleted) if (ws !== undefined) { try { - await ws.ctx.logger.close() this.ctx.info('workspace removed from tracking list', { workspace: deleted }) this.clients.delete(deleted) await ws.close() diff --git a/services/github/pod-github/src/worker.ts b/services/github/pod-github/src/worker.ts index ac61d6e6157..44f15e84a62 100644 --- a/services/github/pod-github/src/worker.ts +++ b/services/github/pod-github/src/worker.ts @@ -1491,6 +1491,8 @@ export class GithubWorker implements IntegrationManager { reconnect(workspace.name, event) }) + await GithubWorker.checkIntegrations(client, installations) + const worker = new GithubWorker( ctx, platformWorker, @@ -1510,6 +1512,17 @@ export class GithubWorker implements IntegrationManager { await client?.close() } } + + static async checkIntegrations (client: Client, installations: Map): Promise { + const wsIntegerations = await client.findAll(github.class.GithubIntegration, {}) + + for (const intValue of wsIntegerations) { + if (!installations.has(intValue.installationId)) { + const ops = new TxOperations(client, core.account.System) + await ops.remove(intValue) + } + } + } } export async function syncUser ( From c06928b435cd555372eb24cde0c67860149ec779 Mon Sep 17 00:00:00 2001 From: Kristina Date: Fri, 9 Aug 2024 16:46:05 +0400 Subject: [PATCH 038/149] Qfix: fix duplicates in inbox from multiple accounts (#6306) --- plugins/view-resources/src/middleware.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/plugins/view-resources/src/middleware.ts b/plugins/view-resources/src/middleware.ts index 94201e46c2f..5f13406683e 100644 --- a/plugins/view-resources/src/middleware.ts +++ b/plugins/view-resources/src/middleware.ts @@ -132,6 +132,9 @@ export class AggregationMiddleware extends BasePresentationMiddleware implements const skipAccountAggregation = [ notification.class.BrowserNotification, notification.class.InboxNotification, + notification.class.MentionInboxNotification, + notification.class.CommonInboxNotification, + notification.class.ActivityInboxNotification, notification.class.DocNotifyContext ] From 24b08a458f3a0292ddb6666bae15f6fbc90c533d Mon Sep 17 00:00:00 2001 From: Alexey Zinoviev Date: Fri, 9 Aug 2024 19:05:03 +0400 Subject: [PATCH 039/149] uberf-7856: fix desktop publishing CI (#6308) Signed-off-by: Andrey Sobolev --- .github/workflows/main.yml | 21 +++++++++++-------- desktop-package/package.json | 18 ++++++---------- .../scripts/copy-publish-artifacts.sh | 17 +++++++++++++++ 3 files changed, 35 insertions(+), 21 deletions(-) create mode 100755 desktop-package/scripts/copy-publish-artifacts.sh diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index a4c440b1dda..71a2fe5d7c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,6 +38,7 @@ env: rush.json .prettierrc tools + PublishTempFolder: publish_artifacts # A workflow run is made up of one or more jobs that can run sequentially or in parallel jobs: @@ -574,23 +575,25 @@ jobs: security import $CERTIFICATE_PATH -P "$DEV_ID_P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH security set-key-partition-list -S apple-tool:,apple: -k "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH security list-keychain -d user -s $KEYCHAIN_PATH - - name: Build distribution's - env: - AWS_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} - run: | - cd desktop-package - node ../common/scripts/install-run-rushx.js dist --linux --windows --x64 - name: Build distribution's env: APPLE_ID: ${{ secrets.APPLE_ID }} APPLE_ID_APP_PASS: ${{ secrets.APPLE_ID_APP_PASS }} TEAM_ID: ${{ secrets.TEAM_ID }} - AWS_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} - AWS_SECRET_ACCESS_KEY: ${{ secrets.R2_SECRET_ACCESS_KEY }} run: | cd desktop-package + node ../common/scripts/install-run-rushx.js dist --linux --windows --x64 node ../common/scripts/install-run-rushx.js dist-signed --macos --x64 --arm64 + ./scripts/copy-publish-artifacts.sh ${{ env.PublishTempFolder}} + - name: Publish distribution assets + uses: ryand56/r2-upload-action@latest + with: + r2-account-id: ${{ secrets.R2_ACCOUNT_ID }} + r2-access-key-id: ${{ secrets.R2_ACCESS_KEY_ID }} + r2-secret-access-key: ${{ secrets.R2_SECRET_ACCESS_KEY }} + r2-bucket: desktop-distro + source-dir: desktop-package/${{ env.PublishTempFolder}} + destination-dir: ./ - name: Publish distribution version env: AWS_ACCESS_KEY_ID: ${{ secrets.R2_ACCESS_KEY_ID }} diff --git a/desktop-package/package.json b/desktop-package/package.json index d0f006969e1..7558351d912 100644 --- a/desktop-package/package.json +++ b/desktop-package/package.json @@ -52,10 +52,8 @@ "entitlementsInherit": "./entitlements.mac.plist", "notarize": false, "publish": { - "provider": "s3", - "bucket": "desktop-distro", - "acl": null, - "endpoint": "https://47fadbaa4ecbea9f3e8b7043a4584e27.r2.cloudflarestorage.com", + "provider": "generic", + "url": "https://dist.huly.io", "channel": "latest" } }, @@ -68,10 +66,8 @@ "verifyUpdateCodeSignature": false, "icon": "./src/AppIcon.png", "publish": { - "provider": "s3", - "bucket": "desktop-distro", - "acl": null, - "endpoint": "https://47fadbaa4ecbea9f3e8b7043a4584e27.r2.cloudflarestorage.com", + "provider": "generic", + "url": "https://dist.huly.io", "channel": "latest" } }, @@ -84,10 +80,8 @@ ], "category": "Utility", "publish": { - "provider": "s3", - "bucket": "desktop-distro", - "acl": null, - "endpoint": "https://47fadbaa4ecbea9f3e8b7043a4584e27.r2.cloudflarestorage.com", + "provider": "generic", + "url": "https://dist.huly.io", "channel": "latest" } } diff --git a/desktop-package/scripts/copy-publish-artifacts.sh b/desktop-package/scripts/copy-publish-artifacts.sh new file mode 100755 index 00000000000..d35f0554c9a --- /dev/null +++ b/desktop-package/scripts/copy-publish-artifacts.sh @@ -0,0 +1,17 @@ +#!/bin/bash +SRC_FOLDER=deploy +TARGET_FOLDER=$1 +CHANNEL=latest + +if [ -d "$TARGET_FOLDER" ]; then rm -Rf $TARGET_FOLDER; fi +mkdir $TARGET_FOLDER + +cp $SRC_FOLDER/*.blockmap $TARGET_FOLDER +cp $SRC_FOLDER/*.dmg $TARGET_FOLDER +cp $SRC_FOLDER/*.zip $TARGET_FOLDER +cp $SRC_FOLDER/*.AppImage $TARGET_FOLDER +cp $SRC_FOLDER/*.deb $TARGET_FOLDER +cp $SRC_FOLDER/*.exe $TARGET_FOLDER +cp $SRC_FOLDER/$CHANNEL.yml $TARGET_FOLDER +cp $SRC_FOLDER/$CHANNEL-mac.yml $TARGET_FOLDER +cp $SRC_FOLDER/$CHANNEL-linux.yml $TARGET_FOLDER From 22090620ef75e910a3073728c250e3206ae11311 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 11 Aug 2024 18:09:36 +0700 Subject: [PATCH 040/149] UBERF-7836: Fix github integeration (#6313) Signed-off-by: Andrey Sobolev --- .vscode/launch.json | 1 + server/account/src/operations.ts | 54 +++++++++---- server/token/src/token.ts | 4 +- server/ws/src/server.ts | 4 +- services/github/pod-github/Dockerfile | 3 +- services/github/pod-github/src/platform.ts | 92 ++++++++++++++++++++-- services/github/pod-github/src/server.ts | 34 ++++++-- services/github/pod-github/src/worker.ts | 8 +- 8 files changed, 160 insertions(+), 40 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 78f6aa116ae..8f312a32871 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -244,6 +244,7 @@ "MINIO_ENDPOINT": "localhost", "MINIO_ACCESS_KEY": "minioadmin", "MINIO_SECRET_KEY": "minioadmin", + "PLATFORM_OPERATION_LOGGING": "true", "FRONT_URL": "http://localhost:8080", "PORT": "3500" }, diff --git a/server/account/src/operations.ts b/server/account/src/operations.ts index 2adea7cb3ac..8c45f4a8f3d 100644 --- a/server/account/src/operations.ts +++ b/server/account/src/operations.ts @@ -65,7 +65,7 @@ import { registerStringLoaders } from '@hcengineering/server-pipeline' import { buildStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage' -import { decodeToken, generateToken } from '@hcengineering/server-token' +import { decodeToken as decodeTokenRaw, generateToken, type Token } from '@hcengineering/server-token' import toolPlugin, { connect, initializeWorkspace, @@ -398,7 +398,7 @@ export async function getAccountInfoByToken ( let email: string = '' let workspace: WorkspaceId try { - ;({ email, workspace } = decodeToken(token)) + ;({ email, workspace } = decodeToken(ctx, token)) } catch (err: any) { Analytics.handleError(err) ctx.error('Invalid token', { token }) @@ -579,6 +579,21 @@ function getExtra (info: Account | AccountInfo | null, rec?: Record export const guestAccountEmail = '#guest@hc.engineering' +function decodeToken (ctx: MeasureContext, token: string): Token { + // eslint-disable-next-line no-useless-catch + try { + return decodeTokenRaw(token) + } catch (err: any) { + try { + // Ok we have error, but we need to log a proper message + ctx.warn('failed to verify token', { ...decodeTokenRaw(token, false) }) + } catch (err2: any) { + // Ignore + } + throw err + } +} + /** * @public */ @@ -592,7 +607,7 @@ export async function selectWorkspace ( kind: 'external' | 'internal', allowAdmin: boolean = true ): Promise { - const decodedToken = decodeToken(token) + const decodedToken = decodeToken(ctx, token) const email = cleanEmail(decodedToken.email) const endpointKind = kind === 'external' ? EndpointKind.External : EndpointKind.Internal @@ -776,7 +791,7 @@ export async function confirm ( branding: Branding | null, token: string ): Promise { - const decode = decodeToken(token) + const decode = decodeToken(ctx, token) const _email = decode.extra?.confirm if (_email === undefined) { ctx.error('confirm email invalid', { token: decode }) @@ -1010,7 +1025,7 @@ export async function listWorkspaces ( branding: Branding | null, token: string ): Promise { - decodeToken(token) // Just verify token is valid + decodeToken(ctx, token) // Just verify token is valid return (await db.collection(WORKSPACE_COLLECTION).find(withProductId(productId, {})).toArray()) .map((it) => ({ ...it, productId })) .filter((it) => it.disabled !== true) @@ -1447,7 +1462,7 @@ export const createUserWorkspace = token: string, workspaceName: string ): Promise => { - const { email } = decodeToken(token) + const { email } = decodeToken(ctx, token) ctx.info('Creating workspace', { workspaceName, email }) @@ -1567,7 +1582,7 @@ export async function getInviteLink ( role?: AccountRole, personId?: Ref ): Promise { - const { workspace, email } = decodeToken(token) + const { workspace, email } = decodeToken(ctx, token) const wsPromise = await getWorkspaceById(db, productId, workspace.name) if (wsPromise === null) { ctx.error('workspace not found', { workspace, email }) @@ -1620,7 +1635,7 @@ export async function getUserWorkspaces ( branding: Branding | null, token: string ): Promise { - const { email } = decodeToken(token) + const { email } = decodeToken(ctx, token) const account = await getAccount(db, email) if (account === null) { ctx.error('account not found', { email }) @@ -1648,7 +1663,7 @@ export async function getWorkspaceInfo ( token: string, _updateLastVisit: boolean = false ): Promise { - const { email, workspace, extra } = decodeToken(token) + const { email, workspace, extra } = decodeToken(ctx, token) const guest = extra?.guest === 'true' let account: Pick | Account | null = null const query: Filter = { @@ -1772,7 +1787,7 @@ export async function createMissingEmployee ( branding: Branding | null, token: string ): Promise { - const { email } = decodeToken(token) + const { email } = decodeToken(ctx, token) const wsInfo = await getWorkspaceInfo(ctx, db, productId, branding, token) const account = await getAccount(db, email) @@ -2020,7 +2035,7 @@ export async function changePassword ( oldPassword: string, password: string ): Promise { - const { email } = decodeToken(token) + const { email } = decodeToken(ctx, token) const account = await getAccountInfo(ctx, db, productId, branding, email, oldPassword) const salt = randomBytes(32) @@ -2121,7 +2136,7 @@ export async function restorePassword ( token: string, password: string ): Promise { - const decode = decodeToken(token) + const decode = decodeToken(ctx, token) const email = decode.extra?.restore if (email === undefined) { throw new PlatformError(new Status(Severity.ERROR, platform.status.AccountNotFound, { account: email })) @@ -2180,7 +2195,7 @@ export async function checkJoin ( token: string, inviteId: ObjectId ): Promise { - const { email } = decodeToken(token) + const { email } = decodeToken(ctx, token) const invite = await getInvite(db, inviteId) const workspace = await checkInvite(ctx, invite, email) const ws = await getWorkspaceById(db, productId, workspace.name) @@ -2283,7 +2298,7 @@ export async function leaveWorkspace ( token: string, email: string ): Promise { - const tokenData = decodeToken(token) + const tokenData = decodeToken(ctx, token) const currentAccount = await getAccount(db, tokenData.email) if (currentAccount === null) { @@ -2324,7 +2339,7 @@ export async function sendInvite ( personId?: Ref, role?: AccountRole ): Promise { - const tokenData = decodeToken(token) + const tokenData = decodeToken(ctx, token) const currentAccount = await getAccount(db, tokenData.email) if (currentAccount === null) { throw new PlatformError(new Status(Severity.ERROR, platform.status.AccountNotFound, { account: tokenData.email })) @@ -2449,6 +2464,13 @@ function wrap ( err instanceof PlatformError ? err.status : new Status(Severity.ERROR, platform.status.InternalServerError, {}) + + if (((err.message as string) ?? '') === 'Signature verification failed') { + // Let's send un authorized + return { + error: new Status(Severity.ERROR, platform.status.Unauthorized, {}) + } + } if (status.code === platform.status.InternalServerError) { Analytics.handleError(err) ctx.error('error', { status, err }) @@ -2617,7 +2639,7 @@ export async function changeUsername ( first: string, last: string ): Promise { - const { email } = decodeToken(token) + const { email } = decodeToken(ctx, token) const account = await getAccount(db, email) if (account == null) { diff --git a/server/token/src/token.ts b/server/token/src/token.ts index fa7186b88f8..b64c677a4c2 100644 --- a/server/token/src/token.ts +++ b/server/token/src/token.ts @@ -26,8 +26,8 @@ export function generateToken (email: string, workspace: WorkspaceId, extra?: Re /** * @public */ -export function decodeToken (token: string): Token { - const value = decode(token, getSecret(), false) +export function decodeToken (token: string, verify: boolean = true): Token { + const value = decode(token, getSecret(), !verify) const { email, workspace, productId, ...extra } = value return { email, workspace: getWorkspaceId(workspace, productId), extra } } diff --git a/server/ws/src/server.ts b/server/ws/src/server.ts index 9c167bafaae..beeae39ec59 100644 --- a/server/ws/src/server.ts +++ b/server/ws/src/server.ts @@ -316,7 +316,9 @@ class TSessionManager implements SessionManager { ) { ctx.warn('model version mismatch', { version: this.modelVersion, - workspaceVersion: versionToString(workspaceInfo.version) + workspaceVersion: versionToString(workspaceInfo.version), + workspace: workspaceInfo.workspaceId, + workspaceUrl: workspaceInfo.workspaceUrl }) // Version mismatch, return upgrading. return { upgrade: true, upgradeInfo: workspaceInfo.upgrade } diff --git a/services/github/pod-github/Dockerfile b/services/github/pod-github/Dockerfile index 88893a347c8..8b585ad1510 100644 --- a/services/github/pod-github/Dockerfile +++ b/services/github/pod-github/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /usr/src/app RUN npm install --ignore-scripts=false --verbose bufferutil utf-8-validate @mongodb-js/zstd snappy --unsafe-perm COPY bundle/bundle.js ./ +COPY bundle/bundle.js.map ./ RUN apt-get update RUN apt-get install libjemalloc2 @@ -13,4 +14,4 @@ ENV LD_PRELOAD=libjemalloc.so.2 ENV MALLOC_CONF=dirty_decay_ms:1000,narenas:2,background_thread:true EXPOSE 3078 -CMD [ "node", "--inspect", "--async-stack-traces", "bundle.js" ] +CMD [ "node", "--inspect", "--async-stack-traces", "--enable-source-maps", "bundle.js" ] diff --git a/services/github/pod-github/src/platform.ts b/services/github/pod-github/src/platform.ts index 3875c61a796..046db1e59c5 100644 --- a/services/github/pod-github/src/platform.ts +++ b/services/github/pod-github/src/platform.ts @@ -15,8 +15,8 @@ import core, { Ref, TxOperations } from '@hcengineering/core' -import github, { GithubAuthentication, makeQuery } from '@hcengineering/github' -import { MongoClientReference, getMongoClient } from '@hcengineering/mongo' +import github, { GithubAuthentication, makeQuery, type GithubIntegration } from '@hcengineering/github' +import { getMongoClient, MongoClientReference } from '@hcengineering/mongo' import { setMetadata } from '@hcengineering/platform' import { buildStorageFromConfig, storageConfigFromEnv } from '@hcengineering/server-storage' import serverToken, { generateToken } from '@hcengineering/server-token' @@ -199,9 +199,39 @@ export class PlatformWorker { installationId: number, accountId: Ref ): Promise { - if (this.integrations.find((it) => it.installationId === installationId) != null) { + const oldInstallation = this.integrations.find((it) => it.installationId === installationId) + if (oldInstallation != null) { + ctx.info('update integration', { workspace, installationId, accountId }) // What to do with installation in different workspace? // Let's remove it and sync to new one. + if (oldInstallation.workspace !== workspace) { + // + const oldWorkspace = oldInstallation.workspace + + await this.integrationCollection.updateOne( + { installationId: oldInstallation.installationId }, + { $set: { workspace } } + ) + oldInstallation.workspace = workspace + + const oldWorker = this.clients.get(oldWorkspace) as GithubWorker + if (oldWorker !== undefined) { + await this.removeInstallationFromWorkspace(oldWorker.client, installationId) + await oldWorker.reloadRepositories(installationId) + } else { + let client: Client | undefined + try { + client = await createPlatformClient(oldWorkspace, config.ProductID, 30000) + await this.removeInstallationFromWorkspace(oldWorker, installationId) + await client.close() + } catch (err: any) { + ctx.error('failed to remove old installation from workspace', { workspace: oldWorkspace, installationId }) + } + } + } + + await this.updateInstallation(installationId) + const worker = this.clients.get(workspace) as GithubWorker await worker?.reloadRepositories(installationId) worker?.triggerUpdate() @@ -214,7 +244,9 @@ export class PlatformWorker { installationId, accountId } - await ctx.withLog('add integration', { workspace, installationId, accountId }, async (ctx) => { + ctx.info('add integration', { workspace, installationId, accountId }) + + await ctx.with('add integration', { workspace, installationId, accountId }, async (ctx) => { await this.integrationCollection.insertOne(record) this.integrations.push(record) }) @@ -228,12 +260,43 @@ export class PlatformWorker { this.triggerCheckWorkspaces() } + private async removeInstallationFromWorkspace (client: Client, installationId: number): Promise { + const wsIntegerations = await client.findAll(github.class.GithubIntegration, { installationId }) + + for (const intValue of wsIntegerations) { + const ops = new TxOperations(client, core.account.System) + await ops.remove(intValue) + } + } + async removeInstallation (ctx: MeasureContext, workspace: string, installationId: number): Promise { const installation = this.installations.get(installationId) if (installation !== undefined) { - await installation.octokit.rest.apps.deleteInstallation({ - installation_id: installationId - }) + try { + await installation.octokit.rest.apps.deleteInstallation({ + installation_id: installationId + }) + } catch (err: any) { + if (err.status !== 404) { + // Already deleted. + ctx.error('error from github api', { error: err }) + } + await this.handleInstallationEventDelete(installationId) + } + // Let's check if workspace somehow still have installation and remove it + const worker = this.clients.get(workspace) as GithubWorker + if (worker !== undefined) { + await GithubWorker.checkIntegrations(worker.client, this.installations) + } else { + let client: Client | undefined + try { + client = await createPlatformClient(workspace, config.ProductID, 30000) + await GithubWorker.checkIntegrations(client, this.installations) + await client.close() + } catch (err: any) { + ctx.error('failed to clean installation from workspace', { workspace, installationId }) + } + } } this.triggerCheckWorkspaces() } @@ -578,6 +641,12 @@ export class PlatformWorker { const rateLimiter = new RateLimiter(5) let errors = 0 let idx = 0 + const connecting = new Map() + const connectingInfo = setInterval(() => { + for (const [c, d] of connecting.entries()) { + this.ctx.info('connecting to workspace', { workspace: c, time: Date.now() - d }) + } + }, 5000) for (const workspace of workspaces) { const widx = ++idx if (this.clients.has(workspace)) { @@ -607,8 +676,14 @@ export class PlatformWorker { errors++ return } + if (workspaceInfo?.disabled === true) { + this.ctx.error('Workspace is disabled workspaceId', { workspace }) + return + } const branding = Object.values(this.brandingMap).find((b) => b.key === workspaceInfo?.branding) ?? null const workerCtx = this.ctx.newChild('worker', { workspace: workspaceInfo.workspace }, {}) + + connecting.set(workspaceInfo.workspace, Date.now()) workerCtx.info('************************* Register worker ************************* ', { workspaceId: workspaceInfo.workspaceId, workspace: workspaceInfo.workspace, @@ -658,6 +733,8 @@ export class PlatformWorker { this.ctx.info("Couldn't create WS worker", { workspace, error: e }) console.error(e) errors++ + } finally { + connecting.delete(workspaceInfo.workspace) } }) } @@ -667,6 +744,7 @@ export class PlatformWorker { Analytics.handleError(e) errors++ } + clearInterval(connectingInfo) // Close deleted workspaces for (const deleted of Array.from(toDelete.keys())) { const ws = this.clients.get(deleted) diff --git a/services/github/pod-github/src/server.ts b/services/github/pod-github/src/server.ts index 2064f49c5f8..b0d8d0d9aeb 100644 --- a/services/github/pod-github/src/server.ts +++ b/services/github/pod-github/src/server.ts @@ -73,13 +73,12 @@ export async function start (ctx: MeasureContext, brandingMap: BrandingMap): Pro // eslint-disable-next-line @typescript-eslint/no-misused-promises app.post('/api/v1/installation', async (req, res) => { + const payloadData: { + installationId: number + accountId: Ref + token: string + } = req.body try { - const payloadData: { - installationId: number - accountId: Ref - token: string - } = req.body - const decodedToken = decodeToken(payloadData.token) ctx.info('/api/v1/installation', { email: decodedToken.email, @@ -87,6 +86,10 @@ export async function start (ctx: MeasureContext, brandingMap: BrandingMap): Pro body: req.body }) + ctx.info('map-installation', { + workspace: decodedToken.workspace.name, + installationid: payloadData.installationId + }) await ctx.withLog('map-installation', {}, async (ctx) => { await worker.mapInstallation( ctx, @@ -99,6 +102,12 @@ export async function start (ctx: MeasureContext, brandingMap: BrandingMap): Pro res.json({}) } catch (err: any) { Analytics.handleError(err) + const tok = decodeToken(payloadData.token, false) + ctx.error('failed to map-installation', { + workspace: tok.workspace?.name, + installationid: payloadData.installationId, + email: tok?.email + }) res.status(401) res.json({ error: err.message }) } @@ -121,7 +130,12 @@ export async function start (ctx: MeasureContext, brandingMap: BrandingMap): Pro } = JSON.parse(atob(payloadData.state)) const decodedToken = decodeToken(decodedData.token) - + ctx.info('request github access-token', { + workspace: decodedToken.workspace.name, + accountId: payloadData.accountId, + code: payloadData.code, + state: payloadData.state + }) await ctx.withLog('request-github-access-token', {}, async (ctx) => { await worker.requestGithubAccessToken({ workspace: decodedToken.workspace.name, @@ -154,7 +168,11 @@ export async function start (ctx: MeasureContext, brandingMap: BrandingMap): Pro body: req.body }) - await ctx.withLog('map-installation', {}, async (ctx) => { + ctx.info('remove-installation', { + workspace: decodedToken.workspace.name, + installationId: payloadData.installationId + }) + await ctx.withLog('remove-installation', {}, async (ctx) => { await worker.removeInstallation(ctx, decodedToken.workspace.name, payloadData.installationId) }) res.status(200) diff --git a/services/github/pod-github/src/worker.ts b/services/github/pod-github/src/worker.ts index 44f15e84a62..c3883e4193c 100644 --- a/services/github/pod-github/src/worker.ts +++ b/services/github/pod-github/src/worker.ts @@ -624,7 +624,7 @@ export class GithubWorker implements IntegrationManager { return statuses.filter((it) => allowedTypes.has(it._id)) } - async init (): Promise { + async init (): Promise { this.registerNotifyHandler() await this.queryAccounts() @@ -692,7 +692,6 @@ export class GithubWorker implements IntegrationManager { this.triggerRequests = 1 this.updateRequests = 1 this.syncPromise = this.syncAndWait() - return true } projects: GithubProject[] = [] @@ -1504,9 +1503,8 @@ export class GithubWorker implements IntegrationManager { branding ) ctx.info('Init worker', { workspace: workspace.workspaceUrl, workspaceId: workspace.workspaceName }) - if (await worker.init()) { - return worker - } + void worker.init() + return worker } catch (err: any) { ctx.error('timeout during to connect', { workspace, error: err }) await client?.close() From 7a6ac33917ff64fe1ec109d69c21c9540ff9358f Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 11 Aug 2024 18:31:56 +0700 Subject: [PATCH 041/149] UBERF-7865: Fix wrong access to not created collection (#6315) Signed-off-by: Andrey Sobolev --- dev/docker-compose.yaml | 2 ++ pods/account/src/__start.ts | 2 +- server/core/src/server/domainHelper.ts | 1 + server/mongo/src/utils.ts | 7 +++++-- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/dev/docker-compose.yaml b/dev/docker-compose.yaml index 0446d5e8ba9..c7ad489a684 100644 --- a/dev/docker-compose.yaml +++ b/dev/docker-compose.yaml @@ -62,6 +62,8 @@ services: - LAST_NAME_FIRST=true - ACCOUNTS_URL=http://localhost:3000 - BRANDING_PATH=/var/cfg/branding.json + - INIT_SCRIPT_URL=https://raw.githubusercontent.com/hcengineering/init/main/script.yaml + - INIT_WORKSPACE=onboarding restart: unless-stopped collaborator: image: hardcoreeng/collaborator diff --git a/pods/account/src/__start.ts b/pods/account/src/__start.ts index 113f03a061a..11e9ec066c8 100644 --- a/pods/account/src/__start.ts +++ b/pods/account/src/__start.ts @@ -16,7 +16,7 @@ const disabled = (process.env.MODEL_DISABLED ?? '').split(',').map((it) => it.tr const txes = JSON.parse(JSON.stringify(builder(enabled, disabled).getTxes())) as Tx[] configureAnalytics(process.env.SENTRY_DSN, {}) -Analytics.setTag('application', 'transactor') +Analytics.setTag('application', 'account') const metricsContext = new MeasureMetricsContext( 'account', diff --git a/server/core/src/server/domainHelper.ts b/server/core/src/server/domainHelper.ts index 23f6fb3fa59..2f236cdfb6a 100644 --- a/server/core/src/server/domainHelper.ts +++ b/server/core/src/server/domainHelper.ts @@ -174,6 +174,7 @@ export class DomainIndexHelperImpl implements DomainHelper { } } } catch (err: any) { + ctx.error('error during domain collections/indexes check', { domain, error: err }) Analytics.handleError(err) } diff --git a/server/mongo/src/utils.ts b/server/mongo/src/utils.ts index 9e32881cf04..646a5aecb71 100644 --- a/server/mongo/src/utils.ts +++ b/server/mongo/src/utils.ts @@ -230,7 +230,10 @@ export class DBCollectionHelper implements DomainHelperOperations { } async estimatedCount (domain: Domain): Promise { - const c = this.collection(domain) - return await c.estimatedDocumentCount() + if (this.exists(domain)) { + const c = this.collection(domain) + return await c.estimatedDocumentCount() + } + return 0 } } From 9d5ac4e48837da5da62e54a3e6f16122bdceff11 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 11 Aug 2024 18:42:05 +0700 Subject: [PATCH 042/149] update changelog Signed-off-by: Andrey Sobolev --- changelog.md | 5178 +++++++++++++++++++++++++++++++++++++++++++++++--- cliff.toml | 89 + 2 files changed, 5006 insertions(+), 261 deletions(-) create mode 100644 cliff.toml diff --git a/changelog.md b/changelog.md index ebeec044543..27156cb54a4 100644 --- a/changelog.md +++ b/changelog.md @@ -1,376 +1,5032 @@ # Changelog -## 0.6.112 (upcoming) - -## 0.6.111 - -- UBER-524: cleaned CSS, UI fixes. by @SasLord in https://github.com/hcengineering/anticrm/pull/3491 -- UBER-535 by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3486 -- Fix create event time by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3493 -- TSK-336: mobile UI adaptation by @SasLord in https://github.com/hcengineering/anticrm/pull/3492 -- UBER-581 by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3494 -- ATS-9: update states once template updates by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3496 - -## 0.6.110 - -- UBER-498: replace component shortcut by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3441 -- UBER-428: displaying tooltips with a delay by @SasLord in https://github.com/hcengineering/anticrm/pull/3442 -- UBER-477: Uberflow dependencies by @haiodo in https://github.com/hcengineering/anticrm/pull/3440 -- Enable build cache by @haiodo in https://github.com/hcengineering/anticrm/pull/3446 -- UBER-526/UBER-523 by @haiodo in https://github.com/hcengineering/anticrm/pull/3447 -- UBER-505: Fix resolve errors in console by @haiodo in https://github.com/hcengineering/anticrm/pull/3449 -- UBER-525: fixed popup logic placement for top by @SasLord in https://github.com/hcengineering/anticrm/pull/3448 -- UBER-528: Fix navigation in embedded mode by @haiodo in https://github.com/hcengineering/anticrm/pull/3450 -- Fix build script by @haiodo in https://github.com/hcengineering/anticrm/pull/3451 -- UBER-504: correct display of optional presenters by @SasLord in https://github.com/hcengineering/anticrm/pull/3452 -- UBER-520: Fix images drag & drop by @haiodo in https://github.com/hcengineering/anticrm/pull/3453 -- TSK-1575 by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3455 -- UBER-491 by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3456 -- UBER-507: Process undefined in ProjectPresenter and MilestonePresenter by @wazsone in https://github.com/hcengineering/anticrm/pull/3458 -- UBER-472 by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3457 -- UBER-513: Fix desktop app navigation by @haiodo in https://github.com/hcengineering/anticrm/pull/3459 -- UBER-472: don't update when it's not needed by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3460 -- UBER-504: fix presenters on ListItem. Add DeviceSizes. by @SasLord in https://github.com/hcengineering/anticrm/pull/3463 -- Not open docx preview by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3462 -- UBER-462: prevent creating existing enum value and disable the button in that case by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3465 -- UBER-538: update ListView layout. Subissues, related issues. by @SasLord in https://github.com/hcengineering/anticrm/pull/3467 -- UBER-536: Fix test stability by @haiodo in https://github.com/hcengineering/anticrm/pull/3466 -- Publish request module by @haiodo in https://github.com/hcengineering/anticrm/pull/3468 -- QFix Notification selection by @haiodo in https://github.com/hcengineering/anticrm/pull/3469 -- channels_dropdown_qfix by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3470 -- UBER-473: show icon for department by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3472 -- UBER-537: review support in inbox by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3471 -- UBER-509: do not update list of unread right after reading by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3461 -- Fix gmail error by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3473 -- Fix multiple channels by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3474 -- UBER-538: fixed ListView and KanbanView. by @SasLord in https://github.com/hcengineering/anticrm/pull/3475 -- fix label by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3476 -- UBER-413: Allow extensible navigator model by @haiodo in https://github.com/hcengineering/anticrm/pull/3477 -- UBER-556: add migration for icons with typo in it by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3478 -- UBER-560: filter out current transaction and get mixin by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3480 -- Add the ability to restrict adding / removing attachments by @s0gorelkov in https://github.com/hcengineering/anticrm/pull/3479 -- UBER-298: Add readonly users option to the UserBoxItems component by @wazsone in https://github.com/hcengineering/anticrm/pull/3481 -- Bump versions properly by @haiodo in https://github.com/hcengineering/anticrm/pull/3483 -- UBER-142: update buttons. Cleaning CSS. by @SasLord in https://github.com/hcengineering/anticrm/pull/3482 -- UBER-573,-574: updated button styles, fixed ListView by @SasLord in https://github.com/hcengineering/anticrm/pull/3484 -- UBER-572: fixed overflow for emoji. by @SasLord in https://github.com/hcengineering/anticrm/pull/3485 -- Publish rpc by @BykhovDenis in https://github.com/hcengineering/anticrm/pull/3487 -- UBER-554: show messages with error and allow resending by @ThetaDR in https://github.com/hcengineering/anticrm/pull/3488 +All notable changes to this project will be documented in this file. - Function translate is updated to pass language, so be aware to use `$themeState.language` to properly use translation. +## [0.6.280] - 2024-08-11 - ```javascript - function translate(id: string, params: Record, language?: string): Promise { - //... - } - ``` +### UBERF-7836 -## 0.6.32 +- Fix github integeration (#6313) -Tracker: +### UBERF-7865 -- Basic sprints +- Fix wrong access to not created collection (#6315) -Workbench: +### Uberf-7856 -- Help Center +- Fix desktop publishing CI (#6308) -## 0.6.31 +## [0.6.279] - 2024-08-09 -Core: +### Qfix -- Fix password change settings -- Fix settings collapse -- Allow to add multiple enum values -- Fix password change issues -- Fix minxin query +- Fix duplicates in inbox from multiple accounts (#6306) -HR: +### UBERF-7790 -- Talant with Active/Inactive Application filter -- Improve PTO table statistics +- Fix connection timeout issue (#6301) -## 0.6.30 +### UBERF-7854 -Core: +- Fix live query $lookup update (#6304) -- Allow to leave workspace -- Allow to kick employee (Only for owner) -- Browser notifications -- Allow to create employee -- Owner role for employee +## [0.6.277] - 2024-08-08 -HR: +### UBERF-7604 -- Allow to change assignee in Kanban +- Telegram notifications service (#6182) -Tracker: +### Ezqms-1029 -- Manual issues ordering -- Issue relations -- Issue status management +- Fix permissions check for creating project doc from context menu (#6282) -Workbench +### Ezqms-1160 -- Use application aliases in URL +- Fix slice type (#6280) -## 0.6.29 +## [0.6.276] - 2024-08-07 -Platform: +### 🐛 Bug Fixes -- Object selector actions +- Rekoni service build (#6255) -Tracker: +### UBERF-7604 -- Remember view options -- My issues -- Names of parent issues -- Roadmap -- Context menus (Priority/Status/Assignee) +- Preparation for telegram notifications (#6123) -Chunter: +### UBERF-7717 -- Reactions on messages -- Priority filter -- Context menu selector for state/assignee +- Reduce finds on members changed (#6219) -HR: +### UBERF-7753 -- Leaves schedule +- Change auth approach for providers (#6234) -Core: +### UBERF-7817 -- Invite link expire from 1 hour +- Fix tag element query (#6267) -## 0.6.28 +### Uberf-7765 -Core: +- Retry config load desktop (#6272) +- Only retry network errors when loading config for desktop app (#6274) -- Show activity line last view +## [0.6.274] - 2024-08-05 -Tracker: +### 🐛 Bug Fixes -- Issue state history. -- Subissue issue popup. -- Label support +- Properly update uppy state (#6252) +- Remove provider from preview config (#6253) -Lead: +### UBERF-7794 -- Lead presentation changed to number. -- Title column for leads. -- Fix New Lead action for Organization. -- Duplicate Organization detection +- Restore related issues control (#6244) -## 0.6.27 +### UBERF-7796 -Platform: +- Rework index creation logic (#6246) -- Allow to attach from clipboard -- Updating subtask project according to parent project +### UBERF-7800 -Leads: +- Space improvements (#6250) -- Add filters -- Added "done state" to leads popup table and customer display +### Uberf-7764 -Tracker: +- Improve space permissions query (#6236) -- Attachments support -- Board view +## [0.6.271] - 2024-08-02 -## 0.6.26 +### UBERF-7776 -Platform: +- Get rid of blobs in UI (#6226) -- Support checkboxes in markdown -- Fixes remembering of active application/page +## [0.6.271rc1] - 2024-08-01 -Tracker: +### 🐛 Bug Fixes -- Issue preview -- Enabled issue notifications -- Show issue ID for sub-issues -- Fix board status order -- Fix project status -- Allow to filter sub issues -- Issue reference from chat -- Notifications support +- Drive UX fixes (#6213) -Board: +### ⚙️ Miscellaneous Tasks -- Fix tag/labels layout -- Update popups +- Cross-platform docker build (#6198) +- Update hocuspocus version (#6207) -## 0.6.25 +### EZQMS-1145 -Tracker: +- Fixes doc import tool (#6204) -- Sub issue improvements -- Issue list fixes -- Project fixes +### UBERF-7016 -HR: +- Hide channels without any activity long time (#6176) -- Rename Candidate to Talent -- Review Participants support +### UBERF-7721 -## 0.6.24 +- Fixed event display (#6175) -Platform: +### UBERF-7734 -- Firefox Login -- Save last filter for page -- Project issue list view -- Performance optimizations -- Organization support Members +- Fix total with find with limit === 1 (#6187) -Tracker: +### UBERF-7743 -- Subissues improvements -- Tracker layout and colors update +- Make check-clean non blocking (#6195) -## 0.6.23 +### UBERF-7749 -Platform: +- Use MONGO_OPTIONS properly (#6200) -- Fix first filter disappear -- Adjust label editors design -- Allow to define table columns order -- Fix skills/labels selection and show real usage counter -- Fix skills/labels activity -- Project selector in issue list -- Save last filter for page -- Project issue list view +### Uberf-7755 -HR: +- Fix image toolbar visibility (#6208) -- Allow to configure vacancy table +## [0.6.270] - 2024-07-30 -Leads: +### UBERF-7016 -- Fix customer table leads column +- Hide channels without any activity long time (#6176) -## 0.6.22 +### UBERF-7721 -Platform: +- Fixed event display (#6175) -- Fix subscribe to updates on Task create / update -- Fix popup window layouts -- Fix table two loading spinners -- Improve full text search performance -- Updare reminders layout -- Settings for Attributes -- Enumeration custom properties -- Tags/Skills popup fixes. (Sort by usage/limits/fixes.) -- Attachments: - - Description field and context menu editor for it - - Allow mark attachments as important -- Fix resize glitch +### UBERF-7734 -Chunter: +- Fix total with find with limit === 1 (#6187) -- Jump to date functionality +## [0.6.269] - 2024-07-30 -Tracker: +### 🐛 Bug Fixes -- Parent issues in new Issue dialog. -- Fix copy to clipboard +- Add github to server pipeline (#6170) -HR: +### UBERF-7016 -- Vacancies filters -- Applications support labels -- Archived vacancy could be opened/edited. -- Vacancy now could be extended with custom attributes. +- Hide channels without any activity long time (#6176) -Board: +### UBERF-7721 -- Update actions -- Fix cover presenter -- Check list items D&D +- Fixed event display (#6175) +- Fixed event display (#6175) -## 0.6.21 +## [0.6.268] - 2024-07-29 -Platform: +### UBERF-7698 -- Contact filters -- Full text search improvments -- Custom fields +- Fix backup +- Fix backup (#6168) -Board: +### UBERF-7705 -- Convert checklist to to card -- Card cover suport +- Maitenance warning for every transactor (#6169) -## 0.6.20 +## [0.6.267] - 2024-07-29 -Platform: +### EZQMS-1069 -- Chanell editor fixes -- Update edit states layout. -- Homepage contact information added -- Filter bar fixes +- Fix request model (#6131) +- Fix request model (#6131) -HR: +### UBERF-7543 -- Improve Vacancy creation +- Add low level groupBy api and improve security space lookup (#6126) +- Add low level groupBy api and improve security space lookup (#6126) -Board: +### UBERF-7579 -- Card layout update +- Text editor actions (#6103) -## 0.6.19 +### UBERF-7665 -Platform: +- Fix OOM on partial data (#6134) +- Fix OOM in sharp (#6138) +- Fix OOM in sharp (#6138) -- Table filters support. -- Number/String editor layout on side edit panel update -- Tag filters -- Redesign comment input field + formatting -- Allow to set particular date for reminder -- Collection presenters update -- Update EditStates/Document Viewer -- Fix telegram messages display -- Invite workspace -- Activity layout fixes +### UBERF-7675 -HR: +- Remove heading text action from compact editors (#6143) +- Remove heading text action from compact editors (#6143) -- Skill filters -- Vacancy creation fixes, chained dialogs. +### UBERF-7682 -Board: +- Fix mongo cursor on backup (#6145) +- Fix mongo cursor on backup (#6145) -- Checkist assignee support -- Add confirmation for checlist delete -- Table view for cards +### UBERF-7692 -Tracker: +- Move FindAll slow print into mongo adapter (#6152) +- Move FindAll slow print into mongo adapter (#6152) -- Basic Projects support -- Edit mode for issues +## [0.6.266] - 2024-07-24 -Chunter: +### EZQMS-1109 -- Convert direct messages to channel +- Add signature details for reviews/approvals (#6111) -## 0.6.18 +### EZQMS-1140 -Platform: +- Controlled doc content display improvements (#6110) -- Edit channel panel update -- Table customization support -- Focus and Keyboard management (Ctrl+K, Command + K) +### Qfix -HR: +- Qms signature dialog login info in tests (#6100) -- Review redesign +### UBERF-7603 -Board: +- Fix connect with timeout (#6101) -- Add panel with text editor -- Fix adding several cards +### UBERF-7638 -Chunter: +- Add scroll to latest message button (#6119) -- User status support +### Ezqms-1004 + +- Fix typo (#6114) + +### Ezqms-1121 + +- Fix deleted doc states (#6112) + +## [0.6.265] - 2024-07-19 + +### 🐛 Bug Fixes + +- Hide wiki history sidebar tab (#6064) + +### UBERF-7595 + +- Do not use /api/v1/version on connect (#6075) + +### UBERF-7597 + +- Get rid of formats in preview.ts (#6077) + +### UBERF-7600 + +- Reduce number of $in operators and fix account service is… (#6080) + +### UBERF-7603 + +- Support multiple transactors (#6086) + +### UBERF-7620 + +- Send broadcast on delay with combine (#6094) + +## [0.6.264] - 2024-07-12 + +### UBERF-7495 + +- Global editor kit extensions (#6057) + +### UBERF-7513 + +- Improve notifications model to allow external notifications channels (#6037) + +### UBERF-7519 + +- Rework backup service (#6050) + +### UBERF-7583 + +- Fix workspace upgrade (#6062) + +## [0.6.263] - 2024-07-10 + +### UBERF-7543 + +- Fix memory usage (#6044) + +## [0.6.262] - 2024-07-10 + +### 🐛 Bug Fixes + +- Track applied transactions in session op context (#6029) + +## [0.6.261] - 2024-07-09 + +### 🐛 Bug Fixes + +- Handle readonly in number presenter (#6026) + +### UBERF-7510 + +- Add logging and catch errors on cleanup (#6003) + +### UBERF-7520 + +- Use Bulk for index query updates (#6012) + +### UBERF-7532 + +- Bulk operations for triggers (#6023) + +## [0.6.260] - 2024-07-04 + +### QFix + +- Revert missing pipeline configuration (#5987) + +### Qfix + +- Use http for local and test brandings (#5980) + +### UBERF-7465 + +- Move pipeline into separate plugin (#5978) + +### UBERF-7474 + +- Some logging and reduce calls for query refresh (#5973) + +### UBERF-7489 + +- Fix various performance issues (#5983) +- Some more chat optimizations (#5999) + +### UBERF-7501 + +- Copy few blobs in parallel (#5995) + +### Ezqms-1057 + +- Fix images in branded workspaces (#5979) + +### Uberf-7434 + +- Show dowload progress (#5944) + +## [0.6.259] - 2024-06-28 + +### UBERF-7428 + +- Fix memory issues (#5940) + +### Uberf-7389 + +- Instant transactions (#5941) + +## [0.6.258] - 2024-06-27 + +### 🚀 Features + +- Add shortcut to create todo in documents (#5827) + +### UBERF-7411 + +- Allow to backup blobs with wrong size (#5926) + +### UBERF-7419 + +- Fix various sentry errors (#5931) + +### UBERF-7422 + +- Fix blob/stora (#5933) + +### UBERF-7425 + +- Fix some CF caching issues (#5936) + +## [0.6.257] - 2024-06-25 + +### 🐛 Bug Fixes + +- *(ui)* Allow input month with keystrokes (#5785) + +### UBERF-5564 + +- Rework groupping and support PersonAccount (#5525) + +### UBERF-7165 + +- Storage + Backup improvements (#5913) + +### UBERF-7330 + +- Improve text editor UX (#5909) + +### UBERF-7362 + +- Do not cache branding served from front (#5889) + +### Ezqms-1028 + +- Fix actions in tree element (#5887) + +### Uberf-7350 + +- Add more oauth logs (#5879) + +## [0.6.256] - 2024-06-20 + +### 🐛 Bug Fixes + +- Extra logging in documents content migration (#5868) + +### EZQMS-951 + +- Server branding (#5858) + +### UBERF-7327 + +- Chinese language selector (#5862) + +### Uberf-7342 + +- Add french lang selector (#5873) + +## [0.6.255] - 2024-06-18 + +### UBERF-7126 + +- Content type based storage configuration (#5781) + +### UBERF-7239 + +- Support short/custom links in inbox/chat/planner (#5815) + +### UBERF-7286 + +- Backup retry (#5830) + +### UBERF-7297 + +- Allow to backup-restore from v0.6.239 (#5837) +- One more fix to backup-restore (#5841) + +### UBERF-7308 + +- Upgrade model improvements (#5847) + +### UBERF-7312 + +- Memory improvements (#5849) + +### Ezqms-1004 + +- Fix questions wording (#5820) + +### Ezqms-1023 + +- Remove old migrations from qms (#5823) + +### Ezqms-966 + +- Notifications fixes (#5819) + +## [0.6.254] - 2024-06-14 + +### UBERF-7266 + +- Fix workspace rate limit (#5812) + +## [0.6.253] - 2024-06-13 + +### UBERF-7247 + +- Fix queryFind for mixins on server (#5803) + +### Ezqms-972 + +- Fix custom space types for documents and products (#5801) + +### Ezqms-974 + +- Fix space type selector in document and product spaces (#5802) + +## [0.6.252] - 2024-06-12 + +### Ezqms-1008 + +- Disable archived product editing (#5794) + +### Ezqms-976 + +- Exclude other types mixins (#5795) + +### Ezqms-981 + +- Adjust doc library wording (#5791) + +### Uberf-7206 + +- Adjustments and resources to support desktop screenshare (#5790) + +## [0.6.251] - 2024-06-11 + +### 🐛 Bug Fixes + +- Disable guest link action for selection (#5776) + +### ⚙️ Miscellaneous Tasks + +- Update preview.ts (#5765) + +### UBERF-7197 + +- Fix high cpu load (#5761) + +## [0.6.250] - 2024-06-07 + +### UBERF-7077 + +- Fixed Separator (#5743) + +### UBERF-7181 + +- Fix GH PR statuses (#5749) + +## [0.6.249] - 2024-06-05 + +### UBERF-7090 + +- Add QMS common components (#5711) +- Add QMS plugins (#5716) +- Add Office plugins (#5725) + +### UBERF-7126 + +- Fix blob previews (#5723) +- Support rich editor blob resolve (#5727) + +### Ezqms-910 + +- Fix workspace roles editing (#5726) + +## [0.6.248] - 2024-05-31 + +### UBERF-7114 + +- Fix workspace from clone (#5703) + +### UBERF-7118 + +- Fix upgrade/refresh on reconnect (#5704) + +## [0.6.247] - 2024-05-30 + +### 🐛 Bug Fixes + +- Use concatLink for transactor URL (#5659) +- Migrate content for documents only (#5699) + +### Qfix + +- Remove hardcoded platform url (#5692) + +### UBERF-6984 + +- Host-based branding (#5657) + +### UBERF-7011 + +- Switch to Ref (#5661) + +### UBERF-7062 + +- Fix backup memory usage and support missing blobs (#5665) + +### UBERF-7067 + +- Make chat group labels translations reactive (#5688) + +### UBERF-7105 + +- Use status colour when projectState is undefined (#5697) + +### Uberf-6639 + +- Fix create issue default status (#5685) + +### Uberf-7084 + +- Fix add new status to task type (#5684) + +### Uberf-7090 + +- Request enhancements (#5695) + +## [0.6.246] - 2024-05-23 + +### 🐛 Bug Fixes + +- Proper drive space header button logic (#5642) +- Download drive files via temporary link (#5644) + +### Uberf-7018 + +- Fix vacancies (#5647) + +## [0.6.245] - 2024-05-22 + +### UBERF-6365 + +- Blob mongo storage initial support (#5474) + +### UBERF-6638 + +- Fix colours for statuses (#5620) + +### UBERF-6854 + +- S3 provider (#5611) + +### UBERF-6893 + +- Move index build into workspace usage. (#5586) + +### UBERF-6949 + +- Fix kanban options (#5593) + +## [0.6.243] - 2024-05-13 + +### 🐛 Bug Fixes + +- Hide actions for archived teamspaces (#5580) + +### UBERF-6829 + +- Group messages of the same type and user (#5569) + +### Ezqms-876 + +- Adjust role assignment editor (#5583) + +### Ezqms-883 + +- Allow email notifications for requests (#5582) + +### Ezqms-896 + +- Fix owners assignment for default spaces (#5585) + +## [0.6.242] - 2024-05-10 + +### 🐛 Bug Fixes + +- Add missing productId to getAccountInfo (#5540) + +### UBERF-6870 + +- Speedup server broadcast of derived transactions (#5553) + +### UBERF-6888 + +- Async triggers (#5565) + +## [0.6.241] - 2024-05-08 + +### UBERF-6802 + +- Improve create chat message performance (#5530) + +### UBERF-6807 + +- Fix empty objects channels in chat (#5533) + +## [0.6.240] - 2024-05-06 + +### 🐛 Bug Fixes + +- Move to well known parent when no parent selected (#5516) + +### EZQMS-729 + +- Restrict spaces operations (#5500) + +### QFix + +- Connection should restore boolean query fields (#5508) + +### UBERF-6576 + +- Move default space/project/task types into static model (#5423) + +### UBERF-6778 + +- Add Support to uWebSocket.js library (#5503) + +### Ezqms-730 + +- Better check for roles when changing members (#5527) + +### Ezqms-798 + +- Fix role name update (#5514) + +### Ezqms-834 + +- Fix roles ids and names (#5520) + +## [0.6.239] - 2024-05-03 + +### 🐛 Bug Fixes + +- Show max width button in documents (#5476) + +### EZQMS-762 + +- Improve printing layout (#5486) + +### Qfix + +- Elastic adapter index not found exception (#5482) + +### UBERF-6756 + +- Tracker performance fixes (#5488) + +### Ezqms-762 + +- Extract base content from toc popup (#5489) + +## [0.6.238] - 2024-04-26 + +### UBERF-6676 + +- Chat local state (#5461) + +### UBERF-6677 + +- Add user online/offline status (#5438) + +### UBERF-6712 + +- Rework connection logic (#5455) + +### UBERF-6726 + +- Fix clone for huge files (#5470) + +### Uberf-6708 + +- Composite elastic doc key (#5457) + +## [0.6.237] - 2024-04-23 + +### Ezqms-748 + +- Hide left menu by default, ensure placement, improve show/hide logic (#5429) + +## [0.6.236] - 2024-04-23 + +### UBERF-6653 + +- Fix minor issue and add force-close (#5418) + +## [0.6.235a] - 2024-04-20 + +### UBERF-6636 + +- Fix todos auto expand if collapsed (#5406) + +### UBERF-6643 + +- Fix few connection related exceptions (#5412) +- A bit more logging (#5413) + +## [0.6.235] - 2024-04-19 + +### UBERF-6626 + +- More detailed info about maintenance (#5400) + +### UBERF-6633 + +- Fix model enabled tracking (#5404) + +## [0.6.234] - 2024-04-18 + +### UBERF-5527 + +- Add context menu for activity and inbox (#5373) + +### UBERF-6205 + +- Add real archive for notifications (#5385) + +### UBERF-6490 + +- Rework backup tool (#5386) + +### UBERF-6598 + +- Perform upgrade all workspaces to new versions (#5392) + +## [0.6.233] - 2024-04-16 + +### Qfix + +- Always recreate space types (#5371) + +### UBERF-6464 + +- Update activity mentions display (#5339) + +### UBERF-6577 + +- Fix invite link with null mask (#5372) + +## [0.6.232] - 2024-04-16 + +### 🐛 Bug Fixes + +- Workspace creation issues (#5362) + +### UBERF-5686 + +- Fix copy link (#5368) + +### UBERF-5964 + +- Insert items menu in editor (#5341) + +### UBERF-6330 + +- Fix race conditions in UI (#5184) + +### UBERF-6557 + +- Clean old domains during clone of workspace to new place (#5361) + +### Ezqms-724 + +- Make roles related code more robust (#5363) + +### Uberf-6537 + +- Fix teamspace creation (#5354) + +## [0.6.231] - 2024-04-13 + +### EZQMS-689 + +- Slightly improved typings for notification presenters (#5312) + +### UBERF-6469 + +- Fix slow index creation (#5324) + +### UBERF-6478 + +- Make icons more clear (#5320) + +### UBERF-6508 + +- Add user to doc collaborators on mention (#5340) + +### UBERF-6509 + +- Fix reading mention notifications (#5323) + +### UBERF-6523 + +- Allow to use zstd (#5333) + +### UBERF-6540 + +- Fix isIndexable and clean wrong indexed documents (#5347) + +## [0.6.230] - 2024-04-10 + +### Silent + +- False for notifications (#5284) + +### UBERF-6469 + +- Rework workspace creation to more informative (#5291) + +## [0.6.229] - 2024-04-10 + +### 🚀 Features + +- *(help)* Added find bug button for easy navigation (#5214) + +### Qfix + +- Center media, improve matching (#5267) + +### UBERF-6353 + +- Extensible preview (#5264) + +## [0.6.228a] - 2024-04-09 + +### UBERF-6426 + +- Fix stuck backup (#5258) + +### UBERF-6433 + +- Fix workspace creation from demo workspaces (#5255) + +## [0.6.228] - 2024-04-08 + +### TSK-1682 + +- Introduced reusable `SectionEmpty` for numerous existing and upcoming cases (#5220) + +### UBERF-6313 + +- Improve backup/restore (#5241) + +## [0.6.227] - 2024-04-08 + +### EZQMS-663 + +- Add permissions util (#5189) + +### Qfix + +- Restore ats task types tool (#5185) + +### TSK-1682 + +- Slightly reorganized recruit files for future changes (#5196) + +### UBERF-6374 + +- Improve server logging and improve startup performance (#5210) + +### UBERF-6393 + +- Work on elastic fast backup/restore (#5235) + +## [0.6.226] - 2024-04-04 + +### UBERF-6313 + +- Improve upgrade of workspace (#5178) + +### UBERF-6314 + +- Provide space if all of the items have same space (#5171) + +### UBERF-6318 + +- Fix server drop connection on connect (#5174) + +## [0.6.225] - 2024-04-03 + +### UBERF-6296 + +- Fix elastic queries (#5155) + +### UBERF-6300 + +- Not cache for index.html's (#5159) + +### UBERF-6310 + +- Fix context passing (#5167) + +### Uberf-6255 + +- Minor guest and pdf viewer adjustments (#5164) + +## [0.6.224] - 2024-04-02 + +### QFIX + +- Wrong minio config parameter (#5151) + +## [0.6.223] - 2024-04-02 + +### UBERF-6161 + +- Storage configuration (#5109) + +### UBERF-6263 + +- Fix mongo client unexpected close (#5129) + +### UBERF-6265 + +- Fix account creation from account service (#5132) + +### UBERF-6267 + +- Fix few platform troubles (#5142) + +## [0.6.222] - 2024-04-01 + +### 🚀 Features + +- Preview media attachments (#5102) + +### UBERF-6226 + +- Updated LOVE layout, VideoPopup. (#5100) + +### UBERF-6242 + +- More proper manage mongo connections (#5118) + +## [0.6.221] - 2024-03-29 + +### Qfix + +- Consistent space/project/task type mixi ids (#5089) + +### Ezqms-663 + +- Add more info to permissions store, fix tree element actions (#5090) + +### Uberf-6224 + +- Restore missing task types (#5094) + +## [0.6.220] - 2024-03-28 + +### Qfix + +- Invert delete object permission (#5085) + +## [0.6.219] - 2024-03-28 + +### EZQMS-612 + +- Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) (#5083) + +### EZQMS-665 + +- Minor inbox styles fix (#5065) + +### UBERF-6001 + +- Roles management (#4994) + +### UBERF-6202 + +- Use only one mongo pull per configuration (#5073) + +### UBERF-6209 + +- Add reactivity (#5078) + +## [0.6.218] - 2024-03-27 + +### 🚀 Features + +- *(test)* Updated Due date filter test (#5057) + +### UBERF-6094 + +- Preparing bot (#5061) + +### UBERF-6180 + +- Fix account issues (#5063) + +### UBERF-6194 + +- CLI for rename account (#5067) + +## [0.6.216] - 2024-03-25 + +### 🚀 Features + +- *(planner)* Drag-n-drop (#5031) +- *(planner)* Save accordion state (#5042) +- *(planner)* Remove large view mode (#5043) + +### 🐛 Bug Fixes + +- `Panel` glitches on opening (#5033) + +### QFix + +- Few check from sentry and disable due date test (#5050) + +### UBERF-6124 + +- Rework inbox view (#5046) + +### UBERF-6126 + +- Storage adapter (#5035) + +### UBERF-6150 + +- Improve backup logic (#5041) + +## [0.6.215] - 2024-03-21 + +### EZQMS-602 + +- Moved `Rank` type to core (utilities stay in its own package) (#5019) + +### UBERF-6121 + +- Fix front service caching (#5029) + +## [0.6.214] - 2024-03-19 + +### 🚀 Features + +- *(planner)* Add action for toggle button (#4986) +- *(test)* Working on the migration planner tests (#5002) +- *(planner)* Some ui improvements (#4992) +- *(planner)* New layout for attached todos (#4995) +- *(planner)* New slots, fixes and improvements (#4961) + +### EZQMS-642 + +- Extended `navigate()` signature to support History replacement (#4979) + +### UBERF-6053 + +- Do not crash on isDerived (#4998) + +### UBERF-6058 + +- Fix cache control for front service (#5000) + +### UBERF-6066 + +- Fix component manager state (#5009) + +## [0.6.213] - 2024-03-15 + +### 🐛 Bug Fixes + +- Default project icon (#4984) + +### UBERF-6042 + +- Fix front service (#4991) + +## [0.6.212] - 2024-03-15 + +### 🚀 Features + +- *(test)* Updated Document public link revoke test (#4955) + +### 🐛 Bug Fixes + +- Missed invite icon (#4962) + +### UBERF-5933 + +- Add 404 handling in case of resource direct requests (#4983) + +### UBERF-5986 + +- Upgrade fixes (#4957) + +### UBERF-6000 + +- Fix statuses filtering and icons (#4966) + +### UBERF-6014 + +- Fix $faset usage (#4971) + +## [0.6.211] - 2024-03-13 + +### UBERF-5982 + +- Fix tracker select all action (#4950) + +## [0.6.210a] - 2024-03-13 + +### 🐛 Bug Fixes + +- *(planner)* Frozen slots when switching between todos (#4944) + +### TESTS-221 + +- Feat(tests): done Document public link revoke test (#4940) + +## [0.6.210] - 2024-03-13 + +### 🚀 Features + +- *(planner)* New priority layout, update item layout (#4896) +- *(test)* Updated Due Date test (#4925) + +### EZQMS-459 + +- Hoisted `showNotify` calculation to `ActivityNotificationPresenter` (#4937) + +### EZQMS-649 + +- Moved some common utilities from Uberflow to Platform (#4927) + +### TESTS-102 + +- Feat(tests): done Label filter test (#4885) + +### TESTS-216 + +- Feat(tests): done Public link generate test (#4915) + +### TESTS-217 + +- Feat(test): done Public link Revoke test (#4926) + +### TESTS-236 + +- Feat(tests): done Create workspace with LastToken in the localStorage test (#4939) + +### TESTS-94 + +- Feat(tests): done Due date filter test (#4891) + +### UBERF-5825 + +- Fix github issues (#4924) + +### UBERF-5932 + +- Fix account upgrade (#4912) + +## [0.6.209] - 2024-03-08 + +### 🚀 Features + +- *(planner)* Improve and reuse `Chip` (#4854) + +### 🐛 Bug Fixes + +- *(todo)* Checkbox focus and spinner (#4890) +- *(todo)* Broken context actions (#4889) + +### EZQMS-377 + +- Add file attachments extension to text editor (#4284) + +### EZQMS-562 + +- Introduced reusable `NotificationToast` component (#4873) + +### EZQMS-602 + +- Moved Rank to its own package (#4845) + +### TESTS-100 + +- Feat(tests): done Milestone filter test (#4872) + +### TESTS-101 + +- Feat(tests): done Modified by filter test (#4871) + +### TESTS-103 + +- Feat(tests): done Title filter test (#4863) + +### UBERF-5811 + +- Rework backlinks (#4887) + +### UBERF-5827 + +- Add collaborative description for companies (#4851) + +### UBERF-5886 + +- Fix todo reorder on click (#4904) + +## [0.6.208] - 2024-03-04 + +### 🚀 Features + +- New todo checkbox (#4841) +- *(tests)* TESTS-93 updated Created date filter test (#4862) +- *(tests)* Updated Created date filter test (#4868) + +### 🐛 Bug Fixes + +- Create event popup improvements (#4850) + +### TESTS-212 + +- Feat(tests): done Add comment by popup test (#4817) + +### UBERF-5870 + +- Fix cache control and some minor enhancements (#4869) + +## [0.6.207] - 2024-03-01 + +### UBERF-5812 + +- Fix allow to delete based on all my accounts (#4823) + +## [0.6.206] - 2024-03-01 + +### 🚀 Features + +- *(tests)* Added documents tests (#4843) + +### UBERF-5712 + +- Fix jumping when scroll in bottom and add auto scroll to new content (#4830) + +## [0.6.205] - 2024-02-29 + +### 🚀 Features + +- *(tests)* Added execute deploy in any status (#4767) + +### TESTS-196 + +- Feat(test): done Remove relation be editing issue details test (#4755) + +### UBER-1239 + +- Fix missing notifications for mentions from doc (#4820) + +### UBERF-5394 + +- Create component for new search input (#4777) + +### UBERF-5604 + +- Avoid extra calls on read notifications (#4781) + +### UBERF-5621 + +- Add full date tooltip (#4783) + +### UBERF-5626 + +- Set autofocus end on message edit (#4784) + +### UBERF-5630 + +- Fix inactive employee status in activity (#4782) + +### UBERF-5650 + +- Do not send mention notification if user already notified (#4821) + +### UBERF-5675 + +- Fix activity and notifications for colelction update (#4819) + +### UBERF-5718 + +- Allow to find one from existing queries (#4776) + +### UBERF-5733 + +- Remove invalid lookup update (#4779) + +### UBERF-5734 + +- Fix guest mode display of server generated links (#4790) + +### UBERF-5744 + +- Fix exception on server (#4787) + +### UBERF-5795 + +- Improve logging capabilities (#4813) + +## [0.6.204] - 2024-02-26 + +### TESTS-193 + +- TESTS-194: feat(tests): working on the tests (#4739) + +## [0.6.203] - 2024-02-25 + +### UBERF-5511 + +- Fix query and include ibm plex mono (#4764) + +## [0.6.202] - 2024-02-23 + +### 🚀 Features + +- *(tests)* TESTS-47 done Mark as blocked by test (#4737) + +### UBER-958 + +- Fix query updates (#4742) + +### UBERF-5594 + +- Render mentions before object is loaded (#4738) + +### UBERF-5595 + +- Hide link preview for chat (#4752) +- Set up attachments sizes (#4746) + +### UBERF-5628 + +- Fix unexpected Reference object in Activity on mentions in description (#4753) + +### UBERF-5673 + +- Esbuild transpile (#4748) + +### UBERF-5694 + +- Attempt to fix build cache (#4757) + +## [0.6.201] - 2024-02-20 + +### TESTS-182 + +- Feat(tests): done Create sub-issue from template test (#4711) + +### UBER-1227 + +- Fix members duplicates (#4721) + +## [0.6.200] - 2024-02-19 + +### TESTS-192 + +- Feat(tests): done Add comment with image attachment test (#4687) + +### UBER-708 + +- Github related fixes (#4704) + +### UBERF-5472 + +- Add pagination for channels/direct (#4706) + +### UBERF-5586 + +- Improve loading of reactions and saved messages (#4694) + +## [0.6.198] - 2024-02-16 + +### 🚀 Features + +- *(tests)* Updated reports and prepare server step (#4659) + +### QFIX + +- Create project type (#4685) + +### UBERF-5548 + +- Use esbuild with webpack (#4657) + +### UBERF-5570 + +- Fix avatars (#4679) + +### UBERF-5575 + +- Fix workspace join (#4684) + +### Uberf-5551 + +- Configurable click propagation from edit box (#4674) + +## [0.6.197] - 2024-02-15 + +### UBERF-5526 + +- Fix scroll to new messages (#4651) + +### UBERF-5532 + +- Fix recruit comments typo (#4648) + +### UBERF-5538 + +- Fix server queryFind with mixins (#4653) + +## [0.6.196] - 2024-02-14 + +### EZQMS-563 + +- Moved `ActionWithAvailability` helper type and functions from `questions` to `view` (#4611) + +### UBERF-4319 + +- Fix performance issues (#4631) + +### UBERF-5467 + +- Remove hidden notifications and use Lazy on inbox (#4632) + +### UBERF-5476 + +- Fix archive in inbox (#4618) + +### UBERF-5485 + +- Fix versions in bundled resources (#4625) + +### UBERF-5495 + +- Load all messages for inbox with one query (#4628) + +## [0.6.195] - 2024-02-13 + +### TESTS-167 + +- Feat(tests): done Check that the issue backlink test (#4596) + +### TESTS-179 + +- Feat(tests): done Check the changed description activity test (#4598) + +### UBEF-4319 + +- Few more performance fixes (#4613) + +### UBERF-4319 + +- Fix create issue performance (#4608) + +### UBERF-5323 + +- Fix new messages marker (#4614) + +### UBERF-5324 + +- Allow cmd-k for editable content (#4601) + +### UBERF-5438 + +- Fix edit issue attributes keys (#4602) + +## [0.6.194] - 2024-02-09 + +### 🚀 Features + +- *(tests)* TESTS-166 done Check Contact activity backlink test (#4585) + +### UBERF-5408 + +- Fix inline images in comments (#4591) + +### UBERF-5418 + +- Fix status editing (#4590) + +## [0.6.193] - 2024-02-08 + +### 🚀 Features + +- *(test)* Updated Move to project test (#4582) + +### TESTS-164 + +- Feat(tests): done mentioned in the issue test (#4575) + +### UBERF-4867 + +- Fix issues mentions display (#4580) + +### UBERF-5325 + +- Disable send message during attachment upload (#4583) + +### UBERF-5326 + +- Fix extra scroll and higlight when thread opened (#4579) + +### UBERF-5382 + +- Allow to disable component edit for some cases (#4574) + +### UBERF-5393 + +- Fix backlink for thread (#4578) + +## [0.6.192] - 2024-02-07 + +### 🚀 Features + +- *(tests)* Updated Create duplicate issues test (#4542) +- *(tests)* Updated close issue selector (#4551) +- *(tests)* TESTS-171 done Check validation steps test (#4558) + +### 🐛 Bug Fixes + +- Tags view action button layout (#4514) + +### EZQMS-531 + +- Prop to disable Save As and Save buttons in `FilterBar` (#4560) + +### TESTS-169 + +- Feat(tests): done Create a workspace with a custom name test (#4541) + +### UBERF-4319 + +- Trigger Server queries (#4550) + +### UBERF-5289 + +- Fix getting parent doc for some cases for indexing (#4549) + +### UBERF-5315 + +- Update chat (#4572) + +### UBERF-5321 + +- Fix workspace CLI upgrade (#4534) + +### UBERF-5348 + +- Fix new status creation (#4567) + +### UBERF-5350 + +- Fix workspace name create issue (#4555) + +### UBERF-5364 + +- Fix targeted broadcast on server (#4565) + +## [0.6.191] - 2024-02-05 + +### 🐛 Bug Fixes + +- Broken checkbox behavior (#4509) +- Popup glitches caused by long calculations (#4511) + +### UBERF-5017 + +- Show correct collaborators diff and dont send notification for collaborators changer (#4529) + +### UBERF-5304 + +- Fix init workspace (#4524) + +## [0.6.190] - 2024-02-03 + +### UBERF-5280 + +- Fix backup service (#4506) + +## [0.6.188] - 2024-02-02 + +### 🚀 Features + +- *(tests)* Updated filter between tests (#4488) + +### EZQMS-467 + +- Fixed group for `Open in new tab` action (#4481) + +### UBER-1160 + +- Open vacancy panel when it’s opened from applicant (#4473) + +### UBER-944 + +- Action for opening in new tab (#4447) + +### UBERF-4319 + +- Performance changes (#4474) +- Improve performance (#4501) + +### UBERF-4983 + +- Update chat ui (#4483) + +### UBERF-5020 + +- Fix reply to thread (#4502) + +### UBERF-5140 + +- Any workspace names (#4489) + +### UBERF-5232 + +- Fix wrong activity message title (#4498) + +### UBERF-5243 + +- Add default size, make icons size consistent (#4494) + +### UBERF-5265 + +- Fix workspace creation (#4499) + +### UBERF-5275 + +- Fix collaborator editing (#4505) + +## [0.6.187] - 2024-01-30 + +### TESTS-159 + +- Feat(tests): done Create issue with several attachment tests (#4464) + +### UBER-1005 + +- Array> support as custom attribute (#4471) + +### UBER-1198 + +- Upgrade to mongo 7 (#4472) + +### UBERF-4631 + +- Fix issue when link preview in activity displayed as #undefined (#4435) + +### Ezqms-537 + +- Make thread header hidable (#4458) + +## [0.6.186] - 2024-01-25 + +### 🚀 Features + +- *(tests)* Updated duplicate issues test (#4450) + +### EZQMS-461 + +- Add generics for `ModeSelector` and `SpecialView` (#4437) +- Better typings for `ModeSelector` (#4451) + +### UBERF-4970 + +- Fix component update (#4455) + +### UBERF-5083 + +- Fix project delete (#4446) + +## [0.6.185] - 2024-01-25 + +### Ezqms-538 + +- Allow command contributions to dev tool (#4440) + +## [0.6.184] - 2024-01-24 + +### 🚀 Features + +- *(tests)* Skipped Set parent issue test (#4427) + +### EZQMS-527 + +- Introduced `ActionButton` component (#4412) +- Consistent defaults for `ActionButton` (#4421) + +## [0.6.183] - 2024-01-23 + +### UBERF-5018 + +- Search improvements/Indexing fix (#4403) + +### UBERF-5024 + +- Add reactions control to inbox (#4414) + +### UBERF-5042 + +- Fix exception in list view (#4419) + +## [0.6.182] - 2024-01-22 + +### EZQMS-527 + +- Expose `EmployeeArrayEditor` from `contact-resources` (#4411) + +### UBERF-5012 + +- Remove extra key (avoid reloading after notifications deleting) (#4399) +- Use flat message view if doc has only one notification (#4410) + +### UBERF-5023 + +- Make flat view default (#4409) + +## [0.6.181a] - 2024-01-20 + +### 🚀 Features + +- *(test)* Updated flaky tests (#4393) + +### QFIX + +- Remove unused deps (#4394) + +## [0.6.181] - 2024-01-19 + +### EZQMS-457 + +- Added optional ModeSelector to SpecialView (#4381) + +### EZQMS-529 + +- Added support for primary/positive/negative kinds for CheckBox and RadioButton (#4384) +- Added support for `grow` and new `align` display options in `Table` (#4389) + +### UBERF-5000 + +- Handle derived tx for security context update (#4391) + +## [0.6.180] - 2024-01-18 + +### QFIX + +- Return ActivityMessageHeader, since it is used by github (#4377) + +### UBERF-4361 + +- Update inbox ui (#4376) + +## [0.6.179] - 2024-01-17 + +### 🚀 Features + +- *(tests)* Updated flaky tests (#4367) + +### EZQMS-470 + +- Add server side tiptap extension for node uuid (#4358) + +### UBER-1188 + +- Fix exception during login/logout (#4364) + +### UBERF-4957 + +- Fix status colors (#4369) + +## [0.6.178] - 2024-01-16 + +### 🚀 Features + +- *(tests)* Update Merge contacts test (#4339) + +### 🐛 Bug Fixes + +- *(tests)* Disabled failed tests (#4331) + +### QFIX + +- Change activity onhover (#4336) + +### UBER-1187 + +- AnyType field support (#4343) + +### UBERF-4360 + +- Rewrite chat (#4265) + +### UBERF-4868 + +- Disable draft saving for comment editing (#4332) + +### UBERF-4928 + +- Indexing fixes (#4357) + +## [0.6.177] - 2024-01-08 + +### UBER-1185 + +- Fix TT migration issues (#4320) + +### UBERF-4870 + +- Fixed attribute creation (#4325) + +## [0.6.175] - 2024-01-05 + +### 🚀 Features + +- *(tests)* Updated tests (#4296) + +## [0.6.174a] - 2023-12-29 + +### UBERF-4799 + +- Fix migration tasktype doubling (#4289) + +## [0.6.173] - 2023-12-28 + +### 🚀 Features + +- *(tests)* TESTS-15 done Create a new Company test (#4242) +- *(tests)* Updated flaky tests (#4244) +- *(tests)* TESTS-21 done Match to vacancy test (#4268) + +### EZQMS-430 + +- Update change document owner popup (#4278) + +### TESTS-16 + +- Feat(tests): done Edit a Company test (#4243) + +### TESTS-17 + +- Feat(tests): done Delete a Company test (#4252) + +### TESTS-20 + +- Feat(tests): done Archive a Vacancy test (#4254) + +### TESTS-23 + +- Feat(tests): done Export vacancies tests (#4253) + +### TESTS-51 + +- Feat(tests): done Delete a component test (#4234) + +### TSK-1668 + +- Side changes from Surveys (#4271) + +### UBER-1178 + +- Rework indexing fields (#4261) + +### UBERF-4716 + +- Activity info message (#4241) + +### UBERF-4729 + +- Fix front service (#4260) + +### UBERF-4738 + +- Fix attachments preview (#4259) + +### Ezqms-449 + +- Wrap initial collaborator content loading with try-catch (#4256) + +### Ezqms-452 + +- Fix issue presenter (#4263) + +## [0.6.172] - 2023-12-21 + +### 🚀 Features + +- *(tests)* TESTS-48 done Create duplicate issues test (#4225) +- *(tests)* TESTS-40 done Delete an issue test (#4233) + +### TESTS-50 + +- Feat(tests): done Edit a component test (#4232) + +### UBERF-4692 + +- Remove activity messages on doc remove (#4227) + +### UBERF-4707 + +- Fix activity messages updating (#4238) + +### QFix + +- Update DropdownLabels for showing dropdown icon (#4230) + +## [0.6.171] - 2023-12-20 + +### 🚀 Features + +- *(tests)* TESTS-54 done Edit a Milestone test (#4175) +- *(tests)* TESTS-55 done Delete a Milestone test (#4184) +- *(tests)* Updated tests (#4185) +- *(tests)* Updated sanity-ws dump and tests (#4202) +- *(tests)* TESTS-45 done Move to project test (#4203) +- *(tests)* Updated tests (#4209) +- *(tests)* Updated Edit a sub-issue test (#4210) +- *(tests)* Updated move to project tests (#4214) +- *(tests)* TESTS-81 done Comment stored test (#4216) +- *(tests)* Updated flaky tests (#4218) +- *(tests)* TESTS-106 (#4217) +- *(tests)* TESTS-41 done Delete a sub-issue test (#4223) +- *(tests)* Updated tests (#4224) + +### EZQMS-440 + +- Fix quality events (#4183) + +### TESTS-42 + +- Feat(tests): done Edit Sub-Issue test (#4191) + +### TESTS-44 + +- Feat(tests): the Set parent issue test (#4158) + +### TESTS-46 + +- Feat(tests): done New related issue test (#4192) + +### TESTS-59 + +- Feat(tests): done Create an Issue from template test (#4212) + +### TESTS-98 + +- Feat(tests): done Created by filter test (#4161) + +### TESTS-99 + +- Feat(tests): done Component filter test (#4162) + +### TSK-1668 + +- Survey plugin (#4174) + +### UBER-1179 + +- Fix comments saving (#4205) + +### UBER-1182 + +- Fix github task types support (#4215) +- Fix task type categories (#4222) + +### UBERF-4248 + +- Task type (#4042) + +### UBERF-4432 + +- Better notifications for Chunter (#4165) + +### UBERF-4610 + +- Fix checkbox behaviour (#4173) + +### UBERF-4620 + +- Fix show less triangle (#4182) + +### UBERF-4632 + +- Refactor activity classes structure (#4190) + +### UBERF-4649 + +- Fix query projection/cache issue (#4200) + +## [0.6.170] - 2023-12-07 + +### TESTS-26 + +- Feat(tests): done Archive Project tests (#4157) + +### TESTS-97 + +- Feat(tests): done the Priority filter test (#4156) + +### UBERF-4451 + +- Fixed how resolved default location is applied on initial routing (#4159) + +### UBERF-4526 + +- Elastic bulk error on re-indexing (#4155) + +## [0.6.169] - 2023-12-06 + +### 🚀 Features + +- *(tests)* Updated sanity-ws dump (#4149) +- *(tests)* TESTS-95 done Status filter test (#4150) + +### TESTS-25 + +- Feat(tests): done Edit project tests (#4138) + +### UBERF-4477 + +- Fixed positioning of `AddSavedView` popup (#4148) + +### UBERF-4560 + +- Filter out spaces that are archived for kanban (#4147) + +## [0.6.168] - 2023-12-05 + +### UBERF-4555 + +- Fix elastic backup/restore (#4144) + +## [0.6.167] - 2023-12-05 + +### 🚀 Features + +- *(tests)* Updated issues.spec.ts test (#4136) + +### TESTS-24 + +- Feat(tests): done Create project test (#4126) + +### UBER-1144 + +- Fixed estimation time representation used when creating issue and issue template (#4139) + +### UBERF-4470 + +- Make SetLabels action available on a single focused issue (#4140) + +## [0.6.166] - 2023-12-04 + +### EZQMS-394 + +- Update diff viewer lint button colors (#4115) + +### UBERF-4527 + +- Extra logging for client (#4133) + +## [0.6.165] - 2023-12-02 + +### 🚀 Features + +- *(tests)* TESTS-58 dont test delete template (#4125) + +### UBER-1086 + +- Fixed Elastic scroll contexts overflow issue, added tests for Elastic (#4124) + +### UBERF-4514 + +- Option for order of activity, pinned first in CommentPopup (#4122) + +## [0.6.164] - 2023-12-01 + +### 🚀 Features + +- *(tests)* Done TESTS-93 (#4110) + +### EZQMS-403 + +- Displatch value update from EditBox (#4114) + +### EZQMS-407 + +- Add Panel post utils slot (#4116) + +### UBER-1083 + +- Use hours and minutes to present less than a day durations (#4111) + +### UBERF-4493 + +- Mentions. When there is a lot of Applicants it's really difficult to mention employee (#4119) + +## [0.6.163] - 2023-11-29 + +### TESTS + +- Feat(tests): updated flaky tests (#4106) + +### UBER-1006 + +- Support Ref for Vacancies (#4104) + +### UBERF-4405 + +- Empty Vacancies' members (#4105) + +### UBERF-4478 + +- Set modifiedOn on server for collections tx (#4103) + +### UBERF-4486 + +- Fix mention and spotlight categories (#4108) + +## [0.6.162] - 2023-11-29 + +### 🚀 Features + +- *(tests)* Updated create-vacancy test (#4091) + +### EZQMS-398 + +- Fix StringDiffViewer (#4089) + +### TESTS-92 + +- Feat(tests): done Tracker filters tests - Modified date (#4094) + +### UBERF-4238 + +- Fix calendar utils (#4092) + +### UBERF-4428 + +- Add option to disable indexing for a class (#4090) + +### UBERF-4446 + +- Move search from text editor (#4093) + +## [0.6.161] - 2023-11-28 + +### EZQMS-398 + +- Update CollaborationDiffViewer (#4075) +- Add StringDiffViewer (#4085) + +### Qfix + +- Fix asterisk usage in forms (#4080) + +### TESTS-56 + +- Feat(tests): done Create a Template test (#4063) + +### TESTS-57 + +- Feat(tests): done Edit a Template test (#4079) + +### TESTS-88 + +- Feat(tests): done Add comment from several users test (#4054) + +### UBERF-4165 + +- Add search to actions popup (#4057) + +### UBERF-4413 + +- Kanban with huge data sets (#4076) + +### UBERF-4420 + +- Bump fieldStateId (#4071) + +## [0.6.160] - 2023-11-27 + +### EZQMS-393 + +- Add CollaboratorEditor prop to hide popups (#4051) + +### TESTS-89 + +- Feat(tests): working on First user change assignee, second user should see assigned issue test (#4046) + +## [0.6.159] - 2023-11-24 + +### UBER-945 + +- Pinning for comments (#4050) + +### UBERF-4384 + +- Update space from attributes (#4049) + +### UBERF-4388 + +- Few performance related fixes (#4053) + +## [0.6.158] - 2023-11-23 + +### EZQMS-368 + +- Fix exit text editor node uuid extension node (#4044) + +### TESTS-85 + +- Feat(tests): added issues.spec.ts test (#4025) + +### TESTS-87 + +- Feat(tests): done Issues status can be changed by another users test (#4036) + +### UBER-1167 + +- Revert All/Active/Backlog for issues (#4047) + +### UBER-636 + +- Fix from&to for NewMessage (#4043) + +### UBERF-4302 + +- Added footer to Calendar (#4033) + +### UBERF-4325 + +- Boost titles (#4023) + +## [0.6.157] - 2023-11-21 + +### EZQMS-342 + +- Add text editor configurable active highlighted node (#4019) + +### TESTS-71 + +- Feat(tests): updated allure parent suite (#4010) + +### UBER-1074 + +- Svelte 4 (#4014) + +### UBER-911 + +- Mentions without second input and tabs (#3798) + +### UBERF-4229 + +- Fix createAttachments runtime error (#3960) + +### UBERF-4324 + +- While indexing is still in progress we see undefined (#4017) + +### UBERF-4348 + +- Mentions. Fix render props types and component props types (#4022) + +## [0.6.156] - 2023-11-15 + +### 🚀 Features + +- *(tests)* Updated tracker.loading.spec.ts test (#3989) + +### QFix + +- Swapping actions between buttons (#3990) + +### UBER-1164 + +- Clickable panel on the desktop app (#3988) + +### UBERF-4216 + +- Fix query for cases with mixins (#3981) + +### UBERF-4287 + +- Fix Indexer peak memory usage (#3993) + +### UBERF-4289 + +- Allow to configure user agent (#3995) + +## [0.6.155a] - 2023-11-14 + +### 🚀 Features + +- *(ci)* Updated Deploy report to Github Pages flow step (#3984) + +### UBERF-4267 + +- Fix mergeQuery, provide a test case for it (#3985) + +## [0.6.155] - 2023-11-14 + +### 🚀 Features + +- *(tests)* Added allure report for tests (#3944) + +### UBERF-4161 + +- Few inbox fixes (#3976) + +### UBERF-4205 + +- Updated Panel header layout, custom aside (#3974) + +### UBERF-4263 + +- Restore Back and Close button, fixed selectedAside (#3983) + +## [0.6.154a] - 2023-11-10 + +### UBER-942 + +- Few skill fixes (#3971) + +## [0.6.154] - 2023-11-10 + +### EZQMS-360 + +- Platform changes for document comments highlight sync (#3965) + +### UBERF-4136 + +- Fix global actions (#3961) + +### UBERF-4195 + +- Fix query after applying viewOptions (#3942) + +## [0.6.153] - 2023-11-08 + +### UBERF-4136 + +- New issues from command palette (#3956) + +## [0.6.152] - 2023-11-07 + +### UBER-1127 + +- Updated status bar layout (#3940) + +### UBER-1141 + +- Fixed Comments popup layout (#3946) + +### UBER-1159 + +- Fixed horizontal scrolling in Scroller (#3945) + +### UBER-1161 + +- Remove async to correctly handle query change (#3951) + +### UBER-942 + +- Rework skill optimization (#3941) + +## [0.6.151] - 2023-11-03 + +### EZQMS-350 + +- Fix reactions in threads (#3935) + +### UBER-1143 + +- Additional skill parsing, increase timeout for filter (#3933) + +### UBER-1157 + +- Some dependant fixes (#3936) + +## [0.6.150] - 2023-11-01 + +### 🚀 Features + +- *(tests)* TESTS-39 done edit issue test (#3918) + +### QMS + +- Fix collaborator editor loading (#3920) + +### UBER-1116 + +- Saving sidebar changes (#3919) + +### UBER-1137 + +- Prevent changes of spaces while kanban drag-and-drop (#3928) + +### UBER-1143 + +- Setting for skill import, redirect to talents from skillsView (#3925) + +### UBER-1149 + +- Events in team planing fixes (#3922) + +### UBERF-18 + +- Add reactions for comments (#3899) + +### UBERF-4132 + +- Fix unexpected delete of documents in query (#3921) + +### Ezqms-334 + +- More configurations for radio button and radio group (#3917) + +## [0.6.149] - 2023-10-30 + +### 🚀 Features + +- *(tests)* TESTS-43 added the Create an issue with all params test (#3905) + +### 🐛 Bug Fixes + +- *(tests)* Updated the today selector for calendar (#3908) +- *(tests)* Updated the today selector for issues page (#3911) + +### EZQMS-327 + +- Move inline comments to platform popups (#3909) + +### EZQMS-333 + +- Customizable RadioButton label (#3900) + +### TESTS-18 + +- Feat(tests): added edit vacancy test (#3901) + +### UBER-1101 + +- Updated Separator (Float mode), fixed Scroller visibility (#3902) + +### UBER-1146 + +- Fix scrolling in emojis popup (#3912) + +## [0.6.148] - 2023-10-26 + +### UBER-1027 + +- Don't update issue space in kanban view (#3895) + +### UBER-634 + +- Focus on SelectPopup (#3897) + +### UBER-898 + +- Assignee rules and general rules fix (#3894) + +## [0.6.147] - 2023-10-26 + +### 🚀 Features + +- *(tests)* Added Change & Save all States test (#3863) +- *(tests)* TESTS-10 added the Delete the Talent test (#3883) + +### EZQMS-306 + +- Add extensions for chunter message version (#3882) + +### TESTS-22 + +- Feat(tests): done test Merge Contacts (#3891) + +### TESTS-9 + +- Feat(tests): added edit Talent test (#3871) + +### UBER-1088 + +- ListItem fix. (#3872) + +### UBER-1097 + +- Remove second status editor amd fix done state selection in new Applicant popup (#3869) + +### UBER-1099,-1100 + +- Milestone fixes. (#3873) + +### UBER-1106,-1108 + +- Update navigator and button layout (#3870) + +### UBER-1128 + +- Fix to many requests from query (#3888) + +### UBER-1129 + +- Fix list support attached documents properly (#3889) + +### UBER-937 + +- Extensibility changes (#3874) + +### UBER-942 + +- Fix-skills script (#3876) + +### Ezqms-331 + +- Fix disabled button icon style (#3881) + +## [0.6.146] - 2023-10-23 + +### 🚀 Features + +- *(tests)* Added delete application test (#3859) + +## [0.6.145] - 2023-10-19 + +### 🚀 Features + +- *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts (#3847) +- *(recruiting)* Working on update recruit tests and adding Edit Application test (#3851) + +### EZQMS-278 + +- Update comments popups (#3849) +- Adjust view inline comments UI (#3855) + +### EZQMS-291 + +- Fix documents node selections issues (#3845) + +### UBER-1085 + +- Improve upgrade tool (#3852) + +### UBER-1091 + +- Fix attach button (#3854) + +### UBER-921 + +- Improve full text search (#3848) + +### UBERF-31 + +- Fix comment edit (#3853) + +## [0.6.144] - 2023-10-16 + +### TextEditor + +- Refactor attachments (#3833) + +### UBER-1052 + +- Fix remainings (#3844) + +## [0.6.142] - 2023-10-13 + +### UBER-1039 + +- Codeblock style fixes. (#3829) + +### UBERF-3997 + +- Fix Tab navigation in text editors (#3832) + +## [0.6.141] - 2023-10-11 + +### UBER-1038 + +- Fix flicking during issue creation (#3826) + +### UBER-953 + +- Fix related issues (#3821) + +## [0.6.140] - 2023-10-10 + +### QMS + +- Update inline comments extensions (#3814) + +### UBER-984 + +- UI fixes, Panel auto resize (#3818) + +## [0.6.139a] - 2023-10-09 + +### UBER-955 + +- Added Separator component (#3804) + +## [0.6.138] - 2023-10-06 + +### QFIX + +- Child info could be empty (#3785) + +### UBER-987 + +- Fix emojis in the middle of something (URLs) (#3790) + +## [0.6.137] - 2023-10-03 + +### EZQMS-279 + +- Remove .ProseMirror global css (#3772) + +### UBER-974 + +- Fix saved views and mode in filters (#3780) + +### UBER-977 + +- A remaining time (#3783) + +## [0.6.136] - 2023-10-02 + +### UBER-963 + +- Related issues (#3773) + +### UBERF-17 + +- Missing smiles auto-conversion in rich texts :) (#3771) + +## [0.6.135] - 2023-10-01 + +### EZQMS-266 + +- Commenting on document (#3759) + +### UBER-920 + +- Fixed drag and drop in Calendar (#3767) + +### UBER-939 + +- Speedup table/kanban (#3764) + +## [0.6.134] - 2023-09-29 + +### Calendar + +- Resize and move event (#3750) + +### UBER-845 + +- Add NotificationPresenter to send rich text notifications (#3729) + +### UBER-924 + +- Fix file upload progress (#3757) + +## [0.6.133] - 2023-09-27 + +### UBER-902 + +- Fix transactions (#3748) + +### UBER-914 + +- Map to mixin after findAll (#3745) + +### UBER-916 + +- Navigation from issue to mentioned issue break description (#3746) + +### UBER-923 + +- Fix milestone category selector (#3747) + +## [0.6.132] - 2023-09-26 + +### QFix + +- Migration (#3734) + +### UBER-888 + +- Fixed dragging of the WorkItem (#3735) + +## [0.6.131] - 2023-09-22 + +### UBER-486 + +- Updated people avatars. (#3720) +- Replaced avatar colors (#3724) + +### UBER-799 + +- Allow extensions to tracker for github (#3727) + +### UBER-888 + +- Fixed dragging of the WorkItem (#3730) + +## [0.6.130] - 2023-09-20 + +### UBER-881 + +- Fix labels list view numbers (#3721) + +## [0.6.129] - 2023-09-20 + +### UBER-885 + +- Value filter fix (#3719) + +## [0.6.128] - 2023-09-19 + +### UBER-885 + +- Fix Object filter (#3716) + +## [0.6.127] - 2023-09-19 + +### UBER-882 + +- Fixed popup (#3713) + +## [0.6.126] - 2023-09-18 + +### UBER-784 + +- Updated WorkItemPresenter (#3710) + +### UBER-796 + +- Fixed AttachmentActions (#3709) + +### UBER-834 + +- Improve list speed (#3692) + +### UBER-839 + +- Request the category if it's not in lookup (#3679) + +### UBER-841 + +- Allowed to position work item to half hour (#3707) + +### UBER-851 + +- Fix titles in ListView (#3678) + +### UBER-852 + +- Owner should only see a list of spaces (#3677) + +### UBER-854 + +- More proper upgrade notification (#3694) + +### UBER-863 + +- Fix employee filter (#3682) + +### UBER-869 + +- Fixed mentions in Activity. Fixed messages in Inbox. (#3695) + +### UBER-871 + +- Allow to hide/show archived and done in vacancies list (#3701) + +### UBER-872 + +- StyleTextEditor: No update when change text in another text (#3698) + +### UBERF-81 + +- Replacing the label (#3708) + +## [0.6.125] - 2023-09-11 + +### UBER-828 + +- Fix slow value filter (#3676) + +## [0.6.124] - 2023-09-08 + +### 🐛 Bug Fixes + +- Trim cookie string before extracting values (#3652) + +### Activity + +- Remove inline from presenters. DoneStatesPopup fix. (#3664) + +### UBER-564 + +- Add sound notification and settings (#3655) + +### UBER-674 + +- The calendar starts from the current time. Calendar fixes. (#3671) + +### UBER-795 + +- Updated layout of pop-ups. There is always a Back in the Panel. (#3644) +- Replacing the Panel with a Dialog, fix circle button in Kanban. (#3659) + +### UBER-807 + +- Multiple github repositories fixes (#3646) +- Allow to customize create issue dialog (#3669) + +### UBER-832 + +- Fixed DatePresenter (#3653) + +### UBER-838 + +- Signout button for inactive accounts (#3662) + +### UBERF-55 + +- Change editor toolbar behavior and update icons (#3645) + +### UBERF-60 + +- Update styles and presenters. (#3651) +- Updated Rich editor and Activity styles. (#3661) +- Updated inline presenters. (#3663) + +## [0.6.123] - 2023-08-30 + +### UBER-675 + +- Updated layout of Radio and Circle button (#3638) + +### UBER-816 + +- Fix mentions (#3641) + +## [0.6.122] - 2023-08-25 + +### EZQMS-106 + +- Add elastic search by refs support (#3629) + +### UBER-675 + +- Updated pop-ups and components layout (#3631) + +### UBER-770 + +- Add custom enum and ref attributes for grouping (#3622) + +### UBER-797 + +- Fix popup menu runtime error (#3627) + +### UBER-802 + +- Support underline formatting (#3636) + +### UBER-803 + +- Fix slow filter (#3634) + +### UBER-805 + +- Remove location from grouping (#3635) + +## [0.6.121] - 2023-08-24 + +### UBER-667 + +- UI fixes, displaying All day, time editor. (#3619) + +### UBER-762 + +- Fix editor popup menu behavior (#3617) + +### UBER-772 + +- Require having employee mixin to allow Staff mixin (#3618) + +## [0.6.120a] - 2023-08-22 + +### 🐛 Bug Fixes + +- Telegram window not opening (#3615) + +## [0.6.120] - 2023-08-22 + +### UBER-773 + +- Fix List search anv Vacancy view (#3614) + +## [0.6.119] - 2023-08-19 + +### UBER-600 + +- Fix label, fix colours for boolean presenter (#3608) + +### UBER-726 + +- Ask to update if manual update is required (#3602) + +### UBER-749 + +- Fix no label for unassigned (#3603) + +### UBER-771 + +- Use cookie instead of token for images (#3607) + +## [0.6.118] - 2023-08-17 + +### Team + +- Planning UI fixes (#3599) + +### UBER-479 + +- Add List view for Vacancies (#3595) + +### UBER-500 + +- Confusing Show More button in table (#3590) + +### UBER-743 + +- Provide person instead of id as prop (#3592) + +### UBER-747 + +- Fix readonly field (#3593) + +### UBER-759 + +- Prevent mutations of original object (#3596) + +## [0.6.117] - 2023-08-14 + +### EZQMS-236 + +- QE templates >> Have the ability to make a section mandatory (#3581) + +## [0.6.116] - 2023-08-10 + +### EZQMS-152 + +- Some object selector dropdown items are cut (#3558) + +### Fix + +- Grammatical and stylistic errors (#3552) + +### UBER-720 + +- Rework list view to multiple requests (#3578) + +### Ezqms-245 + +- Allow configurable languages per deployments (#3579) + +## [0.6.115] - 2023-08-08 + +### UBER-653 + +- Open template folder that is enabled (#3573) + +### UBER-710 + +- Fix preference notifications (#3574) + +## [0.6.114] - 2023-08-07 + +### UBER-619 + +- StatusPopup for creating/renaming (#3536) + +### UBER-665 + +- Rename EmployeeAccount->PersonAccount (#3550) + +## [0.6.113] - 2023-08-03 + +### UBER-532 + +- Copy issue URL works wrong (#3529) + +### UBER-628 + +- Allow reordering when sort is set to manual in the same group (#3553) + +### UBER-648 + +- Convert project identifier to upper case (#3546) + +### UBER-677 + +- Use State for Leads' status (like applicants do) (#3554) + +## [0.6.112b] - 2023-08-01 + +### UBER-646 + +- Clear the class when view is changed to prevent using old one (#3541) + +### Ezqms-241 + +- Account for parent classes configurations in list view (#3537) + +## [0.6.112a] - 2023-07-31 + +### UBER-641 + +- Fixed DatePopup. (#3535) + +## [0.6.112] - 2023-07-29 + +### 🐛 Bug Fixes + +- Do not shrink expand/collapse icon in tree (#3517) + +### ATS-13 + +- Support multiple docs for copying (#3526) +- Copy ID action (#3533) + +### Calendar + +- Fixed the display of the past days (events) (#3527) + +### Qfix + +- Translate ezqms email confirmation letter to english (#3532) + +### TSK-1574 + +- Accurate time reports count (#3509) + +### UBER-427 + +- Disable third-nested filters (#3502) + +### UBER-550 + +- Clean milestone when moving to another project (#3498) + +### UBER-558 + +- Filter out overrides for action popup (#3499) + +### UBER-575 + +- Allow per class list view (#3524) + +### UBER-593 + +- Hyperlink editor (#3506) + +### UBER-601 + +- Fixed accentuation of ObjectPresenter (#3507) + +### UBER-609 + +- Fix inbox notification/view for telegram and gmail messages (#3518) + +### UBER-614 + +- Fix submenu popups on scrolling (#3530) + +### UBER-621 + +- Display field validation rule hint (#3521) + +### Uber-642 + +- Use system theme as the default value for application theme (#3534) + +## [0.6.111] - 2023-07-13 + +### ATS-9 + +- Update states once template updates (#3496) + +### TSK-336 + +- Mobile UI adaptation (#3492) + +### UBER-524 + +- Cleaned CSS, UI fixes. (#3491) + +## [0.6.110] - 2023-07-08 + +### UBER-142 + +- Update buttons. Cleaning CSS. (#3482) + +### UBER-298 + +- Add readonly users option to the UserBoxItems component (#3481) + +### UBER-413 + +- Allow extensible navigator model (#3477) + +### UBER-428 + +- Displaying tooltips with a delay (#3442) + +### UBER-462 + +- Prevent creating existing enum value and disable the button in that case (#3465) + +### UBER-472 + +- Don't update when it's not needed (#3460) + +### UBER-473 + +- Show icon for department (#3472) + +### UBER-477 + +- Uberflow dependencies (#3440) + +### UBER-498 + +- Replace component shortcut (#3441) + +### UBER-504 + +- Correct display of optional presenters (#3452) +- Fix presenters on ListItem. Add DeviceSizes. (#3463) + +### UBER-505 + +- Fix resolve errors in console (#3449) + +### UBER-509 + +- Do not update list of unread right after reading (#3461) + +### UBER-513 + +- Fix desktop app navigation (#3459) + +### UBER-520 + +- Fix images drag & drop (#3453) + +### UBER-525 + +- Fixed popup logic placement for top (#3448) + +### UBER-528 + +- Fix desktop navigation (#3450) + +### UBER-536 + +- Fix test stability (#3466) + +### UBER-537 + +- Review support in inbox (#3471) + +### UBER-538 + +- Update ListView layout. Subissues, related issues. (#3467) +- Fixed ListView and KanbanView. (#3475) + +### UBER-554 + +- Show messages with error and allow resending (#3488) + +### UBER-560 + +- Filter out current transaction and get mixin (#3480) + +### UBER-572 + +- Fixed overflow for emoji. (#3485) + +### UBER-573,-574 + +- Updated button styles, fixed ListView (#3484) + +## [0.6.109] - 2023-06-16 + +### UBER-424 + +- Description not saving fix (#3434) + +### UBER-450 + +- Update MentionList. (#3431) + +### UBER-480 + +- Fix ValueFilter for space-like objects (#3428) + +### UBER-482 + +- Fix 'backspace' in inbox for some objects (#3437) + +### UBER-485 + +- Implement icons. (#3433) + +### UBER-488 + +- Update selected priority on issue switch (#3436) + +### UBER-496 + +- Fix few issues (#3439) + +## [0.6.108] - 2023-06-12 + +### UBER-417 + +- Replace AddSavedView with select popup, allow renaming (#3423) + +### UBER-430 + +- Remove old migrations (#3398) + +### UBER-471 + +- Fixed maintenance warining. (#3424) + +### UBER-476 + +- Duplicate comment fix (#3425) + +### UBER-478 + +- Fix issue presenter concurrency (#3426) + +## [0.6.107] - 2023-06-09 + +### UBER-458 + +- Fix submenu (#3416) + +### UBER-459 + +- Remove whereSelected line in dropdowns. (#3417) + +### UBER-460 + +- Fix admin view (#3420) + +## [0.6.106] - 2023-06-08 + +### UBER-158 + +- New popup dialog (#3409) + +### UBER-425 + +- Tooltup/popup fixes (#3404) + +### UBER-433 + +- Allow tabs within bullets. (#3399) + +### UBER-438 + +- Use tracker as default for new users/workspaces (#3403) + +### UBER-439 + +- Fix plurals in russian (#3412) + +### UBER-440 + +- Fix link error message (#3406) + +### UBER-441,-443 + +- Disable fade in Scroller, change color for link and bg for Diff (#3405) + +### UBER-442,-452 + +- Fixed login/signup layout, link, mention and backtick. (#3408) + +### UBER-453 + +- Update favicons. (#3414) + +## [0.6.104] - 2023-06-07 + +### UBER-421 + +- Fixed attachment/comment icons (#3392) + +## [0.6.103] - 2023-06-07 + +### UBER-395 + +- Allow to drop images into description (#3382) + +### UBER-418 + +- Fix object popup a bit (#3377) + +## [0.6.102] - 2023-06-06 + +### UBER-252 + +- Mode int URL in MyLeads/MyApplications (#3347) + +### UBER-371 + +- Retina images for login page (#3351) + +### UBER-373 + +- Fix blurry avatars and other images (#3353) + +### UBER-377 + +- Fix login (#3358) + +### UBER-380 + +- Change icon (#3364) + +### UBER-383 + +- Fix null/undefined for URI and numbers (#3359) + +### UBER-394 + +- Update tiptap plugins (#3368) + +### UBER-397 + +- Fix panel activity (#3370) + +## [0.6.101] - 2023-06-05 + +### UBER-263 + +- Use person after creation (#3304) + +### UBER-276 + +- New messages and Has messages option for filter (#3326) + +### UBER-318 + +- Allow to configure default language (#3342) + +### UBER-358 + +- Fix icons (#3338) + +### UBER-364 + +- Adapt updated UI (#3348) + +### UBER-369 + +- Do not show number of comments if 0 (#3349) + +## [0.6.100] - 2023-06-02 + +### UBER-137 + +- Fix application search (#3309) + +### UBER-170 + +- Navigation for contacts (#3323) + +### UBER-172 + +- Fill contact template fields if only one selected (#3299) + +### UBER-304 + +- Fixed Navigator (#3312) + +### UBER-307,-308,-310,-311,-312 + +- Fixed activity in Inbox (#3298) + +### UBER-327 + +- Sub issues/Related issues allow to create from category header (#3317) + +### UBER-328 + +- Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. (#3314) + +### UBER-331 + +- Fix live query update (#3305) + +### UBER-338 + +- Added AppSwitcher popup. (#3329) + +### UBER-345 + +- Fixed Inbox. (#3325) + +## [0.6.99] - 2023-05-30 + +### UBER-199,-217,-232 + +- Fixed header in ListView, EditMember, ViewOptions (#3273) + +### UBER-267 + +- Fix created selection (#3269) + +### UBER-270 + +- Enable color more wide (#3279) + +### UBER-271 + +- Fix filters (#3293) + +### UBER-274,-287,-288,-294 + +- Fixed tooltip, ActionsPopup, ListHeader, activity. (#3282) + +### UBER-278 + +- Add Yes-No to popup, refactor (#3289) + +### UBER-279 + +- Total qfix (#3281) + +### UBER-289 + +- Prevent empty changes to go into transactions. (#3277) + +### UBER-295 + +- Fix blur'y popups (#3278) + +### UBER-296 + +- Fix create application color selector (#3280) + +### UBER-317 + +- Fix issue (#3285) + +### UBER-319 + +- Fix vacancy editing (#3290) + +### UBER-320 + +- Fix companies filter (#3292) + +## [0.6.98a] - 2023-05-28 + +### UBER-268 + +- List views (#3270) + +### UBER-269 + +- Fix mini toggle (#3271) + +## [0.6.98] - 2023-05-27 + +### UBER-187 + +- Inline attachments (#3264) + +### UBER-218 + +- Fix createOn -> createdOn (#3266) + +### UBER-238 + +- Colors should not use alpha channel (#3255) + +### UBER-265 + +- Updated application icons (#3263) + +### UBER-266 + +- Fix mongo exceptions (#3267) + +### UBER-267 + +- Fix Users popup (#3268) + +### UBER-53 + +- My Leads view (#3259) + +### UBER-64,-231,-229 + +- Updated CreateProject and SelectAvatar layouts, fixed bugs (#3253) + +## [0.6.97] - 2023-05-24 + +### TSK-1523 + +- Fixed IssuePreview (#3231) + +### TSK-1525 + +- Fixed VacancyPresenter (#3237) + +### UBER-134 + +- Back references (#3233) + +### UBER-135/TSK-1430 + +- Allow changing image in PDFViewer through arrow-keys (keyboard) (#3186) + +### UBER-148 + +- My Applications in recruit (#3235) + +### UBER-159 + +- Popup dialog for deleting with message if not enough permissions (#3224) + +### UBER-182 + +- Fix status object filter (#3250) + +### UBER-194,-166,-185 + +- Add application icons, fixed Inbox list and mobile layout (#3229) + +### UBER-205 + +- More info to Kanban card (due date, assignee, Lead number) (#3251) + +### UBER-206 + +- Redefined color palettes (#3243) + +### UBER-219 + +- Updated CreateIssue layout (#3244) + +### UBER-47 + +- Attributes for base class (ex. contacts in lead's customers) (#3241) + +### UBER-49 + +- Custom fields in CreateLead (#3249) + +### UBER-50 + +- Remove funnel browser (#3236) + +## [0.6.96] - 2023-05-21 + +### TSK-1257 + +- Split owner name to first and last name fields (#3156) + +### TSK-1402 + +- Fix default assignee when creating issues (#3159) + +### TSK-1469,-1470 + +- Added SelectAvatars, UserBoxItems components (#3176) + +### TSK-1489 + +- Fixed Components, Milestones, IssueTemplates layout (#3220) + +### TSK-1500 + +- Enable compression by default (#3177) + +### TSK-760 + +- Fix scroll issue for mac (#3173) + +### UBER-122 + +- Fix invalid time report shown (#3191) + +### UBER-130 + +- Fix expand/collapse on multiple levels (#3198) + +### UBER-136 + +- Fix Exception with custom attributes (#3195) + +### UBER-144 + +- Fixed showHeader (#3214) + +### UBER-174 + +- Introduce createOn every there (#3222) + +### UBER-177 + +- Fixed Filter pop-ups (#3225) + +### UBER-48 + +- Custom fields for organization in leads (#3203) + +### UBER-54 + +- Attempt to Expand/collapse issue fix (#3183) + +### UBER-56 + +- Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application (#3196) + +### UBER-62 + +- Maintenance warnings (#3210) + +### UBER-76 + +- Trigger search after timeout (#3193) + +### UBER-81 + +- Fix move project (#3182) + +### UBER-83 + +- Add BrowserStack notice into readme (#3178) + +### UBER-87 + +- Add new icons (#3188) + +### USER-145 + +- Fixed FixedColumn (#3216) + +### USER-79 + +- Fixed the sidebar in the Panel. Update IssuePreview layout. (#3201) + +## [0.6.95] - 2023-05-12 + +### TSK-1324 + +- Update popups and colors (#3152) + +### TSK-1387 + +- Count cancelled sub-issues as completed (#3158) + +### TSK-1418 + +- Make issue notification width smaller (#3160) + +### TSK-1429 + +- Rework dueDate to ignore overdue in applicants, kanban and right panel (#3169) + +### TSK-1432 + +- Fix popup closing (#3170) + +### TSK-1436 + +- Change deleting spaces to removing, add action to move all non-valid requests to correct spaces (#3149) + +### TSK-1451 + +- Fix focus issues + jump workaround (#3167) + +### TSK-1452 + +- Revert sprint statistics display (#3142) + +### TSK-1454 + +- Added varieties to the TabList (#3161) + +### TSK-1459 + +- Update Panel layout (#3163) + +### TSK-742 + +- Use partial binary protocol with ability on/off (#3153) + +## [0.6.94] - 2023-05-04 + +### TSK-1098 + +- My issues list (#3137) + +### TSK-1236 + +- Trigger to remove members when deleting department. Fix for already broken departments (#3120) + +### TSK-1257 + +- Add sorting by create time (#3138) + +### TSK-1409 + +- Bump. client resources 0.6.16 (#3134) + +### TSK-831 + +- Edit issue fixes (#3140) + +## [0.6.93] - 2023-05-04 + +### TSK-1251 + +- My issues action. Hotkeys to lower case (#3122) + +### TSK-1337 + +- Ui fixes. (#3133) + +### TSK-1394,-1407,-1412,-1417,-1422,-1423 + +- Minor fixes. Fixed Scroller. (#3124) + +### TSK-1400 + +- Show 0 in total (time spend reports) (#3127) + +### TSK-1414 + +- Fix exceptions in Kanban (#3119) +- Fix exceptions in Kanban (#3119) (#3123) + +### TSK-1419 + +- Show greyed requests on holidays and weekends (#3121) + +### TSK-1431,-1440 + +- Update AttachmentPresenter. Replace colors, minor fixes. (#3131) + +## [0.6.92] - 2023-05-02 + +### TSK-1166 + +- Sprint editor action (#3110) + +### TSK-1206 + +- Drag-drop statuses between categories (#3112) + +### TSK-1324 + +- Update kanban layout (#3118) + +### TSK-1339 + +- Resize tooltip for dueDate and ignore overdue in done/cancelled (#3113) + +### TSK-1393 + +- Fix status findAll requests extra data (#3105) + +### TSK-1405 + +- Fix hover selection (#3109) + +### TSK-1406 + +- Correct Configuration defaults (#3107) + +### TSK-1410,-1408,-1392,-1389,-1386,-1377 + +- Minor fixes. Update IssueNotification layout. (#3117) + +## [0.6.91a] - 2023-04-27 + +### TSK-1339 + +- Show dueDate for cancelled/done issues (#3091) + +### TSK-1378 + +- Qfix for exception (#3097) + +### TSK-1381 + +- Show preview and Table mouse hover selection (#3098) + +## [0.6.91] - 2023-04-27 + +### TSK-1009 + +- Configurable platform (#3055) + +### TSK-1066 + +- Don't allow creating requests if already exists for set days (#3053) + +### TSK-1068 + +- Update department for Staff via side panel (#3073) + +### TSK-1098 + +- All issues related fixes (#3079) + +### TSK-1113 + +- Add issueUrl to notification for sub-issues (#3057) + +### TSK-1114 + +- Fix default issue status (#3044) + +### TSK-1248 + +- Revert changes and add check for unset field (#3054) + +### TSK-1311 + +- Add editors for String and Number (#3056) + +### TSK-1312 + +- Refit tooltip after loading components inside it (#3083) + +### TSK-1314 + +- Fix slow Kanban open (#3052) + +### TSK-1323 + +- Fix colors for list (#3069) + +### TSK-1342 + +- Reduce number of transfer data and improve Kanban initial render speed (#3078) + +### TSK-1353 + +- Update ListView headers. Replaced colors in settings. (#3086) + +### TSK-1375 + +- Sub issue selector icons (#3089) + +### TSK-571 + +- Fix keyboard list navigation (#3085) + +## [0.6.90] - 2023-04-23 + +### TSK-1243 + +- Add scroller to project's components list (#3045) + +## [0.6.89] - 2023-04-21 + +### TSK-1047 + +- Fix showing requests after moving staff to another department (#3029) + +### TSK-1064 + +- Fix export csv in hr (#3032) + +### TSK-1237 + +- Improve full text indexer (#3025) + +### TSK-1274 + +- Fix Kanban live updates (#3024) + +## [0.6.88] - 2023-04-19 + +### TSK-1248 + +- Sort null last for dates (#3021) + +### TSK-1252 + +- Dispatch update event for attribute bar (#3017) + +### TSK-964 + +- Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes (#3022) + +## [0.6.87] - 2023-04-19 + +### TSK-1158 + +- Remove component from sprint. Remove logic for changing component on sprint change (#2998) + +### TSK-1248 + +- Fix dueDate sorting order (#3013) + +### TSK-808 + +- Ignore initial validation when autofilled for login form (#3012) + +## [0.6.86] - 2023-04-17 + +### TSK-1213 + +- Allow to clean archived vacancies with content (#2999) + +### TSK-1216 + +- Fix bitrix import (#3005) + +### TSK-753 + +- Open user's department in schedule by default (#3001) + +## [0.6.85] - 2023-04-17 + +### TSK-1032 + +- Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only (#2964) + +### TSK-1201 + +- Fix bitrix migration and too to clean removed transactions (#2995) + +## [0.6.84] - 2023-04-16 + +### TSK-1200 + +- Fix Applications with wrong state (#2992) + +## [0.6.83] - 2023-04-14 + +### TSK-1062 + +- Work on Employee and EmployeeAccount migration (#2986) + +### TSK-1189 + +- Fix showing all available categories (#2987) + +### TSK-1194 + +- Fix filter (#2990) + +## [0.6.82] - 2023-04-13 + +### TSK-1152 + +- Fix connections mess (#2969) + +### TSK-1153 + +- Fix server model load exceptions (#2967) + +### TSK-1154 + +- Statuses table support (#2974) + +### TSK-1170 + +- Fix transactions retrieval to speedup of workspace open (#2976) + +## [0.6.81] - 2023-04-12 + +### TSK-1012 + +- Change text names for Organizations to Companies (#2963) + +### TSK-1086 + +- Fix merge (#2961) + +### TSK-1141 + +- Fix bitrix fields (#2956) + +### TSK-1146 + +- Support initial content text for collaborator doc (#2960) + +### TSK-1148 + +- Mixin button for Vacancy and NPE fixes (#2965) + +### TSK-1150 + +- Rollback svelte (#2966) + +## [0.6.80a] - 2023-04-12 + +### TSK-1089 + +- Proper Recruit Archive (#2952) + +## [0.6.80] - 2023-04-11 + +### TSK-1040 + +- Support editable for DraggableList (#2932) + +### TSK-1072 + +- Fix Created by (#2948) + +### TSK-1092 + +- Fix reconnect for Safari (#2929) + +### TSK-1093 + +- Fix Application doneState showing (#2927) + +### TSK-1106 + +- Update to latest packages (#2943) + +## [0.6.79] - 2023-04-07 + +### TSK-1007 + +- Add comments in talent editor (#2922) + +### TSK-1013 + +- Add position field to Employee (#2874) + +### TSK-1015 + +- Bitrix Create Vacancy/Application (#2913) + +### TSK-1038 + +- Fix comments presenter (#2896) + +### TSK-1062 + +- Fix merge properly (#2919) + +### TSK-1065 + +- Check model version (#2916) + +### TSK-1088 + +- Show Kanban counters (#2924) + +### TSK-943 + +- General Status support (#2842) + +### TSK-990 + +- Remove Back button in settings (#2875) + +### Tsk-1040 + +- Support draft for DraggableList (#2898) + +## [0.6.78] - 2023-04-03 + +### TSK-1010 + +- Change color for New Customer button (#2870) + +### TSK-950 + +- Remove value from filter if the object doesn't exist (#2852) + +## [0.6.77] - 2023-03-31 + +### TSK-839 + +- Fix localization strings (#2833) + +### TSK-903 + +- Do not allow saving if set to private with no members (#2854) + +### TSK-916 + +- Fix attribute errors in console (#2839) + +### TSK-942 + +- Add hours to current time (#2837) + +### TSK-955 + +- Fix status display (#2840) + +### TSK-960 + +- Move for issues (#2846) + +### TSK-963 + +- Show avatar on comments (#2857) + +### TSK-976 + +- Hide preview action (#2847) + +### TSK-983 + +- Fix Cache control for index pages (#2850) + +### TSK-987 + +- Show filter with 0 value (#2855) + +### TSK-988 + +- Sticky first column in hr calendar (#2867) + +### TSK-989 + +- Transparent requests (PTO, extra, etc.) when not in department or it's descendants (#2861) + +### TSK-992 + +- Fix column name in Companies (#2860) + +## [0.6.76a] - 2023-03-24 + +### TSK-897 + +- Allow team-leads and managers to edit descendant departments (#2825) + +### TSK-941 + +- Fix incorrect rewriting space after selecting in SpaceSelect (#2827) + +## [0.6.76] - 2023-03-24 + +### TSK-745 + +- Do not allow changing previous months events (Requests and public holidays) (#2796) + +### TSK-811 + +- Fix for undefined when saving platform last location (#2790) + +### TSK-813 + +- Fix input width and remove divider for time report popup (#2794) + +### TSK-825 + +- Client proper reconnection (#2797) + +### TSK-831 + +- Edit Title and Description inline (#2788) + +### TSK-858 + +- Send picture without text as comment for issues (#2793) + +### TSK-885 + +- Fix invalid deps (#2777) + +### TSK-912 + +- Notifications on removing the request (#2806) + +### TSK-915 + +- Tracker status (#2802) + +### TSK-920 + +- Rename CreatedBy field (#2807) + +### TSK-924 + +- Follow proper order for Tracker Kanban (#2815) + +### TSK-934 + +- Redirect to last location on opening main page (#2817) + +### TSK-937 + +- Fix tooltip for employee (#2822) + +## [0.6.75b] - 2023-03-21 + +### TSK-894 + +- Fix template creation and apply (#2785) + +### TSK-895 + +- Allow to mention only active employees (#2786) + +## [0.6.75a] - 2023-03-21 + +### TSK-877 + +- Show only Candidates for Application creation dialog (#2784) + +### TSK-889 + +- Fix hang and displayName search for Employee (#2783) + +## [0.6.75] - 2023-03-21 + +### TSK-811 + +- Show last workspace location after switching/opening workspace (#2776) + +### TSK-813 + +- Remove WorkDayLength and change time reports to hours (#2763) + +### TSK-859 + +- Replacing icons. TSK-883: Pop-up for viewing images. (#2782) + +### TSK-871 + +- Fix overtime display (#2769) + +### TSK-879 + +- Fix empty assignee selection (#2774) + +### TSK-890 + +- Fix component icons (#2778) + +### TSK-891 + +- Fix UI Tests instability (#2780) + +## [0.6.74] - 2023-03-17 + +### TSK-812 + +- Opening images in the center. Minor design corrections. (#2755) + +### TSK-857 + +- Create company button (#2762) + +## [0.6.73a] - 2023-03-16 + +### TSK-568 + +- User-friendly message on join for expired links (#2752) + +### TSK-802 + +- Save token to array (#2754) + +### TSK-807 + +- Query only active Employees (#2753) + +### TSK-849 + +- Show labels in list (#2749) + +## [0.6.73] - 2023-03-16 + +### TSK-791 + +- Handle department's public holidays + add stats for it (#2735) + +### TSK-827 + +- Rename Process to Pattern (#2740) + +### TSK-837 + +- Fix backup OOM (#2732) + +### TSK-838 + +- Created by (#2742) + +### TSK-842 + +- Fix resume recognition functionality (#2736) + +### TSL-840 + +- Fixed the display of Filtered views (#2743) + +## [0.6.72a] - 2023-03-13 + +### TSK-803 + +- Fix load speed (#2728) + +## [0.6.69b] - 2023-03-02 + +### TSK-761 + +- Team default assignee (#2706) + +### TSK-769 + +- Fix channel editor (#2704) + +## [0.6.69] - 2023-03-01 + +### TSK-517 + +- Show 'Last Modified' instead of 'Date' for attachments (#2696) + +### TSK-713 + +- Notifications for DM (#2695) + +### TSK-728 + +- Server reconnect support (#2689) + +### TSK-734 + +- Fix Bitrix email import (#2700) + +## [0.6.68] - 2023-02-22 + +### EZQ-49 + +- Update collaborator (#2677) + +### TSK-544 + +- Search by issue number and description (#2675) + +## [0.6.67] - 2023-02-20 + +### TSK-467 + +- Throw error when used for AttachedDoc (#2649) + +### TSK-637 + +- Add login and recovery action (#2654) + +### TSK-678 + +- Update First/Last names (#2652) + +### TSK-679 + +- Add Whatsapp (#2651) + +### TSK-685 + +- Prioritise selection when focus exists (#2648) + +## [0.6.65] - 2023-02-10 + +### TSK-651 + +- Fix Team editing (#2611) + +## [0.6.64] - 2023-02-08 + +### TSK-413 + +- Implement scrum recording (#2550) + +### TSK-570 + +- Fix RelatedIssues (#2596) + +### TSK-608 + +- Move Vacancy support. (#2597) + +## [0.6.61] - 2023-01-30 + +### TSK-476 + +- Bitrix import fixes (#2548) + +### TSK-569 + +- Fix MarkupPresenter, ShowMore (#2553) + +## [0.6.57] - 2023-01-24 + +### TSK-553 + +- Fix padding in assignee popup (#2531) + +## [0.6.55] - 2023-01-20 + +### TSK-360 + +- Assignee selection enhancements (#2509) + +## [0.6.53a] - 2022-12-30 + +### TSK-507 + +- Assignee box Direction line is hidden to early (#2485) + +## [0.6.52] - 2022-12-22 + +### TSK-485 + +- Calendar Year/Month summary (#2465) + +## [0.6.51] - 2022-12-21 + +### TSK-473 + +- Added tracker layout sanity tests (#2452) + +## [0.6.50] - 2022-12-16 + +### TSK-487 + +- Resume draft stuck in Resume state (#2443) + +## [0.6.49] - 2022-12-15 + +### TSK-344 + +- Draft for new Candidate/Person etc (#2432) + +### TSK-425 + +- Supported team settings (#2406) + +### TSK-461 + +- Refactor Tracker/Remember Issues (#2425) + +## [0.6.48] - 2022-12-07 + +### TSK-343 + +- Remember unfinished comment per document (#2400) + +### TSK-458 + +- Create of sub-issue not show Issue created notification (#2419) + +## [0.6.47] - 2022-12-02 + +### TSK-419 + +- Update workspaces while open menu (#2413) + +## [0.6.46] - 2022-11-29 + +### Activity + +- Filters (#2395) + +## [0.6.45] - 2022-11-24 + +### TSK-397 + +- Fixed time report round (#2389) + +### TSK-418 + +- Added working day option (#2393) + +### TSK-421 + +- Improve Core testing and coverage (#2387) + +### TSK-435 + +- Fix create issue edit focus lost. (#2396) + +## [0.6.44] - 2022-11-22 + +### HR + +- Update Schedule layout. Fix tooltip and popup. (#2388) + +### TSK-399 + +- Allow to delete sprints (#2386) + +### TSK-420 + +- Fixed time report placeholders (#2390) + +## [0.6.41] - 2022-11-12 + +### TSK-363 + +- Fixed multiple no sprint category (#2352) + +### TSK-364 + +- Fixed filter updates for collapse issues state (#2355) + +## [0.6.40] - 2022-11-02 + +### TSK-212 + +- Add notification on issue created (#2325) + +### TSK-342 + +- Add resume issue function (#2332) + +## [0.6.34] - 2022-08-25 + +### Tracker + +- Enlarged headers (#2259) + +## [0.6.33a] - 2022-08-22 + +### HR + +- When hovering over a cell, the day is highlighted. (#2253) + +## [0.6.31] - 2022-07-19 + +### TSK-268 + +- Supported expandable for issue list (#2222) + +## [0.6.30c] - 2022-07-10 + +### Tracker + +- Fix issue status colors in the kanban view (#2231) +- Refactor ViewOptions (#2228) + +## [0.6.30b] - 2022-07-07 + +### Board + +- Fix show popup actions (#2211) + +### Tracker + +- Fix colors for issue status icons (#2203) +- Fix kanban query (#2204) +- Updated status icons (#2215) +- Labels on the card. (#2221) +- Hide inbox / views (#2224) + +## [0.6.30a] - 2022-07-04 + +### HR + +- Update schedule layout (#2202) + +### Userbox + +- Clean up selected for user box on value change (#2199) + +## [0.6.30] - 2022-07-02 + +### Automation + +- Disable UI (#2158) + +### Board + +- Remove server plugin (#2159) + +### EditBox + +- Fixed size calculation (#2181) + +### HR + +- Update values on blur (#2161) + +### Tracker + +- Fix extra refresh (#2160) +- Add relation (#2174) +- Workflow statuses (#2171) +- Add issues up/down navigator (#2188) + +## [0.6.29b] - 2022-06-27 + +### Chunter + +- Open message links without reload (#2124) + +## [0.6.29a] - 2022-06-27 + +### Tracker + +- Parent issues name (#2136) +- Sync project with parent (#2137) + +## [0.6.29] - 2022-06-25 + +### Activity + +- Fix comments display (#2143) + +### Automation + +- Initial support (#2134) + +### Tracker + +- Issues search (#2129) +- Introduce Roadmap (#2139) + +### UI + +- Refactor (#2127) + +## [0.6.28] - 2022-06-20 + +### Board + +- Fix header (#2098) + +### Chunter + +- Copy link to message (#2078) + +### Tracker + +- Fix status editor (#2097) + +## [0.6.27] - 2022-06-15 + +### Chunter + +- Add button for link formatting (#2063) + +### TSK-112 + +- Fix workbench switch (#2074) + +### TSK-81 + +- Disable State delete action (#2076) + +### Tags + +- Fix collection editor (#2080) +- Add inline editor (#2081) + +### Tracker + +- Add priority to sub-issues (#2054) + +## [0.6.26] - 2022-06-10 + +### Board + +- Fix tags/labels for board table view (#2045) +- Fix attribute views for tags (#2046) +- Update popups style (#2043) +- Add labels view (#2047) + +## [0.6.25] - 2022-06-08 + +### Tracker + +- Added Projects to the card (#2023) +- Updating cards in Kanban (#2032) +- Add "Show Sub-issues" toggle into issue list (#2033) + +## [0.6.24] - 2022-06-07 + +### Panel + +- Remove full size. Fix popup. (#2007) + +### Tracker + +- Add project issue list view (#2012) + +## [0.6.23] - 2022-06-03 + +### Board + +- Update server-plugin for task to subscribe to updates on create & update (#1925) + +### FliterBar + +- Remove save button (#1937) + +### Scroller + +- Added autohide. Fixed track height when displaying table and colors. (#1964) + +### Tracker + +- Change "Issue" type to "AttachedDoc" (#1875) +- Add Sub-issues list (#1989) +- Fix console errors in the Issue Editor (#2001) + +## [0.6.22] - 2022-05-29 + +### Board + +- Update actions (#1859) +- Fix cover presenter (#1872) +- Checklist item dnd support (#1873) + +### HR + +- Issue fixes (#1891) + +### Tracker + +- Add "Parent Issue" control to the "Edit Issue" dialog (#1857) + +## [0.6.21] - 2022-05-24 + +### Contacts + +- Type Filter (#1855) + +## [0.6.20] - 2022-05-23 + +### Board + +- Update card (#1826) + +## [0.6.19] - 2022-05-22 + +### Board + +- Add TableView (#1760) +- Use Standard actions (#1766) +- Add checklists info (#1772) +- Add checklist assignee (#1778) +- Add convert checklist to card action (#1805) + +### Chunter + +- Convert direct message to private channel (#1752) +- Open dm on creation if already exists (#1773) +- Formatting (#1804) + +### EditIssue + +- Fix "Due date" button style. (#1824) + +### HR + +- Fixes to Vacancy/Application creation (#1753) + +### Telegram + +- Latest messages below. Update AttachmentPreview layout. (#1768) + +### Tracker + +- Project - Project selector (#1740) +- Split "edit issue" dialog to preview / edit (#1731) +- Project - Editors (#1779) +- Project - Project status buttons (#1793) +- Add context menu to the "EditIssue" dialog (#1788) +- "Edit Issue" dialog adjustments (#1810) + +## [0.6.18] - 2022-05-15 + +### Board + +- Initial checklist support (#1672) +- Refactor AddPanel with TextAreaEditor (#1720) +- Fix copy from message +- Fix push/pull activity (#1718) + +### Chunter + +- User status (#1608) (#1692) + +### Tracker + +- Issue filters - additional features (#1708) + +## [0.6.15] - 2022-05-05 + +### Board + +- Remove stale left panel items (#1574) +- Fix card members update (#1620) +- Checklists model adjustments (#1633) + +### Chunter + +- File browser additional fixes (#1547) +- Download file action (#1570) +- FileBrowser - add grid view (#1571) +- FileBrowser - replace px with rem (#1582) +- Remove attachments only for creator (#1552) +- Private channel & add channel members ui (#1524) (#1589) + +### EditIssue + +- Add due date to the right panel (#1272) (#1642) + +### Tracker + +- Fix IssuesList selection (#1578) +- Rewrite AssigneePresenter (#1568) +- Fix issue status view for "Activity" (#1632) +- Fix issue priority view for "Activity" (#1635) +- Issue filters - main functionality (#1640) + +## [0.6.14] - 2022-04-26 + +### Board + +- Add open card inline menu (#1511) +- Handle labels when move card to another board (#1538) +- Make context menu consistent (#1542) + +### Chunter + +- Avatars in dm header and highlight on first message (#1499) +- Saved attachments (#1515) + +### Tracker + +- Add keyboard support for issues list (#1539) + +## [0.6.13] - 2022-04-24 + +### Board + +- Add create / edit card label popup +- Fix lint issues +- Update Date Presenter to reuse as presenter +- Fix formatting +- Use / for card labels update +- Use for join action +- Add labels & members & date to Kanban Card (#1462) +- Fix popup alignments (#1467) +- Add attachment action (#1474) +- Extend popup positioning for Kanban card (#1483) +- Add kanban card edit mode (#1484) + +### Chunter + +- Saved messages (#1466) +- Direct messages (#1472) +- File browser (#1407) (#1488) + +### Tracker + +- View options - Grouping (#1442) +- Status should be positioned at same offset (#1464) +- View options - Completed issues period, empty groups display (#1490) +- Move "IssueStatus" enum into model (#1449) + +## [0.6.12] - 2022-04-18 + +### Board + +- Create board labels (#1426) +- Add card labels picker popup (#1434) + +### Chunter + +- Archive channel (#1416) + +## [0.6.11] - 2022-04-17 + +### Board + +- Design card editor (initial) (#1292) +- 1265: Make Card Actions extensible (#1319) +- Update board card model (#1329) +- Add new card actions + Join Card Action example (#1335) +- Add card details (members, labels, date) (#1376) +- Add button shape and title props (#1381) +- Fix card live updates (#1403) +- Add attachments support +- Fix labels model (#1405) +- Fix infinite loop in Activity component for space update (#1417) + +### Chunter + +- Channel attributes (#1334) +- Delete message (#1336) +- Update channel last message and close thread on deletion from other user (#1389) +- Pin messages (#1396) +- Attachments table in channel description (#1402) +- Attachments and format updates (#1410) +- Show "edited" label and cancel button (#1411) + +### Tracker + +- Board view (#1325) +- Issues list view (#1313) +- Issue List – Priority presenter (#1382) +- Improve CheckBox (#1356) +- Issue List – Status presenter (#1383) +- Issue List – Assignee presenter (#1384) +- Issue List - DueDate presenter (#1393) + +## [0.6.8] - 2022-03-19 + +### Upd + +- DataPicker with region selection. Presenters. (#1153) + +## [0.6.0] - 2021-11-22 + +### Clean + +- Package.json + + diff --git a/cliff.toml b/cliff.toml new file mode 100644 index 00000000000..ba12c0b7a8a --- /dev/null +++ b/cliff.toml @@ -0,0 +1,89 @@ +# git-cliff ~ default configuration file +# https://git-cliff.org/docs/configuration +# +# Lines starting with "#" are comments. +# Configuration options are organized into tables and keys. +# See documentation for more information on available options. + +[changelog] +# template for the changelog footer +header = """ +# Changelog\n +All notable changes to this project will be documented in this file.\n +""" +# template for the changelog body +# https://keats.github.io/tera/docs/#introduction +body = """ +{% if version %}\ + ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} +{% else %}\ + ## [unreleased] +{% endif %}\ +{% for group, commits in commits | group_by(attribute="group") %} + ### {{ group | striptags | trim | upper_first }} + {% for commit in commits %} + - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ + {% if commit.breaking %}[**breaking**] {% endif %}\ + {{ commit.message | upper_first }}\ + {% endfor %} +{% endfor %}\n +""" +# template for the changelog footer +footer = """ + +""" +# remove the leading and trailing s +trim = true +# postprocessors +postprocessors = [ + # { pattern = '', replace = "https://github.com/orhun/git-cliff" }, # replace repository URL +] + +[git] +# parse the commits based on https://www.conventionalcommits.org +conventional_commits = true +# filter out the commits that are not conventional +filter_unconventional = true +# process each line of a commit as an individual commit +split_commits = false +# regex for preprocessing the commit messages +commit_preprocessors = [ + # Replace issue numbers + #{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](/issues/${2}))"}, + # Check spelling of the commit with https://github.com/crate-ci/typos + # If the spelling is incorrect, it will be automatically fixed. + #{ pattern = '.*', replace_command = 'typos --write-changes -' }, +] +# regex for parsing and grouping commits +commit_parsers = [ + { message = "^feat", group = "🚀 Features" }, + { message = "^fix", group = "🐛 Bug Fixes" }, + { message = "^doc", group = "📚 Documentation" }, + { message = "^perf", group = "⚡ Performance" }, + { message = "^refactor", group = "🚜 Refactor" }, + { message = "^style", group = "🎨 Styling" }, + { message = "^test", group = "🧪 Testing" }, + { message = "^chore\\(release\\): prepare for", skip = true }, + { message = "^chore\\(deps.*\\)", skip = true }, + { message = "^chore\\(pr\\)", skip = true }, + { message = "^chore\\(pull\\)", skip = true }, + { message = "^chore|^ci", group = "⚙️ Miscellaneous Tasks" }, + { body = ".*security", group = "🛡️ Security" }, + { message = "^revert", group = "◀️ Revert" }, +] +# protect breaking changes from being skipped due to matching a skipping commit_parser +protect_breaking_commits = false +# filter out the commits that are not matched by commit parsers +filter_commits = false +# regex for matching git tags +# tag_pattern = "v[0-9].*" +# regex for skipping tags +# skip_tags = "" +# regex for ignoring tags +# ignore_tags = "" +# sort the tags topologically +topo_order = false +# sort the commits inside sections by oldest/newest order +sort_commits = "oldest" +# limit the number of commits included in the changelog. +# limit_commits = 42 From 28abb65d31a9b80e6a1e403970a6c084ef0cadfd Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 11 Aug 2024 18:52:50 +0700 Subject: [PATCH 043/149] Fix changelog Signed-off-by: Andrey Sobolev --- changelog.md | 5743 ++++++++++++-------------------------------------- cliff.toml | 15 +- 2 files changed, 1304 insertions(+), 4454 deletions(-) diff --git a/changelog.md b/changelog.md index 27156cb54a4..c62d103b9cf 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5032 +1,1883 @@ # Changelog -All notable changes to this project will be documented in this file. +Changelog. ## [0.6.280] - 2024-08-11 -### UBERF-7836 +* UBERF-7836: Fix github integeration (#6313) +* UBERF-7865: Fix wrong access to not created collection (#6315) +* UBERF-7856: Fix desktop publishing CI (#6308) -- Fix github integeration (#6313) +## [0.6.279] - 2024-08-09 -### UBERF-7865 +* QFIX: Fix duplicates in inbox from multiple accounts (#6306) +* UBERF-7790: Fix connection timeout issue (#6301) +* UBERF-7854: Fix live query $lookup update (#6304) -- Fix wrong access to not created collection (#6315) +## [0.6.277] - 2024-08-08 -### Uberf-7856 +* UBERF-7604: Telegram notifications service (#6182) +* EZQMS-1029: Fix permissions check for creating project doc from context menu (#6282) +* EZQMS-1160: Fix slice type (#6280) -- Fix desktop publishing CI (#6308) +## [0.6.276] - 2024-08-07 -## [0.6.279] - 2024-08-09 +* 🐛 BUG FIXES: Rekoni service build (#6255) +* UBERF-7604: Preparation for telegram notifications (#6123) +* UBERF-7717: Reduce finds on members changed (#6219) +* UBERF-7753: Change auth approach for providers (#6234) +* UBERF-7817: Fix tag element query (#6267) +* UBERF-7765: Retry config load desktop (#6272)* UBERF-7765: Only retry network errors when loading config for desktop app (#6274) -### Qfix +## [0.6.274] - 2024-08-05 -- Fix duplicates in inbox from multiple accounts (#6306) +* 🐛 BUG FIXES: Properly update uppy state (#6252)* 🐛 BUG FIXES: Remove provider from preview config (#6253) +* UBERF-7794: Restore related issues control (#6244) +* UBERF-7796: Rework index creation logic (#6246) +* UBERF-7800: Space improvements (#6250) +* UBERF-7764: Improve space permissions query (#6236) -### UBERF-7790 +## [0.6.271] - 2024-08-02 -- Fix connection timeout issue (#6301) +* UBERF-7776: Get rid of blobs in UI (#6226) -### UBERF-7854 +## [0.6.271rc1] - 2024-08-01 -- Fix live query $lookup update (#6304) +* 🐛 BUG FIXES: Drive UX fixes (#6213) +* ⚙️ MISCELLANEOUS TASKS: Cross-platform docker build (#6198)* ⚙️ MISCELLANEOUS TASKS: Update hocuspocus version (#6207) +* EZQMS-1145: Fixes doc import tool (#6204) +* UBERF-7016: Hide channels without any activity long time (#6176) +* UBERF-7721: Fixed event display (#6175) +* UBERF-7734: Fix total with find with limit === 1 (#6187) +* UBERF-7743: Make check-clean non blocking (#6195) +* UBERF-7749: Use MONGO_OPTIONS properly (#6200) +* UBERF-7755: Fix image toolbar visibility (#6208) -## [0.6.277] - 2024-08-08 +## [0.6.270] - 2024-07-30 -### UBERF-7604 +* UBERF-7016: Hide channels without any activity long time (#6176) +* UBERF-7721: Fixed event display (#6175) +* UBERF-7734: Fix total with find with limit === 1 (#6187) -- Telegram notifications service (#6182) +## [0.6.269] - 2024-07-30 -### Ezqms-1029 +* 🐛 BUG FIXES: Add github to server pipeline (#6170) +* UBERF-7016: Hide channels without any activity long time (#6176) +* UBERF-7721: Fixed event display (#6175)* UBERF-7721: Fixed event display (#6175) -- Fix permissions check for creating project doc from context menu (#6282) +## [0.6.268] - 2024-07-29 -### Ezqms-1160 +* UBERF-7698: Fix backup* UBERF-7698: Fix backup (#6168) +* UBERF-7705: Maitenance warning for every transactor (#6169) -- Fix slice type (#6280) +## [0.6.267] - 2024-07-29 -## [0.6.276] - 2024-08-07 +* EZQMS-1069: Fix request model (#6131)* EZQMS-1069: Fix request model (#6131) +* UBERF-7543: Add low level groupBy api and improve security space lookup (#6126)* UBERF-7543: Add low level groupBy api and improve security space lookup (#6126) +* UBERF-7579: Text editor actions (#6103) +* UBERF-7665: Fix OOM on partial data (#6134)* UBERF-7665: Fix OOM in sharp (#6138)* UBERF-7665: Fix OOM in sharp (#6138) +* UBERF-7675: Remove heading text action from compact editors (#6143)* UBERF-7675: Remove heading text action from compact editors (#6143) +* UBERF-7682: Fix mongo cursor on backup (#6145)* UBERF-7682: Fix mongo cursor on backup (#6145) +* UBERF-7692: Move FindAll slow print into mongo adapter (#6152)* UBERF-7692: Move FindAll slow print into mongo adapter (#6152) -### 🐛 Bug Fixes +## [0.6.266] - 2024-07-24 -- Rekoni service build (#6255) +* EZQMS-1109: Add signature details for reviews/approvals (#6111) +* EZQMS-1140: Controlled doc content display improvements (#6110) +* QFIX: Qms signature dialog login info in tests (#6100) +* UBERF-7603: Fix connect with timeout (#6101) +* UBERF-7638: Add scroll to latest message button (#6119) +* EZQMS-1004: Fix typo (#6114) +* EZQMS-1121: Fix deleted doc states (#6112) -### UBERF-7604 +## [0.6.265] - 2024-07-19 -- Preparation for telegram notifications (#6123) +* 🐛 BUG FIXES: Hide wiki history sidebar tab (#6064) +* UBERF-7595: Do not use /api/v1/version on connect (#6075) +* UBERF-7597: Get rid of formats in preview.ts (#6077) +* UBERF-7600: Reduce number of $in operators and fix account service is… (#6080) +* UBERF-7603: Support multiple transactors (#6086) +* UBERF-7620: Send broadcast on delay with combine (#6094) -### UBERF-7717 +## [0.6.264] - 2024-07-12 -- Reduce finds on members changed (#6219) +* UBERF-7495: Global editor kit extensions (#6057) +* UBERF-7513: Improve notifications model to allow external notifications channels (#6037) +* UBERF-7519: Rework backup service (#6050) +* UBERF-7583: Fix workspace upgrade (#6062) -### UBERF-7753 +## [0.6.263] - 2024-07-10 -- Change auth approach for providers (#6234) +* UBERF-7543: Fix memory usage (#6044) -### UBERF-7817 +## [0.6.262] - 2024-07-10 -- Fix tag element query (#6267) +* 🐛 BUG FIXES: Track applied transactions in session op context (#6029) -### Uberf-7765 +## [0.6.261] - 2024-07-09 -- Retry config load desktop (#6272) -- Only retry network errors when loading config for desktop app (#6274) +* 🐛 BUG FIXES: Handle readonly in number presenter (#6026) +* UBERF-7510: Add logging and catch errors on cleanup (#6003) +* UBERF-7520: Use Bulk for index query updates (#6012) +* UBERF-7532: Bulk operations for triggers (#6023) -## [0.6.274] - 2024-08-05 +## [0.6.260] - 2024-07-04 -### 🐛 Bug Fixes +* QFIX: Revert missing pipeline configuration (#5987) +* QFIX: Use http for local and test brandings (#5980) +* UBERF-7465: Move pipeline into separate plugin (#5978) +* UBERF-7474: Some logging and reduce calls for query refresh (#5973) +* UBERF-7489: Fix various performance issues (#5983)* UBERF-7489: Some more chat optimizations (#5999) +* UBERF-7501: Copy few blobs in parallel (#5995) +* EZQMS-1057: Fix images in branded workspaces (#5979) +* UBERF-7434: Show dowload progress (#5944) -- Properly update uppy state (#6252) -- Remove provider from preview config (#6253) +## [0.6.259] - 2024-06-28 -### UBERF-7794 +* UBERF-7428: Fix memory issues (#5940) +* UBERF-7389: Instant transactions (#5941) -- Restore related issues control (#6244) +## [0.6.258] - 2024-06-27 -### UBERF-7796 +* 🚀 FEATURES: Add shortcut to create todo in documents (#5827) +* UBERF-7411: Allow to backup blobs with wrong size (#5926) +* UBERF-7419: Fix various sentry errors (#5931) +* UBERF-7422: Fix blob/stora (#5933) +* UBERF-7425: Fix some CF caching issues (#5936) -- Rework index creation logic (#6246) +## [0.6.257] - 2024-06-25 -### UBERF-7800 +* 🐛 BUG FIXES: *(ui)* Allow input month with keystrokes (#5785) +* UBERF-5564: Rework groupping and support PersonAccount (#5525) +* UBERF-7165: Storage + Backup improvements (#5913) +* UBERF-7330: Improve text editor UX (#5909) +* UBERF-7362: Do not cache branding served from front (#5889) +* EZQMS-1028: Fix actions in tree element (#5887) +* UBERF-7350: Add more oauth logs (#5879) -- Space improvements (#6250) +## [0.6.256] - 2024-06-20 -### Uberf-7764 +* 🐛 BUG FIXES: Extra logging in documents content migration (#5868) +* EZQMS-951: Server branding (#5858) +* UBERF-7327: Chinese language selector (#5862) +* UBERF-7342: Add french lang selector (#5873) -- Improve space permissions query (#6236) +## [0.6.255] - 2024-06-18 -## [0.6.271] - 2024-08-02 +* UBERF-7126: Content type based storage configuration (#5781) +* UBERF-7239: Support short/custom links in inbox/chat/planner (#5815) +* UBERF-7286: Backup retry (#5830) +* UBERF-7297: Allow to backup-restore from v0.6.239 (#5837)* UBERF-7297: One more fix to backup-restore (#5841) +* UBERF-7308: Upgrade model improvements (#5847) +* UBERF-7312: Memory improvements (#5849) +* EZQMS-1004: Fix questions wording (#5820) +* EZQMS-1023: Remove old migrations from qms (#5823) +* EZQMS-966: Notifications fixes (#5819) -### UBERF-7776 +## [0.6.254] - 2024-06-14 -- Get rid of blobs in UI (#6226) +* UBERF-7266: Fix workspace rate limit (#5812) -## [0.6.271rc1] - 2024-08-01 +## [0.6.253] - 2024-06-13 -### 🐛 Bug Fixes +* UBERF-7247: Fix queryFind for mixins on server (#5803) +* EZQMS-972: Fix custom space types for documents and products (#5801) +* EZQMS-974: Fix space type selector in document and product spaces (#5802) -- Drive UX fixes (#6213) +## [0.6.252] - 2024-06-12 -### ⚙️ Miscellaneous Tasks +* EZQMS-1008: Disable archived product editing (#5794) +* EZQMS-976: Exclude other types mixins (#5795) +* EZQMS-981: Adjust doc library wording (#5791) +* UBERF-7206: Adjustments and resources to support desktop screenshare (#5790) -- Cross-platform docker build (#6198) -- Update hocuspocus version (#6207) +## [0.6.251] - 2024-06-11 -### EZQMS-1145 +* 🐛 BUG FIXES: Disable guest link action for selection (#5776) +* ⚙️ MISCELLANEOUS TASKS: Update preview.ts (#5765) +* UBERF-7197: Fix high cpu load (#5761) -- Fixes doc import tool (#6204) +## [0.6.250] - 2024-06-07 -### UBERF-7016 +* UBERF-7077: Fixed Separator (#5743) +* UBERF-7181: Fix GH PR statuses (#5749) -- Hide channels without any activity long time (#6176) +## [0.6.249] - 2024-06-05 -### UBERF-7721 +* UBERF-7090: Add QMS common components (#5711)* UBERF-7090: Add QMS plugins (#5716)* UBERF-7090: Add Office plugins (#5725) +* UBERF-7126: Fix blob previews (#5723)* UBERF-7126: Support rich editor blob resolve (#5727) +* EZQMS-910: Fix workspace roles editing (#5726) -- Fixed event display (#6175) +## [0.6.248] - 2024-05-31 -### UBERF-7734 +* UBERF-7114: Fix workspace from clone (#5703) +* UBERF-7118: Fix upgrade/refresh on reconnect (#5704) -- Fix total with find with limit === 1 (#6187) +## [0.6.247] - 2024-05-30 -### UBERF-7743 +* 🐛 BUG FIXES: Use concatLink for transactor URL (#5659)* 🐛 BUG FIXES: Migrate content for documents only (#5699) +* QFIX: Remove hardcoded platform url (#5692) +* UBERF-6984: Host-based branding (#5657) +* UBERF-7011: Switch to Ref (#5661) +* UBERF-7062: Fix backup memory usage and support missing blobs (#5665) +* UBERF-7067: Make chat group labels translations reactive (#5688) +* UBERF-7105: Use status colour when projectState is undefined (#5697) +* UBERF-6639: Fix create issue default status (#5685) +* UBERF-7084: Fix add new status to task type (#5684) +* UBERF-7090: Request enhancements (#5695) -- Make check-clean non blocking (#6195) +## [0.6.246] - 2024-05-23 -### UBERF-7749 +* 🐛 BUG FIXES: Proper drive space header button logic (#5642)* 🐛 BUG FIXES: Download drive files via temporary link (#5644) +* UBERF-7018: Fix vacancies (#5647) -- Use MONGO_OPTIONS properly (#6200) +## [0.6.245] - 2024-05-22 -### Uberf-7755 +* UBERF-6365: Blob mongo storage initial support (#5474) +* UBERF-6638: Fix colours for statuses (#5620) +* UBERF-6854: S3 provider (#5611) +* UBERF-6893: Move index build into workspace usage. (#5586) +* UBERF-6949: Fix kanban options (#5593) -- Fix image toolbar visibility (#6208) +## [0.6.243] - 2024-05-13 -## [0.6.270] - 2024-07-30 +* 🐛 BUG FIXES: Hide actions for archived teamspaces (#5580) +* UBERF-6829: Group messages of the same type and user (#5569) +* EZQMS-876: Adjust role assignment editor (#5583) +* EZQMS-883: Allow email notifications for requests (#5582) +* EZQMS-896: Fix owners assignment for default spaces (#5585) -### UBERF-7016 +## [0.6.242] - 2024-05-10 -- Hide channels without any activity long time (#6176) +* 🐛 BUG FIXES: Add missing productId to getAccountInfo (#5540) +* UBERF-6870: Speedup server broadcast of derived transactions (#5553) +* UBERF-6888: Async triggers (#5565) -### UBERF-7721 +## [0.6.241] - 2024-05-08 -- Fixed event display (#6175) +* UBERF-6802: Improve create chat message performance (#5530) +* UBERF-6807: Fix empty objects channels in chat (#5533) -### UBERF-7734 +## [0.6.240] - 2024-05-06 -- Fix total with find with limit === 1 (#6187) +* 🐛 BUG FIXES: Move to well known parent when no parent selected (#5516) +* EZQMS-729: Restrict spaces operations (#5500) +* QFIX: Connection should restore boolean query fields (#5508) +* UBERF-6576: Move default space/project/task types into static model (#5423) +* UBERF-6778: Add Support to uWebSocket.js library (#5503) +* EZQMS-730: Better check for roles when changing members (#5527) +* EZQMS-798: Fix role name update (#5514) +* EZQMS-834: Fix roles ids and names (#5520) -## [0.6.269] - 2024-07-30 +## [0.6.239] - 2024-05-03 -### 🐛 Bug Fixes +* 🐛 BUG FIXES: Show max width button in documents (#5476) +* EZQMS-762: Improve printing layout (#5486) +* QFIX: Elastic adapter index not found exception (#5482) +* UBERF-6756: Tracker performance fixes (#5488) +* EZQMS-762: Extract base content from toc popup (#5489) -- Add github to server pipeline (#6170) +## [0.6.238] - 2024-04-26 -### UBERF-7016 +* UBERF-6676: Chat local state (#5461) +* UBERF-6677: Add user online/offline status (#5438) +* UBERF-6712: Rework connection logic (#5455) +* UBERF-6726: Fix clone for huge files (#5470) +* UBERF-6708: Composite elastic doc key (#5457) -- Hide channels without any activity long time (#6176) +## [0.6.237] - 2024-04-23 -### UBERF-7721 +* EZQMS-748: Hide left menu by default, ensure placement, improve show/hide logic (#5429) -- Fixed event display (#6175) -- Fixed event display (#6175) +## [0.6.236] - 2024-04-23 -## [0.6.268] - 2024-07-29 +* UBERF-6653: Fix minor issue and add force-close (#5418) -### UBERF-7698 +## [0.6.235a] - 2024-04-20 -- Fix backup -- Fix backup (#6168) +* UBERF-6636: Fix todos auto expand if collapsed (#5406) +* UBERF-6643: Fix few connection related exceptions (#5412)* UBERF-6643: A bit more logging (#5413) -### UBERF-7705 +## [0.6.235] - 2024-04-19 -- Maitenance warning for every transactor (#6169) +* UBERF-6626: More detailed info about maintenance (#5400) +* UBERF-6633: Fix model enabled tracking (#5404) -## [0.6.267] - 2024-07-29 +## [0.6.234] - 2024-04-18 -### EZQMS-1069 +* UBERF-5527: Add context menu for activity and inbox (#5373) +* UBERF-6205: Add real archive for notifications (#5385) +* UBERF-6490: Rework backup tool (#5386) +* UBERF-6598: Perform upgrade all workspaces to new versions (#5392) -- Fix request model (#6131) -- Fix request model (#6131) +## [0.6.233] - 2024-04-16 -### UBERF-7543 +* QFIX: Always recreate space types (#5371) +* UBERF-6464: Update activity mentions display (#5339) +* UBERF-6577: Fix invite link with null mask (#5372) -- Add low level groupBy api and improve security space lookup (#6126) -- Add low level groupBy api and improve security space lookup (#6126) +## [0.6.232] - 2024-04-16 -### UBERF-7579 +* 🐛 BUG FIXES: Workspace creation issues (#5362) +* UBERF-5686: Fix copy link (#5368) +* UBERF-5964: Insert items menu in editor (#5341) +* UBERF-6330: Fix race conditions in UI (#5184) +* UBERF-6557: Clean old domains during clone of workspace to new place (#5361) +* EZQMS-724: Make roles related code more robust (#5363) +* UBERF-6537: Fix teamspace creation (#5354) -- Text editor actions (#6103) +## [0.6.231] - 2024-04-13 -### UBERF-7665 +* EZQMS-689: Slightly improved typings for notification presenters (#5312) +* UBERF-6469: Fix slow index creation (#5324) +* UBERF-6478: Make icons more clear (#5320) +* UBERF-6508: Add user to doc collaborators on mention (#5340) +* UBERF-6509: Fix reading mention notifications (#5323) +* UBERF-6523: Allow to use zstd (#5333) +* UBERF-6540: Fix isIndexable and clean wrong indexed documents (#5347) -- Fix OOM on partial data (#6134) -- Fix OOM in sharp (#6138) -- Fix OOM in sharp (#6138) +## [0.6.230] - 2024-04-10 -### UBERF-7675 +* SILENT: False for notifications (#5284) +* UBERF-6469: Rework workspace creation to more informative (#5291) -- Remove heading text action from compact editors (#6143) -- Remove heading text action from compact editors (#6143) +## [0.6.229] - 2024-04-10 -### UBERF-7682 +* 🚀 FEATURES: *(help)* Added find bug button for easy navigation (#5214) +* QFIX: Center media, improve matching (#5267) +* UBERF-6353: Extensible preview (#5264) -- Fix mongo cursor on backup (#6145) -- Fix mongo cursor on backup (#6145) +## [0.6.228a] - 2024-04-09 -### UBERF-7692 +* UBERF-6426: Fix stuck backup (#5258) +* UBERF-6433: Fix workspace creation from demo workspaces (#5255) -- Move FindAll slow print into mongo adapter (#6152) -- Move FindAll slow print into mongo adapter (#6152) +## [0.6.228] - 2024-04-08 -## [0.6.266] - 2024-07-24 +* TSK-1682: Introduced reusable `SectionEmpty` for numerous existing and upcoming cases (#5220) +* UBERF-6313: Improve backup/restore (#5241) -### EZQMS-1109 +## [0.6.227] - 2024-04-08 -- Add signature details for reviews/approvals (#6111) +* EZQMS-663: Add permissions util (#5189) +* QFIX: Restore ats task types tool (#5185) +* TSK-1682: Slightly reorganized recruit files for future changes (#5196) +* UBERF-6374: Improve server logging and improve startup performance (#5210) +* UBERF-6393: Work on elastic fast backup/restore (#5235) -### EZQMS-1140 +## [0.6.226] - 2024-04-04 -- Controlled doc content display improvements (#6110) +* UBERF-6313: Improve upgrade of workspace (#5178) +* UBERF-6314: Provide space if all of the items have same space (#5171) +* UBERF-6318: Fix server drop connection on connect (#5174) -### Qfix +## [0.6.225] - 2024-04-03 -- Qms signature dialog login info in tests (#6100) +* UBERF-6296: Fix elastic queries (#5155) +* UBERF-6300: Not cache for index.html's (#5159) +* UBERF-6310: Fix context passing (#5167) +* UBERF-6255: Minor guest and pdf viewer adjustments (#5164) -### UBERF-7603 +## [0.6.224] - 2024-04-02 -- Fix connect with timeout (#6101) +* QFIX: Wrong minio config parameter (#5151) -### UBERF-7638 +## [0.6.223] - 2024-04-02 -- Add scroll to latest message button (#6119) +* UBERF-6161: Storage configuration (#5109) +* UBERF-6263: Fix mongo client unexpected close (#5129) +* UBERF-6265: Fix account creation from account service (#5132) +* UBERF-6267: Fix few platform troubles (#5142) -### Ezqms-1004 +## [0.6.222] - 2024-04-01 -- Fix typo (#6114) +* 🚀 FEATURES: Preview media attachments (#5102) +* UBERF-6226: Updated LOVE layout, VideoPopup. (#5100) +* UBERF-6242: More proper manage mongo connections (#5118) -### Ezqms-1121 +## [0.6.221] - 2024-03-29 -- Fix deleted doc states (#6112) +* QFIX: Consistent space/project/task type mixi ids (#5089) +* EZQMS-663: Add more info to permissions store, fix tree element actions (#5090) +* UBERF-6224: Restore missing task types (#5094) -## [0.6.265] - 2024-07-19 +## [0.6.220] - 2024-03-28 -### 🐛 Bug Fixes +* QFIX: Invert delete object permission (#5085) -- Hide wiki history sidebar tab (#6064) +## [0.6.219] - 2024-03-28 -### UBERF-7595 +* EZQMS-612: Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) (#5083) +* EZQMS-665: Minor inbox styles fix (#5065) +* UBERF-6001: Roles management (#4994) +* UBERF-6202: Use only one mongo pull per configuration (#5073) +* UBERF-6209: Add reactivity (#5078) -- Do not use /api/v1/version on connect (#6075) +## [0.6.218] - 2024-03-27 -### UBERF-7597 +* 🚀 FEATURES: *(test)* Updated Due date filter test (#5057) +* UBERF-6094: Preparing bot (#5061) +* UBERF-6180: Fix account issues (#5063) +* UBERF-6194: CLI for rename account (#5067) -- Get rid of formats in preview.ts (#6077) +## [0.6.216] - 2024-03-25 -### UBERF-7600 +* 🚀 FEATURES: *(planner)* Drag-n-drop (#5031)* 🚀 FEATURES: *(planner)* Save accordion state (#5042)* 🚀 FEATURES: *(planner)* Remove large view mode (#5043) +* 🐛 BUG FIXES: `Panel` glitches on opening (#5033) +* QFIX: Few check from sentry and disable due date test (#5050) +* UBERF-6124: Rework inbox view (#5046) +* UBERF-6126: Storage adapter (#5035) +* UBERF-6150: Improve backup logic (#5041) -- Reduce number of $in operators and fix account service is… (#6080) +## [0.6.215] - 2024-03-21 -### UBERF-7603 +* EZQMS-602: Moved `Rank` type to core (utilities stay in its own package) (#5019) +* UBERF-6121: Fix front service caching (#5029) -- Support multiple transactors (#6086) +## [0.6.214] - 2024-03-19 -### UBERF-7620 +* 🚀 FEATURES: *(planner)* Add action for toggle button (#4986)* 🚀 FEATURES: *(test)* Working on the migration planner tests (#5002)* 🚀 FEATURES: *(planner)* Some ui improvements (#4992)* 🚀 FEATURES: *(planner)* New layout for attached todos (#4995)* 🚀 FEATURES: *(planner)* New slots, fixes and improvements (#4961) +* EZQMS-642: Extended `navigate()` signature to support History replacement (#4979) +* UBERF-6053: Do not crash on isDerived (#4998) +* UBERF-6058: Fix cache control for front service (#5000) +* UBERF-6066: Fix component manager state (#5009) -- Send broadcast on delay with combine (#6094) +## [0.6.213] - 2024-03-15 -## [0.6.264] - 2024-07-12 +* 🐛 BUG FIXES: Default project icon (#4984) +* UBERF-6042: Fix front service (#4991) -### UBERF-7495 +## [0.6.212] - 2024-03-15 -- Global editor kit extensions (#6057) +* 🚀 FEATURES: *(test)* Updated Document public link revoke test (#4955) +* 🐛 BUG FIXES: Missed invite icon (#4962) +* UBERF-5933: Add 404 handling in case of resource direct requests (#4983) +* UBERF-5986: Upgrade fixes (#4957) +* UBERF-6000: Fix statuses filtering and icons (#4966) +* UBERF-6014: Fix $faset usage (#4971) -### UBERF-7513 +## [0.6.211] - 2024-03-13 -- Improve notifications model to allow external notifications channels (#6037) +* UBERF-5982: Fix tracker select all action (#4950) -### UBERF-7519 +## [0.6.210a] - 2024-03-13 -- Rework backup service (#6050) +* 🐛 BUG FIXES: *(planner)* Frozen slots when switching between todos (#4944) +* TESTS-221: Feat(tests): done Document public link revoke test (#4940) -### UBERF-7583 +## [0.6.210] - 2024-03-13 -- Fix workspace upgrade (#6062) +* 🚀 FEATURES: *(planner)* New priority layout, update item layout (#4896)* 🚀 FEATURES: *(test)* Updated Due Date test (#4925) +* EZQMS-459: Hoisted `showNotify` calculation to `ActivityNotificationPresenter` (#4937) +* EZQMS-649: Moved some common utilities from Uberflow to Platform (#4927) +* TESTS-102: Feat(tests): done Label filter test (#4885) +* TESTS-216: Feat(tests): done Public link generate test (#4915) +* TESTS-217: Feat(test): done Public link Revoke test (#4926) +* TESTS-236: Feat(tests): done Create workspace with LastToken in the localStorage test (#4939) +* TESTS-94: Feat(tests): done Due date filter test (#4891) +* UBERF-5825: Fix github issues (#4924) +* UBERF-5932: Fix account upgrade (#4912) -## [0.6.263] - 2024-07-10 +## [0.6.209] - 2024-03-08 -### UBERF-7543 +* 🚀 FEATURES: *(planner)* Improve and reuse `Chip` (#4854) +* 🐛 BUG FIXES: *(todo)* Checkbox focus and spinner (#4890)* 🐛 BUG FIXES: *(todo)* Broken context actions (#4889) +* EZQMS-377: Add file attachments extension to text editor (#4284) +* EZQMS-562: Introduced reusable `NotificationToast` component (#4873) +* EZQMS-602: Moved Rank to its own package (#4845) +* TESTS-100: Feat(tests): done Milestone filter test (#4872) +* TESTS-101: Feat(tests): done Modified by filter test (#4871) +* TESTS-103: Feat(tests): done Title filter test (#4863) +* UBERF-5811: Rework backlinks (#4887) +* UBERF-5827: Add collaborative description for companies (#4851) +* UBERF-5886: Fix todo reorder on click (#4904) -- Fix memory usage (#6044) +## [0.6.208] - 2024-03-04 -## [0.6.262] - 2024-07-10 +* 🚀 FEATURES: New todo checkbox (#4841)* 🚀 FEATURES: *(tests)* TESTS-93 updated Created date filter test (#4862)* 🚀 FEATURES: *(tests)* Updated Created date filter test (#4868) +* 🐛 BUG FIXES: Create event popup improvements (#4850) +* TESTS-212: Feat(tests): done Add comment by popup test (#4817) +* UBERF-5870: Fix cache control and some minor enhancements (#4869) -### 🐛 Bug Fixes +## [0.6.207] - 2024-03-01 -- Track applied transactions in session op context (#6029) +* UBERF-5812: Fix allow to delete based on all my accounts (#4823) -## [0.6.261] - 2024-07-09 +## [0.6.206] - 2024-03-01 -### 🐛 Bug Fixes +* 🚀 FEATURES: *(tests)* Added documents tests (#4843) +* UBERF-5712: Fix jumping when scroll in bottom and add auto scroll to new content (#4830) -- Handle readonly in number presenter (#6026) +## [0.6.205] - 2024-02-29 -### UBERF-7510 +* 🚀 FEATURES: *(tests)* Added execute deploy in any status (#4767) +* TESTS-196: Feat(test): done Remove relation be editing issue details test (#4755) +* UBER-1239: Fix missing notifications for mentions from doc (#4820) +* UBERF-5394: Create component for new search input (#4777) +* UBERF-5604: Avoid extra calls on read notifications (#4781) +* UBERF-5621: Add full date tooltip (#4783) +* UBERF-5626: Set autofocus end on message edit (#4784) +* UBERF-5630: Fix inactive employee status in activity (#4782) +* UBERF-5650: Do not send mention notification if user already notified (#4821) +* UBERF-5675: Fix activity and notifications for colelction update (#4819) +* UBERF-5718: Allow to find one from existing queries (#4776) +* UBERF-5733: Remove invalid lookup update (#4779) +* UBERF-5734: Fix guest mode display of server generated links (#4790) +* UBERF-5744: Fix exception on server (#4787) +* UBERF-5795: Improve logging capabilities (#4813) -- Add logging and catch errors on cleanup (#6003) +## [0.6.204] - 2024-02-26 -### UBERF-7520 +* TESTS-193: TESTS-194: feat(tests): working on the tests (#4739) -- Use Bulk for index query updates (#6012) +## [0.6.203] - 2024-02-25 -### UBERF-7532 +* UBERF-5511: Fix query and include ibm plex mono (#4764) -- Bulk operations for triggers (#6023) +## [0.6.202] - 2024-02-23 -## [0.6.260] - 2024-07-04 +* 🚀 FEATURES: *(tests)* TESTS-47 done Mark as blocked by test (#4737) +* UBER-958: Fix query updates (#4742) +* UBERF-5594: Render mentions before object is loaded (#4738) +* UBERF-5595: Hide link preview for chat (#4752)* UBERF-5595: Set up attachments sizes (#4746) +* UBERF-5628: Fix unexpected Reference object in Activity on mentions in description (#4753) +* UBERF-5673: Esbuild transpile (#4748) +* UBERF-5694: Attempt to fix build cache (#4757) -### QFix +## [0.6.201] - 2024-02-20 -- Revert missing pipeline configuration (#5987) +* TESTS-182: Feat(tests): done Create sub-issue from template test (#4711) +* UBER-1227: Fix members duplicates (#4721) -### Qfix +## [0.6.200] - 2024-02-19 -- Use http for local and test brandings (#5980) +* TESTS-192: Feat(tests): done Add comment with image attachment test (#4687) +* UBER-708: Github related fixes (#4704) +* UBERF-5472: Add pagination for channels/direct (#4706) +* UBERF-5586: Improve loading of reactions and saved messages (#4694) -### UBERF-7465 +## [0.6.198] - 2024-02-16 -- Move pipeline into separate plugin (#5978) +* 🚀 FEATURES: *(tests)* Updated reports and prepare server step (#4659) +* QFIX: Create project type (#4685) +* UBERF-5548: Use esbuild with webpack (#4657) +* UBERF-5570: Fix avatars (#4679) +* UBERF-5575: Fix workspace join (#4684) +* UBERF-5551: Configurable click propagation from edit box (#4674) -### UBERF-7474 +## [0.6.197] - 2024-02-15 -- Some logging and reduce calls for query refresh (#5973) +* UBERF-5526: Fix scroll to new messages (#4651) +* UBERF-5532: Fix recruit comments typo (#4648) +* UBERF-5538: Fix server queryFind with mixins (#4653) -### UBERF-7489 +## [0.6.196] - 2024-02-14 -- Fix various performance issues (#5983) -- Some more chat optimizations (#5999) +* EZQMS-563: Moved `ActionWithAvailability` helper type and functions from `questions` to `view` (#4611) +* UBERF-4319: Fix performance issues (#4631) +* UBERF-5467: Remove hidden notifications and use Lazy on inbox (#4632) +* UBERF-5476: Fix archive in inbox (#4618) +* UBERF-5485: Fix versions in bundled resources (#4625) +* UBERF-5495: Load all messages for inbox with one query (#4628) -### UBERF-7501 +## [0.6.195] - 2024-02-13 -- Copy few blobs in parallel (#5995) +* TESTS-167: Feat(tests): done Check that the issue backlink test (#4596) +* TESTS-179: Feat(tests): done Check the changed description activity test (#4598) +* UBEF-4319: Few more performance fixes (#4613) +* UBERF-4319: Fix create issue performance (#4608) +* UBERF-5323: Fix new messages marker (#4614) +* UBERF-5324: Allow cmd-k for editable content (#4601) +* UBERF-5438: Fix edit issue attributes keys (#4602) -### Ezqms-1057 +## [0.6.194] - 2024-02-09 -- Fix images in branded workspaces (#5979) +* 🚀 FEATURES: *(tests)* TESTS-166 done Check Contact activity backlink test (#4585) +* UBERF-5408: Fix inline images in comments (#4591) +* UBERF-5418: Fix status editing (#4590) -### Uberf-7434 +## [0.6.193] - 2024-02-08 -- Show dowload progress (#5944) +* 🚀 FEATURES: *(test)* Updated Move to project test (#4582) +* TESTS-164: Feat(tests): done mentioned in the issue test (#4575) +* UBERF-4867: Fix issues mentions display (#4580) +* UBERF-5325: Disable send message during attachment upload (#4583) +* UBERF-5326: Fix extra scroll and higlight when thread opened (#4579) +* UBERF-5382: Allow to disable component edit for some cases (#4574) +* UBERF-5393: Fix backlink for thread (#4578) -## [0.6.259] - 2024-06-28 +## [0.6.192] - 2024-02-07 -### UBERF-7428 +* 🚀 FEATURES: *(tests)* Updated Create duplicate issues test (#4542)* 🚀 FEATURES: *(tests)* Updated close issue selector (#4551)* 🚀 FEATURES: *(tests)* TESTS-171 done Check validation steps test (#4558) +* 🐛 BUG FIXES: Tags view action button layout (#4514) +* EZQMS-531: Prop to disable Save As and Save buttons in `FilterBar` (#4560) +* TESTS-169: Feat(tests): done Create a workspace with a custom name test (#4541) +* UBERF-4319: Trigger Server queries (#4550) +* UBERF-5289: Fix getting parent doc for some cases for indexing (#4549) +* UBERF-5315: Update chat (#4572) +* UBERF-5321: Fix workspace CLI upgrade (#4534) +* UBERF-5348: Fix new status creation (#4567) +* UBERF-5350: Fix workspace name create issue (#4555) +* UBERF-5364: Fix targeted broadcast on server (#4565) -- Fix memory issues (#5940) +## [0.6.191] - 2024-02-05 -### Uberf-7389 +* 🐛 BUG FIXES: Broken checkbox behavior (#4509)* 🐛 BUG FIXES: Popup glitches caused by long calculations (#4511) +* UBERF-5017: Show correct collaborators diff and dont send notification for collaborators changer (#4529) +* UBERF-5304: Fix init workspace (#4524) -- Instant transactions (#5941) +## [0.6.190] - 2024-02-03 -## [0.6.258] - 2024-06-27 +* UBERF-5280: Fix backup service (#4506) -### 🚀 Features +## [0.6.188] - 2024-02-02 -- Add shortcut to create todo in documents (#5827) +* 🚀 FEATURES: *(tests)* Updated filter between tests (#4488) +* EZQMS-467: Fixed group for `Open in new tab` action (#4481) +* UBER-1160: Open vacancy panel when it’s opened from applicant (#4473) +* UBER-944: Action for opening in new tab (#4447) +* UBERF-4319: Performance changes (#4474)* UBERF-4319: Improve performance (#4501) +* UBERF-4983: Update chat ui (#4483) +* UBERF-5020: Fix reply to thread (#4502) +* UBERF-5140: Any workspace names (#4489) +* UBERF-5232: Fix wrong activity message title (#4498) +* UBERF-5243: Add default size, make icons size consistent (#4494) +* UBERF-5265: Fix workspace creation (#4499) +* UBERF-5275: Fix collaborator editing (#4505) -### UBERF-7411 +## [0.6.187] - 2024-01-30 -- Allow to backup blobs with wrong size (#5926) +* TESTS-159: Feat(tests): done Create issue with several attachment tests (#4464) +* UBER-1005: Array> support as custom attribute (#4471) +* UBER-1198: Upgrade to mongo 7 (#4472) +* UBERF-4631: Fix issue when link preview in activity displayed as #undefined (#4435) +* EZQMS-537: Make thread header hidable (#4458) -### UBERF-7419 +## [0.6.186] - 2024-01-25 -- Fix various sentry errors (#5931) +* 🚀 FEATURES: *(tests)* Updated duplicate issues test (#4450) +* EZQMS-461: Add generics for `ModeSelector` and `SpecialView` (#4437)* EZQMS-461: Better typings for `ModeSelector` (#4451) +* UBERF-4970: Fix component update (#4455) +* UBERF-5083: Fix project delete (#4446) -### UBERF-7422 +## [0.6.185] - 2024-01-25 -- Fix blob/stora (#5933) +* EZQMS-538: Allow command contributions to dev tool (#4440) -### UBERF-7425 +## [0.6.184] - 2024-01-24 -- Fix some CF caching issues (#5936) +* 🚀 FEATURES: *(tests)* Skipped Set parent issue test (#4427) +* EZQMS-527: Introduced `ActionButton` component (#4412)* EZQMS-527: Consistent defaults for `ActionButton` (#4421) -## [0.6.257] - 2024-06-25 +## [0.6.183] - 2024-01-23 -### 🐛 Bug Fixes +* UBERF-5018: Search improvements/Indexing fix (#4403) +* UBERF-5024: Add reactions control to inbox (#4414) +* UBERF-5042: Fix exception in list view (#4419) -- *(ui)* Allow input month with keystrokes (#5785) +## [0.6.182] - 2024-01-22 -### UBERF-5564 +* EZQMS-527: Expose `EmployeeArrayEditor` from `contact-resources` (#4411) +* UBERF-5012: Remove extra key (avoid reloading after notifications deleting) (#4399)* UBERF-5012: Use flat message view if doc has only one notification (#4410) +* UBERF-5023: Make flat view default (#4409) -- Rework groupping and support PersonAccount (#5525) +## [0.6.181a] - 2024-01-20 -### UBERF-7165 +* 🚀 FEATURES: *(test)* Updated flaky tests (#4393) +* QFIX: Remove unused deps (#4394) -- Storage + Backup improvements (#5913) +## [0.6.181] - 2024-01-19 -### UBERF-7330 +* EZQMS-457: Added optional ModeSelector to SpecialView (#4381) +* EZQMS-529: Added support for primary/positive/negative kinds for CheckBox and RadioButton (#4384)* EZQMS-529: Added support for `grow` and new `align` display options in `Table` (#4389) +* UBERF-5000: Handle derived tx for security context update (#4391) -- Improve text editor UX (#5909) +## [0.6.180] - 2024-01-18 -### UBERF-7362 +* QFIX: Return ActivityMessageHeader, since it is used by github (#4377) +* UBERF-4361: Update inbox ui (#4376) -- Do not cache branding served from front (#5889) +## [0.6.179] - 2024-01-17 -### Ezqms-1028 +* 🚀 FEATURES: *(tests)* Updated flaky tests (#4367) +* EZQMS-470: Add server side tiptap extension for node uuid (#4358) +* UBER-1188: Fix exception during login/logout (#4364) +* UBERF-4957: Fix status colors (#4369) -- Fix actions in tree element (#5887) +## [0.6.178] - 2024-01-16 -### Uberf-7350 +* 🚀 FEATURES: *(tests)* Update Merge contacts test (#4339) +* 🐛 BUG FIXES: *(tests)* Disabled failed tests (#4331) +* QFIX: Change activity onhover (#4336) +* UBER-1187: AnyType field support (#4343) +* UBERF-4360: Rewrite chat (#4265) +* UBERF-4868: Disable draft saving for comment editing (#4332) +* UBERF-4928: Indexing fixes (#4357) -- Add more oauth logs (#5879) +## [0.6.177] - 2024-01-08 -## [0.6.256] - 2024-06-20 +* UBER-1185: Fix TT migration issues (#4320) +* UBERF-4870: Fixed attribute creation (#4325) -### 🐛 Bug Fixes +## [0.6.175] - 2024-01-05 -- Extra logging in documents content migration (#5868) +* 🚀 FEATURES: *(tests)* Updated tests (#4296) -### EZQMS-951 +## [0.6.174a] - 2023-12-29 -- Server branding (#5858) +* UBERF-4799: Fix migration tasktype doubling (#4289) -### UBERF-7327 +## [0.6.173] - 2023-12-28 -- Chinese language selector (#5862) +* 🚀 FEATURES: *(tests)* TESTS-15 done Create a new Company test (#4242)* 🚀 FEATURES: *(tests)* Updated flaky tests (#4244)* 🚀 FEATURES: *(tests)* TESTS-21 done Match to vacancy test (#4268) +* EZQMS-430: Update change document owner popup (#4278) +* TESTS-16: Feat(tests): done Edit a Company test (#4243) +* TESTS-17: Feat(tests): done Delete a Company test (#4252) +* TESTS-20: Feat(tests): done Archive a Vacancy test (#4254) +* TESTS-23: Feat(tests): done Export vacancies tests (#4253) +* TESTS-51: Feat(tests): done Delete a component test (#4234) +* TSK-1668: Side changes from Surveys (#4271) +* UBER-1178: Rework indexing fields (#4261) +* UBERF-4716: Activity info message (#4241) +* UBERF-4729: Fix front service (#4260) +* UBERF-4738: Fix attachments preview (#4259) +* EZQMS-449: Wrap initial collaborator content loading with try-catch (#4256) +* EZQMS-452: Fix issue presenter (#4263) -### Uberf-7342 +## [0.6.172] - 2023-12-21 -- Add french lang selector (#5873) +* 🚀 FEATURES: *(tests)* TESTS-48 done Create duplicate issues test (#4225)* 🚀 FEATURES: *(tests)* TESTS-40 done Delete an issue test (#4233) +* TESTS-50: Feat(tests): done Edit a component test (#4232) +* UBERF-4692: Remove activity messages on doc remove (#4227) +* UBERF-4707: Fix activity messages updating (#4238) +* QFIX: Update DropdownLabels for showing dropdown icon (#4230) -## [0.6.255] - 2024-06-18 +## [0.6.171] - 2023-12-20 -### UBERF-7126 +* 🚀 FEATURES: *(tests)* TESTS-54 done Edit a Milestone test (#4175)* 🚀 FEATURES: *(tests)* TESTS-55 done Delete a Milestone test (#4184)* 🚀 FEATURES: *(tests)* Updated tests (#4185)* 🚀 FEATURES: *(tests)* Updated sanity-ws dump and tests (#4202)* 🚀 FEATURES: *(tests)* TESTS-45 done Move to project test (#4203)* 🚀 FEATURES: *(tests)* Updated tests (#4209)* 🚀 FEATURES: *(tests)* Updated Edit a sub-issue test (#4210)* 🚀 FEATURES: *(tests)* Updated move to project tests (#4214)* 🚀 FEATURES: *(tests)* TESTS-81 done Comment stored test (#4216)* 🚀 FEATURES: *(tests)* Updated flaky tests (#4218)* 🚀 FEATURES: *(tests)* TESTS-106 (#4217)* 🚀 FEATURES: *(tests)* TESTS-41 done Delete a sub-issue test (#4223)* 🚀 FEATURES: *(tests)* Updated tests (#4224) +* EZQMS-440: Fix quality events (#4183) +* TESTS-42: Feat(tests): done Edit Sub-Issue test (#4191) +* TESTS-44: Feat(tests): the Set parent issue test (#4158) +* TESTS-46: Feat(tests): done New related issue test (#4192) +* TESTS-59: Feat(tests): done Create an Issue from template test (#4212) +* TESTS-98: Feat(tests): done Created by filter test (#4161) +* TESTS-99: Feat(tests): done Component filter test (#4162) +* TSK-1668: Survey plugin (#4174) +* UBER-1179: Fix comments saving (#4205) +* UBER-1182: Fix github task types support (#4215)* UBER-1182: Fix task type categories (#4222) +* UBERF-4248: Task type (#4042) +* UBERF-4432: Better notifications for Chunter (#4165) +* UBERF-4610: Fix checkbox behaviour (#4173) +* UBERF-4620: Fix show less triangle (#4182) +* UBERF-4632: Refactor activity classes structure (#4190) +* UBERF-4649: Fix query projection/cache issue (#4200) -- Content type based storage configuration (#5781) +## [0.6.170] - 2023-12-07 -### UBERF-7239 +* TESTS-26: Feat(tests): done Archive Project tests (#4157) +* TESTS-97: Feat(tests): done the Priority filter test (#4156) +* UBERF-4451: Fixed how resolved default location is applied on initial routing (#4159) +* UBERF-4526: Elastic bulk error on re-indexing (#4155) -- Support short/custom links in inbox/chat/planner (#5815) +## [0.6.169] - 2023-12-06 -### UBERF-7286 +* 🚀 FEATURES: *(tests)* Updated sanity-ws dump (#4149)* 🚀 FEATURES: *(tests)* TESTS-95 done Status filter test (#4150) +* TESTS-25: Feat(tests): done Edit project tests (#4138) +* UBERF-4477: Fixed positioning of `AddSavedView` popup (#4148) +* UBERF-4560: Filter out spaces that are archived for kanban (#4147) -- Backup retry (#5830) +## [0.6.168] - 2023-12-05 -### UBERF-7297 +* UBERF-4555: Fix elastic backup/restore (#4144) -- Allow to backup-restore from v0.6.239 (#5837) -- One more fix to backup-restore (#5841) +## [0.6.167] - 2023-12-05 -### UBERF-7308 +* 🚀 FEATURES: *(tests)* Updated issues.spec.ts test (#4136) +* TESTS-24: Feat(tests): done Create project test (#4126) +* UBER-1144: Fixed estimation time representation used when creating issue and issue template (#4139) +* UBERF-4470: Make SetLabels action available on a single focused issue (#4140) -- Upgrade model improvements (#5847) +## [0.6.166] - 2023-12-04 -### UBERF-7312 +* EZQMS-394: Update diff viewer lint button colors (#4115) +* UBERF-4527: Extra logging for client (#4133) -- Memory improvements (#5849) +## [0.6.165] - 2023-12-02 -### Ezqms-1004 +* 🚀 FEATURES: *(tests)* TESTS-58 dont test delete template (#4125) +* UBER-1086: Fixed Elastic scroll contexts overflow issue, added tests for Elastic (#4124) +* UBERF-4514: Option for order of activity, pinned first in CommentPopup (#4122) -- Fix questions wording (#5820) +## [0.6.164] - 2023-12-01 -### Ezqms-1023 +* 🚀 FEATURES: *(tests)* Done TESTS-93 (#4110) +* EZQMS-403: Displatch value update from EditBox (#4114) +* EZQMS-407: Add Panel post utils slot (#4116) +* UBER-1083: Use hours and minutes to present less than a day durations (#4111) +* UBERF-4493: Mentions. When there is a lot of Applicants it's really difficult to mention employee (#4119) -- Remove old migrations from qms (#5823) +## [0.6.163] - 2023-11-29 -### Ezqms-966 +* TESTS: Feat(tests): updated flaky tests (#4106) +* UBER-1006: Support Ref for Vacancies (#4104) +* UBERF-4405: Empty Vacancies' members (#4105) +* UBERF-4478: Set modifiedOn on server for collections tx (#4103) +* UBERF-4486: Fix mention and spotlight categories (#4108) -- Notifications fixes (#5819) +## [0.6.162] - 2023-11-29 -## [0.6.254] - 2024-06-14 +* 🚀 FEATURES: *(tests)* Updated create-vacancy test (#4091) +* EZQMS-398: Fix StringDiffViewer (#4089) +* TESTS-92: Feat(tests): done Tracker filters tests - Modified date (#4094) +* UBERF-4238: Fix calendar utils (#4092) +* UBERF-4428: Add option to disable indexing for a class (#4090) +* UBERF-4446: Move search from text editor (#4093) -### UBERF-7266 +## [0.6.161] - 2023-11-28 -- Fix workspace rate limit (#5812) +* EZQMS-398: Update CollaborationDiffViewer (#4075)* EZQMS-398: Add StringDiffViewer (#4085) +* QFIX: Fix asterisk usage in forms (#4080) +* TESTS-56: Feat(tests): done Create a Template test (#4063) +* TESTS-57: Feat(tests): done Edit a Template test (#4079) +* TESTS-88: Feat(tests): done Add comment from several users test (#4054) +* UBERF-4165: Add search to actions popup (#4057) +* UBERF-4413: Kanban with huge data sets (#4076) +* UBERF-4420: Bump fieldStateId (#4071) -## [0.6.253] - 2024-06-13 +## [0.6.160] - 2023-11-27 -### UBERF-7247 +* EZQMS-393: Add CollaboratorEditor prop to hide popups (#4051) +* TESTS-89: Feat(tests): working on First user change assignee, second user should see assigned issue test (#4046) -- Fix queryFind for mixins on server (#5803) +## [0.6.159] - 2023-11-24 -### Ezqms-972 +* UBER-945: Pinning for comments (#4050) +* UBERF-4384: Update space from attributes (#4049) +* UBERF-4388: Few performance related fixes (#4053) -- Fix custom space types for documents and products (#5801) +## [0.6.158] - 2023-11-23 -### Ezqms-974 +* EZQMS-368: Fix exit text editor node uuid extension node (#4044) +* TESTS-85: Feat(tests): added issues.spec.ts test (#4025) +* TESTS-87: Feat(tests): done Issues status can be changed by another users test (#4036) +* UBER-1167: Revert All/Active/Backlog for issues (#4047) +* UBER-636: Fix from&to for NewMessage (#4043) +* UBERF-4302: Added footer to Calendar (#4033) +* UBERF-4325: Boost titles (#4023) -- Fix space type selector in document and product spaces (#5802) +## [0.6.157] - 2023-11-21 -## [0.6.252] - 2024-06-12 +* EZQMS-342: Add text editor configurable active highlighted node (#4019) +* TESTS-71: Feat(tests): updated allure parent suite (#4010) +* UBER-1074: Svelte 4 (#4014) +* UBER-911: Mentions without second input and tabs (#3798) +* UBERF-4229: Fix createAttachments runtime error (#3960) +* UBERF-4324: While indexing is still in progress we see undefined (#4017) +* UBERF-4348: Mentions. Fix render props types and component props types (#4022) -### Ezqms-1008 +## [0.6.156] - 2023-11-15 -- Disable archived product editing (#5794) +* 🚀 FEATURES: *(tests)* Updated tracker.loading.spec.ts test (#3989) +* QFIX: Swapping actions between buttons (#3990) +* UBER-1164: Clickable panel on the desktop app (#3988) +* UBERF-4216: Fix query for cases with mixins (#3981) +* UBERF-4287: Fix Indexer peak memory usage (#3993) +* UBERF-4289: Allow to configure user agent (#3995) -### Ezqms-976 +## [0.6.155a] - 2023-11-14 -- Exclude other types mixins (#5795) +* 🚀 FEATURES: *(ci)* Updated Deploy report to Github Pages flow step (#3984) +* UBERF-4267: Fix mergeQuery, provide a test case for it (#3985) -### Ezqms-981 +## [0.6.155] - 2023-11-14 -- Adjust doc library wording (#5791) +* 🚀 FEATURES: *(tests)* Added allure report for tests (#3944) +* UBERF-4161: Few inbox fixes (#3976) +* UBERF-4205: Updated Panel header layout, custom aside (#3974) +* UBERF-4263: Restore Back and Close button, fixed selectedAside (#3983) -### Uberf-7206 +## [0.6.154a] - 2023-11-10 -- Adjustments and resources to support desktop screenshare (#5790) +* UBER-942: Few skill fixes (#3971) -## [0.6.251] - 2024-06-11 +## [0.6.154] - 2023-11-10 -### 🐛 Bug Fixes +* EZQMS-360: Platform changes for document comments highlight sync (#3965) +* UBERF-4136: Fix global actions (#3961) +* UBERF-4195: Fix query after applying viewOptions (#3942) -- Disable guest link action for selection (#5776) +## [0.6.153] - 2023-11-08 -### ⚙️ Miscellaneous Tasks +* UBERF-4136: New issues from command palette (#3956) -- Update preview.ts (#5765) +## [0.6.152] - 2023-11-07 -### UBERF-7197 +* UBER-1127: Updated status bar layout (#3940) +* UBER-1141: Fixed Comments popup layout (#3946) +* UBER-1159: Fixed horizontal scrolling in Scroller (#3945) +* UBER-1161: Remove async to correctly handle query change (#3951) +* UBER-942: Rework skill optimization (#3941) -- Fix high cpu load (#5761) +## [0.6.151] - 2023-11-03 -## [0.6.250] - 2024-06-07 +* EZQMS-350: Fix reactions in threads (#3935) +* UBER-1143: Additional skill parsing, increase timeout for filter (#3933) +* UBER-1157: Some dependant fixes (#3936) -### UBERF-7077 +## [0.6.150] - 2023-11-01 -- Fixed Separator (#5743) +* 🚀 FEATURES: *(tests)* TESTS-39 done edit issue test (#3918) +* QMS: Fix collaborator editor loading (#3920) +* UBER-1116: Saving sidebar changes (#3919) +* UBER-1137: Prevent changes of spaces while kanban drag-and-drop (#3928) +* UBER-1143: Setting for skill import, redirect to talents from skillsView (#3925) +* UBER-1149: Events in team planing fixes (#3922) +* UBERF-18: Add reactions for comments (#3899) +* UBERF-4132: Fix unexpected delete of documents in query (#3921) +* EZQMS-334: More configurations for radio button and radio group (#3917) -### UBERF-7181 +## [0.6.149] - 2023-10-30 -- Fix GH PR statuses (#5749) +* 🚀 FEATURES: *(tests)* TESTS-43 added the Create an issue with all params test (#3905) +* 🐛 BUG FIXES: *(tests)* Updated the today selector for calendar (#3908)* 🐛 BUG FIXES: *(tests)* Updated the today selector for issues page (#3911) +* EZQMS-327: Move inline comments to platform popups (#3909) +* EZQMS-333: Customizable RadioButton label (#3900) +* TESTS-18: Feat(tests): added edit vacancy test (#3901) +* UBER-1101: Updated Separator (Float mode), fixed Scroller visibility (#3902) +* UBER-1146: Fix scrolling in emojis popup (#3912) -## [0.6.249] - 2024-06-05 +## [0.6.148] - 2023-10-26 -### UBERF-7090 +* UBER-1027: Don't update issue space in kanban view (#3895) +* UBER-634: Focus on SelectPopup (#3897) +* UBER-898: Assignee rules and general rules fix (#3894) -- Add QMS common components (#5711) -- Add QMS plugins (#5716) -- Add Office plugins (#5725) +## [0.6.147] - 2023-10-26 -### UBERF-7126 +* 🚀 FEATURES: *(tests)* Added Change & Save all States test (#3863)* 🚀 FEATURES: *(tests)* TESTS-10 added the Delete the Talent test (#3883) +* EZQMS-306: Add extensions for chunter message version (#3882) +* TESTS-22: Feat(tests): done test Merge Contacts (#3891) +* TESTS-9: Feat(tests): added edit Talent test (#3871) +* UBER-1088: ListItem fix. (#3872) +* UBER-1097: Remove second status editor amd fix done state selection in new Applicant popup (#3869) +* UBER-1099,-1100: Milestone fixes. (#3873) +* UBER-1106,-1108: Update navigator and button layout (#3870) +* UBER-1128: Fix to many requests from query (#3888) +* UBER-1129: Fix list support attached documents properly (#3889) +* UBER-937: Extensibility changes (#3874) +* UBER-942: Fix-skills script (#3876) +* EZQMS-331: Fix disabled button icon style (#3881) -- Fix blob previews (#5723) -- Support rich editor blob resolve (#5727) +## [0.6.146] - 2023-10-23 -### Ezqms-910 +* 🚀 FEATURES: *(tests)* Added delete application test (#3859) -- Fix workspace roles editing (#5726) +## [0.6.145] - 2023-10-19 -## [0.6.248] - 2024-05-31 +* 🚀 FEATURES: *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts (#3847)* 🚀 FEATURES: *(recruiting)* Working on update recruit tests and adding Edit Application test (#3851) +* EZQMS-278: Update comments popups (#3849)* EZQMS-278: Adjust view inline comments UI (#3855) +* EZQMS-291: Fix documents node selections issues (#3845) +* UBER-1085: Improve upgrade tool (#3852) +* UBER-1091: Fix attach button (#3854) +* UBER-921: Improve full text search (#3848) +* UBERF-31: Fix comment edit (#3853) -### UBERF-7114 +## [0.6.144] - 2023-10-16 -- Fix workspace from clone (#5703) +* TEXTEDITOR: Refactor attachments (#3833) +* UBER-1052: Fix remainings (#3844) -### UBERF-7118 +## [0.6.142] - 2023-10-13 -- Fix upgrade/refresh on reconnect (#5704) +* UBER-1039: Codeblock style fixes. (#3829) +* UBERF-3997: Fix Tab navigation in text editors (#3832) -## [0.6.247] - 2024-05-30 +## [0.6.141] - 2023-10-11 -### 🐛 Bug Fixes +* UBER-1038: Fix flicking during issue creation (#3826) +* UBER-953: Fix related issues (#3821) -- Use concatLink for transactor URL (#5659) -- Migrate content for documents only (#5699) +## [0.6.140] - 2023-10-10 -### Qfix +* QMS: Update inline comments extensions (#3814) +* UBER-984: UI fixes, Panel auto resize (#3818) -- Remove hardcoded platform url (#5692) +## [0.6.139a] - 2023-10-09 -### UBERF-6984 +* UBER-955: Added Separator component (#3804) -- Host-based branding (#5657) +## [0.6.138] - 2023-10-06 -### UBERF-7011 +* QFIX: Child info could be empty (#3785) +* UBER-987: Fix emojis in the middle of something (URLs) (#3790) -- Switch to Ref (#5661) +## [0.6.137] - 2023-10-03 -### UBERF-7062 +* EZQMS-279: Remove .ProseMirror global css (#3772) +* UBER-974: Fix saved views and mode in filters (#3780) +* UBER-977: A remaining time (#3783) -- Fix backup memory usage and support missing blobs (#5665) +## [0.6.136] - 2023-10-02 -### UBERF-7067 +* UBER-963: Related issues (#3773) +* UBERF-17: Missing smiles auto-conversion in rich texts :) (#3771) -- Make chat group labels translations reactive (#5688) +## [0.6.135] - 2023-10-01 -### UBERF-7105 +* EZQMS-266: Commenting on document (#3759) +* UBER-920: Fixed drag and drop in Calendar (#3767) +* UBER-939: Speedup table/kanban (#3764) -- Use status colour when projectState is undefined (#5697) +## [0.6.134] - 2023-09-29 -### Uberf-6639 +* CALENDAR: Resize and move event (#3750) +* UBER-845: Add NotificationPresenter to send rich text notifications (#3729) +* UBER-924: Fix file upload progress (#3757) -- Fix create issue default status (#5685) +## [0.6.133] - 2023-09-27 -### Uberf-7084 +* UBER-902: Fix transactions (#3748) +* UBER-914: Map to mixin after findAll (#3745) +* UBER-916: Navigation from issue to mentioned issue break description (#3746) +* UBER-923: Fix milestone category selector (#3747) -- Fix add new status to task type (#5684) +## [0.6.132] - 2023-09-26 -### Uberf-7090 +* QFIX: Migration (#3734) +* UBER-888: Fixed dragging of the WorkItem (#3735) -- Request enhancements (#5695) +## [0.6.131] - 2023-09-22 -## [0.6.246] - 2024-05-23 +* UBER-486: Updated people avatars. (#3720)* UBER-486: Replaced avatar colors (#3724) +* UBER-799: Allow extensions to tracker for github (#3727) +* UBER-888: Fixed dragging of the WorkItem (#3730) -### 🐛 Bug Fixes +## [0.6.130] - 2023-09-20 -- Proper drive space header button logic (#5642) -- Download drive files via temporary link (#5644) +* UBER-881: Fix labels list view numbers (#3721) -### Uberf-7018 +## [0.6.129] - 2023-09-20 -- Fix vacancies (#5647) +* UBER-885: Value filter fix (#3719) -## [0.6.245] - 2024-05-22 +## [0.6.128] - 2023-09-19 -### UBERF-6365 +* UBER-885: Fix Object filter (#3716) -- Blob mongo storage initial support (#5474) +## [0.6.127] - 2023-09-19 -### UBERF-6638 +* UBER-882: Fixed popup (#3713) -- Fix colours for statuses (#5620) +## [0.6.126] - 2023-09-18 -### UBERF-6854 +* UBER-784: Updated WorkItemPresenter (#3710) +* UBER-796: Fixed AttachmentActions (#3709) +* UBER-834: Improve list speed (#3692) +* UBER-839: Request the category if it's not in lookup (#3679) +* UBER-841: Allowed to position work item to half hour (#3707) +* UBER-851: Fix titles in ListView (#3678) +* UBER-852: Owner should only see a list of spaces (#3677) +* UBER-854: More proper upgrade notification (#3694) +* UBER-863: Fix employee filter (#3682) +* UBER-869: Fixed mentions in Activity. Fixed messages in Inbox. (#3695) +* UBER-871: Allow to hide/show archived and done in vacancies list (#3701) +* UBER-872: StyleTextEditor: No update when change text in another text (#3698) +* UBERF-81: Replacing the label (#3708) -- S3 provider (#5611) +## [0.6.125] - 2023-09-11 -### UBERF-6893 +* UBER-828: Fix slow value filter (#3676) -- Move index build into workspace usage. (#5586) +## [0.6.124] - 2023-09-08 -### UBERF-6949 +* 🐛 BUG FIXES: Trim cookie string before extracting values (#3652) +* ACTIVITY: Remove inline from presenters. DoneStatesPopup fix. (#3664) +* UBER-564: Add sound notification and settings (#3655) +* UBER-674: The calendar starts from the current time. Calendar fixes. (#3671) +* UBER-795: Updated layout of pop-ups. There is always a Back in the Panel. (#3644)* UBER-795: Replacing the Panel with a Dialog, fix circle button in Kanban. (#3659) +* UBER-807: Multiple github repositories fixes (#3646)* UBER-807: Allow to customize create issue dialog (#3669) +* UBER-832: Fixed DatePresenter (#3653) +* UBER-838: Signout button for inactive accounts (#3662) +* UBERF-55: Change editor toolbar behavior and update icons (#3645) +* UBERF-60: Update styles and presenters. (#3651)* UBERF-60: Updated Rich editor and Activity styles. (#3661)* UBERF-60: Updated inline presenters. (#3663) -- Fix kanban options (#5593) +## [0.6.123] - 2023-08-30 -## [0.6.243] - 2024-05-13 +* UBER-675: Updated layout of Radio and Circle button (#3638) +* UBER-816: Fix mentions (#3641) -### 🐛 Bug Fixes +## [0.6.122] - 2023-08-25 -- Hide actions for archived teamspaces (#5580) +* EZQMS-106: Add elastic search by refs support (#3629) +* UBER-675: Updated pop-ups and components layout (#3631) +* UBER-770: Add custom enum and ref attributes for grouping (#3622) +* UBER-797: Fix popup menu runtime error (#3627) +* UBER-802: Support underline formatting (#3636) +* UBER-803: Fix slow filter (#3634) +* UBER-805: Remove location from grouping (#3635) -### UBERF-6829 +## [0.6.121] - 2023-08-24 -- Group messages of the same type and user (#5569) +* UBER-667: UI fixes, displaying All day, time editor. (#3619) +* UBER-762: Fix editor popup menu behavior (#3617) +* UBER-772: Require having employee mixin to allow Staff mixin (#3618) -### Ezqms-876 +## [0.6.120a] - 2023-08-22 -- Adjust role assignment editor (#5583) +* 🐛 BUG FIXES: Telegram window not opening (#3615) -### Ezqms-883 +## [0.6.120] - 2023-08-22 -- Allow email notifications for requests (#5582) +* UBER-773: Fix List search anv Vacancy view (#3614) -### Ezqms-896 +## [0.6.119] - 2023-08-19 -- Fix owners assignment for default spaces (#5585) +* UBER-600: Fix label, fix colours for boolean presenter (#3608) +* UBER-726: Ask to update if manual update is required (#3602) +* UBER-749: Fix no label for unassigned (#3603) +* UBER-771: Use cookie instead of token for images (#3607) -## [0.6.242] - 2024-05-10 +## [0.6.118] - 2023-08-17 -### 🐛 Bug Fixes +* TEAM: Planning UI fixes (#3599) +* UBER-479: Add List view for Vacancies (#3595) +* UBER-500: Confusing Show More button in table (#3590) +* UBER-743: Provide person instead of id as prop (#3592) +* UBER-747: Fix readonly field (#3593) +* UBER-759: Prevent mutations of original object (#3596) -- Add missing productId to getAccountInfo (#5540) +## [0.6.117] - 2023-08-14 -### UBERF-6870 +* EZQMS-236: QE templates >> Have the ability to make a section mandatory (#3581) -- Speedup server broadcast of derived transactions (#5553) +## [0.6.116] - 2023-08-10 -### UBERF-6888 +* EZQMS-152: Some object selector dropdown items are cut (#3558) +* FIX: Grammatical and stylistic errors (#3552) +* UBER-720: Rework list view to multiple requests (#3578) +* EZQMS-245: Allow configurable languages per deployments (#3579) -- Async triggers (#5565) +## [0.6.115] - 2023-08-08 -## [0.6.241] - 2024-05-08 +* UBER-653: Open template folder that is enabled (#3573) +* UBER-710: Fix preference notifications (#3574) -### UBERF-6802 +## [0.6.114] - 2023-08-07 -- Improve create chat message performance (#5530) +* UBER-619: StatusPopup for creating/renaming (#3536) +* UBER-665: Rename EmployeeAccount->PersonAccount (#3550) -### UBERF-6807 +## [0.6.113] - 2023-08-03 -- Fix empty objects channels in chat (#5533) +* UBER-532: Copy issue URL works wrong (#3529) +* UBER-628: Allow reordering when sort is set to manual in the same group (#3553) +* UBER-648: Convert project identifier to upper case (#3546) +* UBER-677: Use State for Leads' status (like applicants do) (#3554) -## [0.6.240] - 2024-05-06 +## [0.6.112b] - 2023-08-01 -### 🐛 Bug Fixes +* UBER-646: Clear the class when view is changed to prevent using old one (#3541) +* EZQMS-241: Account for parent classes configurations in list view (#3537) -- Move to well known parent when no parent selected (#5516) +## [0.6.112a] - 2023-07-31 -### EZQMS-729 +* UBER-641: Fixed DatePopup. (#3535) -- Restrict spaces operations (#5500) +## [0.6.112] - 2023-07-29 -### QFix +* 🐛 BUG FIXES: Do not shrink expand/collapse icon in tree (#3517) +* ATS-13: Support multiple docs for copying (#3526)* ATS-13: Copy ID action (#3533) +* CALENDAR: Fixed the display of the past days (events) (#3527) +* QFIX: Translate ezqms email confirmation letter to english (#3532) +* TSK-1574: Accurate time reports count (#3509) +* UBER-427: Disable third-nested filters (#3502) +* UBER-550: Clean milestone when moving to another project (#3498) +* UBER-558: Filter out overrides for action popup (#3499) +* UBER-575: Allow per class list view (#3524) +* UBER-593: Hyperlink editor (#3506) +* UBER-601: Fixed accentuation of ObjectPresenter (#3507) +* UBER-609: Fix inbox notification/view for telegram and gmail messages (#3518) +* UBER-614: Fix submenu popups on scrolling (#3530) +* UBER-621: Display field validation rule hint (#3521) +* UBER-642: Use system theme as the default value for application theme (#3534) -- Connection should restore boolean query fields (#5508) +## [0.6.111] - 2023-07-13 -### UBERF-6576 +* ATS-9: Update states once template updates (#3496) +* TSK-336: Mobile UI adaptation (#3492) +* UBER-524: Cleaned CSS, UI fixes. (#3491) -- Move default space/project/task types into static model (#5423) +## [0.6.110] - 2023-07-08 -### UBERF-6778 +* UBER-142: Update buttons. Cleaning CSS. (#3482) +* UBER-298: Add readonly users option to the UserBoxItems component (#3481) +* UBER-413: Allow extensible navigator model (#3477) +* UBER-428: Displaying tooltips with a delay (#3442) +* UBER-462: Prevent creating existing enum value and disable the button in that case (#3465) +* UBER-472: Don't update when it's not needed (#3460) +* UBER-473: Show icon for department (#3472) +* UBER-477: Uberflow dependencies (#3440) +* UBER-498: Replace component shortcut (#3441) +* UBER-504: Correct display of optional presenters (#3452)* UBER-504: Fix presenters on ListItem. Add DeviceSizes. (#3463) +* UBER-505: Fix resolve errors in console (#3449) +* UBER-509: Do not update list of unread right after reading (#3461) +* UBER-513: Fix desktop app navigation (#3459) +* UBER-520: Fix images drag & drop (#3453) +* UBER-525: Fixed popup logic placement for top (#3448) +* UBER-528: Fix desktop navigation (#3450) +* UBER-536: Fix test stability (#3466) +* UBER-537: Review support in inbox (#3471) +* UBER-538: Update ListView layout. Subissues, related issues. (#3467)* UBER-538: Fixed ListView and KanbanView. (#3475) +* UBER-554: Show messages with error and allow resending (#3488) +* UBER-560: Filter out current transaction and get mixin (#3480) +* UBER-572: Fixed overflow for emoji. (#3485) +* UBER-573,-574: Updated button styles, fixed ListView (#3484) -- Add Support to uWebSocket.js library (#5503) +## [0.6.109] - 2023-06-16 -### Ezqms-730 +* UBER-424: Description not saving fix (#3434) +* UBER-450: Update MentionList. (#3431) +* UBER-480: Fix ValueFilter for space-like objects (#3428) +* UBER-482: Fix 'backspace' in inbox for some objects (#3437) +* UBER-485: Implement icons. (#3433) +* UBER-488: Update selected priority on issue switch (#3436) +* UBER-496: Fix few issues (#3439) -- Better check for roles when changing members (#5527) +## [0.6.108] - 2023-06-12 -### Ezqms-798 +* UBER-417: Replace AddSavedView with select popup, allow renaming (#3423) +* UBER-430: Remove old migrations (#3398) +* UBER-471: Fixed maintenance warining. (#3424) +* UBER-476: Duplicate comment fix (#3425) +* UBER-478: Fix issue presenter concurrency (#3426) -- Fix role name update (#5514) +## [0.6.107] - 2023-06-09 -### Ezqms-834 +* UBER-458: Fix submenu (#3416) +* UBER-459: Remove whereSelected line in dropdowns. (#3417) +* UBER-460: Fix admin view (#3420) -- Fix roles ids and names (#5520) +## [0.6.106] - 2023-06-08 -## [0.6.239] - 2024-05-03 +* UBER-158: New popup dialog (#3409) +* UBER-425: Tooltup/popup fixes (#3404) +* UBER-433: Allow tabs within bullets. (#3399) +* UBER-438: Use tracker as default for new users/workspaces (#3403) +* UBER-439: Fix plurals in russian (#3412) +* UBER-440: Fix link error message (#3406) +* UBER-441,-443: Disable fade in Scroller, change color for link and bg for Diff (#3405) +* UBER-442,-452: Fixed login/signup layout, link, mention and backtick. (#3408) +* UBER-453: Update favicons. (#3414) -### 🐛 Bug Fixes +## [0.6.104] - 2023-06-07 -- Show max width button in documents (#5476) +* UBER-421: Fixed attachment/comment icons (#3392) -### EZQMS-762 +## [0.6.103] - 2023-06-07 -- Improve printing layout (#5486) +* UBER-395: Allow to drop images into description (#3382) +* UBER-418: Fix object popup a bit (#3377) -### Qfix +## [0.6.102] - 2023-06-06 -- Elastic adapter index not found exception (#5482) +* UBER-252: Mode int URL in MyLeads/MyApplications (#3347) +* UBER-371: Retina images for login page (#3351) +* UBER-373: Fix blurry avatars and other images (#3353) +* UBER-377: Fix login (#3358) +* UBER-380: Change icon (#3364) +* UBER-383: Fix null/undefined for URI and numbers (#3359) +* UBER-394: Update tiptap plugins (#3368) +* UBER-397: Fix panel activity (#3370) -### UBERF-6756 +## [0.6.101] - 2023-06-05 -- Tracker performance fixes (#5488) +* UBER-263: Use person after creation (#3304) +* UBER-276: New messages and Has messages option for filter (#3326) +* UBER-318: Allow to configure default language (#3342) +* UBER-358: Fix icons (#3338) +* UBER-364: Adapt updated UI (#3348) +* UBER-369: Do not show number of comments if 0 (#3349) -### Ezqms-762 +## [0.6.100] - 2023-06-02 -- Extract base content from toc popup (#5489) +* UBER-137: Fix application search (#3309) +* UBER-170: Navigation for contacts (#3323) +* UBER-172: Fill contact template fields if only one selected (#3299) +* UBER-304: Fixed Navigator (#3312) +* UBER-307,-308,-310,-311,-312: Fixed activity in Inbox (#3298) +* UBER-327: Sub issues/Related issues allow to create from category header (#3317) +* UBER-328: Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. (#3314) +* UBER-331: Fix live query update (#3305) +* UBER-338: Added AppSwitcher popup. (#3329) +* UBER-345: Fixed Inbox. (#3325) -## [0.6.238] - 2024-04-26 +## [0.6.99] - 2023-05-30 -### UBERF-6676 +* UBER-199,-217,-232: Fixed header in ListView, EditMember, ViewOptions (#3273) +* UBER-267: Fix created selection (#3269) +* UBER-270: Enable color more wide (#3279) +* UBER-271: Fix filters (#3293) +* UBER-274,-287,-288,-294: Fixed tooltip, ActionsPopup, ListHeader, activity. (#3282) +* UBER-278: Add Yes-No to popup, refactor (#3289) +* UBER-279: Total qfix (#3281) +* UBER-289: Prevent empty changes to go into transactions. (#3277) +* UBER-295: Fix blur'y popups (#3278) +* UBER-296: Fix create application color selector (#3280) +* UBER-317: Fix issue (#3285) +* UBER-319: Fix vacancy editing (#3290) +* UBER-320: Fix companies filter (#3292) -- Chat local state (#5461) +## [0.6.98a] - 2023-05-28 -### UBERF-6677 +* UBER-268: List views (#3270) +* UBER-269: Fix mini toggle (#3271) -- Add user online/offline status (#5438) +## [0.6.98] - 2023-05-27 -### UBERF-6712 +* UBER-187: Inline attachments (#3264) +* UBER-218: Fix createOn -> createdOn (#3266) +* UBER-238: Colors should not use alpha channel (#3255) +* UBER-265: Updated application icons (#3263) +* UBER-266: Fix mongo exceptions (#3267) +* UBER-267: Fix Users popup (#3268) +* UBER-53: My Leads view (#3259) +* UBER-64,-231,-229: Updated CreateProject and SelectAvatar layouts, fixed bugs (#3253) -- Rework connection logic (#5455) +## [0.6.97] - 2023-05-24 -### UBERF-6726 +* TSK-1523: Fixed IssuePreview (#3231) +* TSK-1525: Fixed VacancyPresenter (#3237) +* UBER-134: Back references (#3233) +* UBER-135/TSK-1430: Allow changing image in PDFViewer through arrow-keys (keyboard) (#3186) +* UBER-148: My Applications in recruit (#3235) +* UBER-159: Popup dialog for deleting with message if not enough permissions (#3224) +* UBER-182: Fix status object filter (#3250) +* UBER-194,-166,-185: Add application icons, fixed Inbox list and mobile layout (#3229) +* UBER-205: More info to Kanban card (due date, assignee, Lead number) (#3251) +* UBER-206: Redefined color palettes (#3243) +* UBER-219: Updated CreateIssue layout (#3244) +* UBER-47: Attributes for base class (ex. contacts in lead's customers) (#3241) +* UBER-49: Custom fields in CreateLead (#3249) +* UBER-50: Remove funnel browser (#3236) -- Fix clone for huge files (#5470) +## [0.6.96] - 2023-05-21 -### Uberf-6708 +* TSK-1257: Split owner name to first and last name fields (#3156) +* TSK-1402: Fix default assignee when creating issues (#3159) +* TSK-1469,-1470: Added SelectAvatars, UserBoxItems components (#3176) +* TSK-1489: Fixed Components, Milestones, IssueTemplates layout (#3220) +* TSK-1500: Enable compression by default (#3177) +* TSK-760: Fix scroll issue for mac (#3173) +* UBER-122: Fix invalid time report shown (#3191) +* UBER-130: Fix expand/collapse on multiple levels (#3198) +* UBER-136: Fix Exception with custom attributes (#3195) +* UBER-144: Fixed showHeader (#3214) +* UBER-174: Introduce createOn every there (#3222) +* UBER-177: Fixed Filter pop-ups (#3225) +* UBER-48: Custom fields for organization in leads (#3203) +* UBER-54: Attempt to Expand/collapse issue fix (#3183) +* UBER-56: Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application (#3196) +* UBER-62: Maintenance warnings (#3210) +* UBER-76: Trigger search after timeout (#3193) +* UBER-81: Fix move project (#3182) +* UBER-83: Add BrowserStack notice into readme (#3178) +* UBER-87: Add new icons (#3188) +* USER-145: Fixed FixedColumn (#3216) +* USER-79: Fixed the sidebar in the Panel. Update IssuePreview layout. (#3201) -- Composite elastic doc key (#5457) +## [0.6.95] - 2023-05-12 -## [0.6.237] - 2024-04-23 +* TSK-1324: Update popups and colors (#3152) +* TSK-1387: Count cancelled sub-issues as completed (#3158) +* TSK-1418: Make issue notification width smaller (#3160) +* TSK-1429: Rework dueDate to ignore overdue in applicants, kanban and right panel (#3169) +* TSK-1432: Fix popup closing (#3170) +* TSK-1436: Change deleting spaces to removing, add action to move all non-valid requests to correct spaces (#3149) +* TSK-1451: Fix focus issues + jump workaround (#3167) +* TSK-1452: Revert sprint statistics display (#3142) +* TSK-1454: Added varieties to the TabList (#3161) +* TSK-1459: Update Panel layout (#3163) +* TSK-742: Use partial binary protocol with ability on/off (#3153) -### Ezqms-748 +## [0.6.94] - 2023-05-04 -- Hide left menu by default, ensure placement, improve show/hide logic (#5429) +* TSK-1098: My issues list (#3137) +* TSK-1236: Trigger to remove members when deleting department. Fix for already broken departments (#3120) +* TSK-1257: Add sorting by create time (#3138) +* TSK-1409: Bump. client resources 0.6.16 (#3134) +* TSK-831: Edit issue fixes (#3140) -## [0.6.236] - 2024-04-23 +## [0.6.93] - 2023-05-04 -### UBERF-6653 +* TSK-1251: My issues action. Hotkeys to lower case (#3122) +* TSK-1337: Ui fixes. (#3133) +* TSK-1394,-1407,-1412,-1417,-1422,-1423: Minor fixes. Fixed Scroller. (#3124) +* TSK-1400: Show 0 in total (time spend reports) (#3127) +* TSK-1414: Fix exceptions in Kanban (#3119)* TSK-1414: Fix exceptions in Kanban (#3119) (#3123) +* TSK-1419: Show greyed requests on holidays and weekends (#3121) +* TSK-1431,-1440: Update AttachmentPresenter. Replace colors, minor fixes. (#3131) -- Fix minor issue and add force-close (#5418) +## [0.6.92] - 2023-05-02 -## [0.6.235a] - 2024-04-20 +* TSK-1166: Sprint editor action (#3110) +* TSK-1206: Drag-drop statuses between categories (#3112) +* TSK-1324: Update kanban layout (#3118) +* TSK-1339: Resize tooltip for dueDate and ignore overdue in done/cancelled (#3113) +* TSK-1393: Fix status findAll requests extra data (#3105) +* TSK-1405: Fix hover selection (#3109) +* TSK-1406: Correct Configuration defaults (#3107) +* TSK-1410,-1408,-1392,-1389,-1386,-1377: Minor fixes. Update IssueNotification layout. (#3117) -### UBERF-6636 +## [0.6.91a] - 2023-04-27 -- Fix todos auto expand if collapsed (#5406) +* TSK-1339: Show dueDate for cancelled/done issues (#3091) +* TSK-1378: Qfix for exception (#3097) +* TSK-1381: Show preview and Table mouse hover selection (#3098) -### UBERF-6643 +## [0.6.91] - 2023-04-27 -- Fix few connection related exceptions (#5412) -- A bit more logging (#5413) +* TSK-1009: Configurable platform (#3055) +* TSK-1066: Don't allow creating requests if already exists for set days (#3053) +* TSK-1068: Update department for Staff via side panel (#3073) +* TSK-1098: All issues related fixes (#3079) +* TSK-1113: Add issueUrl to notification for sub-issues (#3057) +* TSK-1114: Fix default issue status (#3044) +* TSK-1248: Revert changes and add check for unset field (#3054) +* TSK-1311: Add editors for String and Number (#3056) +* TSK-1312: Refit tooltip after loading components inside it (#3083) +* TSK-1314: Fix slow Kanban open (#3052) +* TSK-1323: Fix colors for list (#3069) +* TSK-1342: Reduce number of transfer data and improve Kanban initial render speed (#3078) +* TSK-1353: Update ListView headers. Replaced colors in settings. (#3086) +* TSK-1375: Sub issue selector icons (#3089) +* TSK-571: Fix keyboard list navigation (#3085) -## [0.6.235] - 2024-04-19 +## [0.6.90] - 2023-04-23 -### UBERF-6626 +* TSK-1243: Add scroller to project's components list (#3045) -- More detailed info about maintenance (#5400) +## [0.6.89] - 2023-04-21 -### UBERF-6633 +* TSK-1047: Fix showing requests after moving staff to another department (#3029) +* TSK-1064: Fix export csv in hr (#3032) +* TSK-1237: Improve full text indexer (#3025) +* TSK-1274: Fix Kanban live updates (#3024) -- Fix model enabled tracking (#5404) +## [0.6.88] - 2023-04-19 -## [0.6.234] - 2024-04-18 +* TSK-1248: Sort null last for dates (#3021) +* TSK-1252: Dispatch update event for attribute bar (#3017) +* TSK-964: Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes (#3022) -### UBERF-5527 +## [0.6.87] - 2023-04-19 -- Add context menu for activity and inbox (#5373) +* TSK-1158: Remove component from sprint. Remove logic for changing component on sprint change (#2998) +* TSK-1248: Fix dueDate sorting order (#3013) +* TSK-808: Ignore initial validation when autofilled for login form (#3012) -### UBERF-6205 +## [0.6.86] - 2023-04-17 -- Add real archive for notifications (#5385) +* TSK-1213: Allow to clean archived vacancies with content (#2999) +* TSK-1216: Fix bitrix import (#3005) +* TSK-753: Open user's department in schedule by default (#3001) -### UBERF-6490 +## [0.6.85] - 2023-04-17 -- Rework backup tool (#5386) +* TSK-1032: Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only (#2964) +* TSK-1201: Fix bitrix migration and too to clean removed transactions (#2995) -### UBERF-6598 +## [0.6.84] - 2023-04-16 -- Perform upgrade all workspaces to new versions (#5392) +* TSK-1200: Fix Applications with wrong state (#2992) -## [0.6.233] - 2024-04-16 +## [0.6.83] - 2023-04-14 -### Qfix +* TSK-1062: Work on Employee and EmployeeAccount migration (#2986) +* TSK-1189: Fix showing all available categories (#2987) +* TSK-1194: Fix filter (#2990) -- Always recreate space types (#5371) +## [0.6.82] - 2023-04-13 -### UBERF-6464 +* TSK-1152: Fix connections mess (#2969) +* TSK-1153: Fix server model load exceptions (#2967) +* TSK-1154: Statuses table support (#2974) +* TSK-1170: Fix transactions retrieval to speedup of workspace open (#2976) -- Update activity mentions display (#5339) +## [0.6.81] - 2023-04-12 -### UBERF-6577 +* TSK-1012: Change text names for Organizations to Companies (#2963) +* TSK-1086: Fix merge (#2961) +* TSK-1141: Fix bitrix fields (#2956) +* TSK-1146: Support initial content text for collaborator doc (#2960) +* TSK-1148: Mixin button for Vacancy and NPE fixes (#2965) +* TSK-1150: Rollback svelte (#2966) -- Fix invite link with null mask (#5372) +## [0.6.80a] - 2023-04-12 -## [0.6.232] - 2024-04-16 +* TSK-1089: Proper Recruit Archive (#2952) -### 🐛 Bug Fixes +## [0.6.80] - 2023-04-11 -- Workspace creation issues (#5362) +* TSK-1040: Support editable for DraggableList (#2932) +* TSK-1072: Fix Created by (#2948) +* TSK-1092: Fix reconnect for Safari (#2929) +* TSK-1093: Fix Application doneState showing (#2927) +* TSK-1106: Update to latest packages (#2943) -### UBERF-5686 +## [0.6.79] - 2023-04-07 -- Fix copy link (#5368) +* TSK-1007: Add comments in talent editor (#2922) +* TSK-1013: Add position field to Employee (#2874) +* TSK-1015: Bitrix Create Vacancy/Application (#2913) +* TSK-1038: Fix comments presenter (#2896) +* TSK-1062: Fix merge properly (#2919) +* TSK-1065: Check model version (#2916) +* TSK-1088: Show Kanban counters (#2924) +* TSK-943: General Status support (#2842) +* TSK-990: Remove Back button in settings (#2875) +* TSK-1040: Support draft for DraggableList (#2898) -### UBERF-5964 +## [0.6.78] - 2023-04-03 -- Insert items menu in editor (#5341) +* TSK-1010: Change color for New Customer button (#2870) +* TSK-950: Remove value from filter if the object doesn't exist (#2852) -### UBERF-6330 +## [0.6.77] - 2023-03-31 -- Fix race conditions in UI (#5184) +* TSK-839: Fix localization strings (#2833) +* TSK-903: Do not allow saving if set to private with no members (#2854) +* TSK-916: Fix attribute errors in console (#2839) +* TSK-942: Add hours to current time (#2837) +* TSK-955: Fix status display (#2840) +* TSK-960: Move for issues (#2846) +* TSK-963: Show avatar on comments (#2857) +* TSK-976: Hide preview action (#2847) +* TSK-983: Fix Cache control for index pages (#2850) +* TSK-987: Show filter with 0 value (#2855) +* TSK-988: Sticky first column in hr calendar (#2867) +* TSK-989: Transparent requests (PTO, extra, etc.) when not in department or it's descendants (#2861) +* TSK-992: Fix column name in Companies (#2860) -### UBERF-6557 +## [0.6.76a] - 2023-03-24 -- Clean old domains during clone of workspace to new place (#5361) +* TSK-897: Allow team-leads and managers to edit descendant departments (#2825) +* TSK-941: Fix incorrect rewriting space after selecting in SpaceSelect (#2827) -### Ezqms-724 +## [0.6.76] - 2023-03-24 -- Make roles related code more robust (#5363) +* TSK-745: Do not allow changing previous months events (Requests and public holidays) (#2796) +* TSK-811: Fix for undefined when saving platform last location (#2790) +* TSK-813: Fix input width and remove divider for time report popup (#2794) +* TSK-825: Client proper reconnection (#2797) +* TSK-831: Edit Title and Description inline (#2788) +* TSK-858: Send picture without text as comment for issues (#2793) +* TSK-885: Fix invalid deps (#2777) +* TSK-912: Notifications on removing the request (#2806) +* TSK-915: Tracker status (#2802) +* TSK-920: Rename CreatedBy field (#2807) +* TSK-924: Follow proper order for Tracker Kanban (#2815) +* TSK-934: Redirect to last location on opening main page (#2817) +* TSK-937: Fix tooltip for employee (#2822) -### Uberf-6537 +## [0.6.75b] - 2023-03-21 -- Fix teamspace creation (#5354) +* TSK-894: Fix template creation and apply (#2785) +* TSK-895: Allow to mention only active employees (#2786) -## [0.6.231] - 2024-04-13 +## [0.6.75a] - 2023-03-21 -### EZQMS-689 +* TSK-877: Show only Candidates for Application creation dialog (#2784) +* TSK-889: Fix hang and displayName search for Employee (#2783) -- Slightly improved typings for notification presenters (#5312) +## [0.6.75] - 2023-03-21 -### UBERF-6469 - -- Fix slow index creation (#5324) - -### UBERF-6478 - -- Make icons more clear (#5320) - -### UBERF-6508 - -- Add user to doc collaborators on mention (#5340) - -### UBERF-6509 - -- Fix reading mention notifications (#5323) - -### UBERF-6523 - -- Allow to use zstd (#5333) - -### UBERF-6540 - -- Fix isIndexable and clean wrong indexed documents (#5347) - -## [0.6.230] - 2024-04-10 - -### Silent - -- False for notifications (#5284) - -### UBERF-6469 - -- Rework workspace creation to more informative (#5291) - -## [0.6.229] - 2024-04-10 - -### 🚀 Features - -- *(help)* Added find bug button for easy navigation (#5214) - -### Qfix - -- Center media, improve matching (#5267) - -### UBERF-6353 - -- Extensible preview (#5264) - -## [0.6.228a] - 2024-04-09 - -### UBERF-6426 - -- Fix stuck backup (#5258) - -### UBERF-6433 - -- Fix workspace creation from demo workspaces (#5255) - -## [0.6.228] - 2024-04-08 - -### TSK-1682 - -- Introduced reusable `SectionEmpty` for numerous existing and upcoming cases (#5220) - -### UBERF-6313 - -- Improve backup/restore (#5241) - -## [0.6.227] - 2024-04-08 - -### EZQMS-663 - -- Add permissions util (#5189) - -### Qfix - -- Restore ats task types tool (#5185) - -### TSK-1682 - -- Slightly reorganized recruit files for future changes (#5196) - -### UBERF-6374 - -- Improve server logging and improve startup performance (#5210) - -### UBERF-6393 - -- Work on elastic fast backup/restore (#5235) - -## [0.6.226] - 2024-04-04 - -### UBERF-6313 - -- Improve upgrade of workspace (#5178) - -### UBERF-6314 - -- Provide space if all of the items have same space (#5171) - -### UBERF-6318 - -- Fix server drop connection on connect (#5174) - -## [0.6.225] - 2024-04-03 - -### UBERF-6296 - -- Fix elastic queries (#5155) - -### UBERF-6300 - -- Not cache for index.html's (#5159) - -### UBERF-6310 - -- Fix context passing (#5167) - -### Uberf-6255 - -- Minor guest and pdf viewer adjustments (#5164) - -## [0.6.224] - 2024-04-02 - -### QFIX - -- Wrong minio config parameter (#5151) - -## [0.6.223] - 2024-04-02 - -### UBERF-6161 - -- Storage configuration (#5109) - -### UBERF-6263 - -- Fix mongo client unexpected close (#5129) - -### UBERF-6265 - -- Fix account creation from account service (#5132) - -### UBERF-6267 - -- Fix few platform troubles (#5142) - -## [0.6.222] - 2024-04-01 - -### 🚀 Features - -- Preview media attachments (#5102) - -### UBERF-6226 - -- Updated LOVE layout, VideoPopup. (#5100) - -### UBERF-6242 - -- More proper manage mongo connections (#5118) - -## [0.6.221] - 2024-03-29 - -### Qfix - -- Consistent space/project/task type mixi ids (#5089) - -### Ezqms-663 - -- Add more info to permissions store, fix tree element actions (#5090) - -### Uberf-6224 - -- Restore missing task types (#5094) - -## [0.6.220] - 2024-03-28 - -### Qfix - -- Invert delete object permission (#5085) - -## [0.6.219] - 2024-03-28 - -### EZQMS-612 - -- Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) (#5083) - -### EZQMS-665 - -- Minor inbox styles fix (#5065) - -### UBERF-6001 - -- Roles management (#4994) - -### UBERF-6202 - -- Use only one mongo pull per configuration (#5073) - -### UBERF-6209 - -- Add reactivity (#5078) - -## [0.6.218] - 2024-03-27 - -### 🚀 Features - -- *(test)* Updated Due date filter test (#5057) - -### UBERF-6094 - -- Preparing bot (#5061) - -### UBERF-6180 - -- Fix account issues (#5063) - -### UBERF-6194 - -- CLI for rename account (#5067) - -## [0.6.216] - 2024-03-25 - -### 🚀 Features - -- *(planner)* Drag-n-drop (#5031) -- *(planner)* Save accordion state (#5042) -- *(planner)* Remove large view mode (#5043) - -### 🐛 Bug Fixes - -- `Panel` glitches on opening (#5033) - -### QFix - -- Few check from sentry and disable due date test (#5050) - -### UBERF-6124 - -- Rework inbox view (#5046) - -### UBERF-6126 - -- Storage adapter (#5035) - -### UBERF-6150 - -- Improve backup logic (#5041) - -## [0.6.215] - 2024-03-21 - -### EZQMS-602 - -- Moved `Rank` type to core (utilities stay in its own package) (#5019) - -### UBERF-6121 - -- Fix front service caching (#5029) - -## [0.6.214] - 2024-03-19 - -### 🚀 Features - -- *(planner)* Add action for toggle button (#4986) -- *(test)* Working on the migration planner tests (#5002) -- *(planner)* Some ui improvements (#4992) -- *(planner)* New layout for attached todos (#4995) -- *(planner)* New slots, fixes and improvements (#4961) - -### EZQMS-642 - -- Extended `navigate()` signature to support History replacement (#4979) - -### UBERF-6053 - -- Do not crash on isDerived (#4998) - -### UBERF-6058 - -- Fix cache control for front service (#5000) - -### UBERF-6066 - -- Fix component manager state (#5009) - -## [0.6.213] - 2024-03-15 - -### 🐛 Bug Fixes - -- Default project icon (#4984) - -### UBERF-6042 - -- Fix front service (#4991) - -## [0.6.212] - 2024-03-15 - -### 🚀 Features - -- *(test)* Updated Document public link revoke test (#4955) - -### 🐛 Bug Fixes - -- Missed invite icon (#4962) - -### UBERF-5933 - -- Add 404 handling in case of resource direct requests (#4983) - -### UBERF-5986 - -- Upgrade fixes (#4957) - -### UBERF-6000 - -- Fix statuses filtering and icons (#4966) - -### UBERF-6014 - -- Fix $faset usage (#4971) - -## [0.6.211] - 2024-03-13 - -### UBERF-5982 - -- Fix tracker select all action (#4950) - -## [0.6.210a] - 2024-03-13 - -### 🐛 Bug Fixes - -- *(planner)* Frozen slots when switching between todos (#4944) - -### TESTS-221 - -- Feat(tests): done Document public link revoke test (#4940) - -## [0.6.210] - 2024-03-13 - -### 🚀 Features - -- *(planner)* New priority layout, update item layout (#4896) -- *(test)* Updated Due Date test (#4925) - -### EZQMS-459 - -- Hoisted `showNotify` calculation to `ActivityNotificationPresenter` (#4937) - -### EZQMS-649 - -- Moved some common utilities from Uberflow to Platform (#4927) - -### TESTS-102 - -- Feat(tests): done Label filter test (#4885) - -### TESTS-216 - -- Feat(tests): done Public link generate test (#4915) - -### TESTS-217 - -- Feat(test): done Public link Revoke test (#4926) - -### TESTS-236 - -- Feat(tests): done Create workspace with LastToken in the localStorage test (#4939) - -### TESTS-94 - -- Feat(tests): done Due date filter test (#4891) - -### UBERF-5825 - -- Fix github issues (#4924) - -### UBERF-5932 - -- Fix account upgrade (#4912) - -## [0.6.209] - 2024-03-08 - -### 🚀 Features - -- *(planner)* Improve and reuse `Chip` (#4854) - -### 🐛 Bug Fixes - -- *(todo)* Checkbox focus and spinner (#4890) -- *(todo)* Broken context actions (#4889) - -### EZQMS-377 - -- Add file attachments extension to text editor (#4284) - -### EZQMS-562 - -- Introduced reusable `NotificationToast` component (#4873) - -### EZQMS-602 - -- Moved Rank to its own package (#4845) - -### TESTS-100 - -- Feat(tests): done Milestone filter test (#4872) - -### TESTS-101 - -- Feat(tests): done Modified by filter test (#4871) - -### TESTS-103 - -- Feat(tests): done Title filter test (#4863) - -### UBERF-5811 - -- Rework backlinks (#4887) - -### UBERF-5827 - -- Add collaborative description for companies (#4851) - -### UBERF-5886 - -- Fix todo reorder on click (#4904) - -## [0.6.208] - 2024-03-04 - -### 🚀 Features - -- New todo checkbox (#4841) -- *(tests)* TESTS-93 updated Created date filter test (#4862) -- *(tests)* Updated Created date filter test (#4868) - -### 🐛 Bug Fixes - -- Create event popup improvements (#4850) - -### TESTS-212 - -- Feat(tests): done Add comment by popup test (#4817) - -### UBERF-5870 - -- Fix cache control and some minor enhancements (#4869) - -## [0.6.207] - 2024-03-01 - -### UBERF-5812 - -- Fix allow to delete based on all my accounts (#4823) - -## [0.6.206] - 2024-03-01 - -### 🚀 Features - -- *(tests)* Added documents tests (#4843) - -### UBERF-5712 - -- Fix jumping when scroll in bottom and add auto scroll to new content (#4830) - -## [0.6.205] - 2024-02-29 - -### 🚀 Features - -- *(tests)* Added execute deploy in any status (#4767) - -### TESTS-196 - -- Feat(test): done Remove relation be editing issue details test (#4755) - -### UBER-1239 - -- Fix missing notifications for mentions from doc (#4820) - -### UBERF-5394 - -- Create component for new search input (#4777) - -### UBERF-5604 - -- Avoid extra calls on read notifications (#4781) - -### UBERF-5621 - -- Add full date tooltip (#4783) - -### UBERF-5626 - -- Set autofocus end on message edit (#4784) - -### UBERF-5630 - -- Fix inactive employee status in activity (#4782) - -### UBERF-5650 - -- Do not send mention notification if user already notified (#4821) - -### UBERF-5675 - -- Fix activity and notifications for colelction update (#4819) - -### UBERF-5718 - -- Allow to find one from existing queries (#4776) - -### UBERF-5733 - -- Remove invalid lookup update (#4779) - -### UBERF-5734 - -- Fix guest mode display of server generated links (#4790) - -### UBERF-5744 - -- Fix exception on server (#4787) - -### UBERF-5795 - -- Improve logging capabilities (#4813) - -## [0.6.204] - 2024-02-26 - -### TESTS-193 - -- TESTS-194: feat(tests): working on the tests (#4739) - -## [0.6.203] - 2024-02-25 - -### UBERF-5511 - -- Fix query and include ibm plex mono (#4764) - -## [0.6.202] - 2024-02-23 - -### 🚀 Features - -- *(tests)* TESTS-47 done Mark as blocked by test (#4737) - -### UBER-958 - -- Fix query updates (#4742) - -### UBERF-5594 - -- Render mentions before object is loaded (#4738) - -### UBERF-5595 - -- Hide link preview for chat (#4752) -- Set up attachments sizes (#4746) - -### UBERF-5628 - -- Fix unexpected Reference object in Activity on mentions in description (#4753) - -### UBERF-5673 - -- Esbuild transpile (#4748) - -### UBERF-5694 - -- Attempt to fix build cache (#4757) - -## [0.6.201] - 2024-02-20 - -### TESTS-182 - -- Feat(tests): done Create sub-issue from template test (#4711) - -### UBER-1227 - -- Fix members duplicates (#4721) - -## [0.6.200] - 2024-02-19 - -### TESTS-192 - -- Feat(tests): done Add comment with image attachment test (#4687) - -### UBER-708 - -- Github related fixes (#4704) - -### UBERF-5472 - -- Add pagination for channels/direct (#4706) - -### UBERF-5586 - -- Improve loading of reactions and saved messages (#4694) - -## [0.6.198] - 2024-02-16 - -### 🚀 Features - -- *(tests)* Updated reports and prepare server step (#4659) - -### QFIX - -- Create project type (#4685) - -### UBERF-5548 - -- Use esbuild with webpack (#4657) - -### UBERF-5570 - -- Fix avatars (#4679) - -### UBERF-5575 - -- Fix workspace join (#4684) - -### Uberf-5551 - -- Configurable click propagation from edit box (#4674) - -## [0.6.197] - 2024-02-15 - -### UBERF-5526 - -- Fix scroll to new messages (#4651) - -### UBERF-5532 - -- Fix recruit comments typo (#4648) - -### UBERF-5538 - -- Fix server queryFind with mixins (#4653) - -## [0.6.196] - 2024-02-14 - -### EZQMS-563 - -- Moved `ActionWithAvailability` helper type and functions from `questions` to `view` (#4611) - -### UBERF-4319 - -- Fix performance issues (#4631) - -### UBERF-5467 - -- Remove hidden notifications and use Lazy on inbox (#4632) - -### UBERF-5476 - -- Fix archive in inbox (#4618) - -### UBERF-5485 - -- Fix versions in bundled resources (#4625) - -### UBERF-5495 - -- Load all messages for inbox with one query (#4628) - -## [0.6.195] - 2024-02-13 - -### TESTS-167 - -- Feat(tests): done Check that the issue backlink test (#4596) - -### TESTS-179 - -- Feat(tests): done Check the changed description activity test (#4598) - -### UBEF-4319 - -- Few more performance fixes (#4613) - -### UBERF-4319 - -- Fix create issue performance (#4608) - -### UBERF-5323 - -- Fix new messages marker (#4614) - -### UBERF-5324 - -- Allow cmd-k for editable content (#4601) - -### UBERF-5438 - -- Fix edit issue attributes keys (#4602) - -## [0.6.194] - 2024-02-09 - -### 🚀 Features - -- *(tests)* TESTS-166 done Check Contact activity backlink test (#4585) - -### UBERF-5408 - -- Fix inline images in comments (#4591) - -### UBERF-5418 - -- Fix status editing (#4590) - -## [0.6.193] - 2024-02-08 - -### 🚀 Features - -- *(test)* Updated Move to project test (#4582) - -### TESTS-164 - -- Feat(tests): done mentioned in the issue test (#4575) - -### UBERF-4867 - -- Fix issues mentions display (#4580) - -### UBERF-5325 - -- Disable send message during attachment upload (#4583) - -### UBERF-5326 - -- Fix extra scroll and higlight when thread opened (#4579) - -### UBERF-5382 - -- Allow to disable component edit for some cases (#4574) - -### UBERF-5393 - -- Fix backlink for thread (#4578) - -## [0.6.192] - 2024-02-07 - -### 🚀 Features - -- *(tests)* Updated Create duplicate issues test (#4542) -- *(tests)* Updated close issue selector (#4551) -- *(tests)* TESTS-171 done Check validation steps test (#4558) - -### 🐛 Bug Fixes - -- Tags view action button layout (#4514) - -### EZQMS-531 - -- Prop to disable Save As and Save buttons in `FilterBar` (#4560) - -### TESTS-169 - -- Feat(tests): done Create a workspace with a custom name test (#4541) - -### UBERF-4319 - -- Trigger Server queries (#4550) - -### UBERF-5289 - -- Fix getting parent doc for some cases for indexing (#4549) - -### UBERF-5315 - -- Update chat (#4572) - -### UBERF-5321 - -- Fix workspace CLI upgrade (#4534) - -### UBERF-5348 - -- Fix new status creation (#4567) - -### UBERF-5350 - -- Fix workspace name create issue (#4555) - -### UBERF-5364 - -- Fix targeted broadcast on server (#4565) - -## [0.6.191] - 2024-02-05 - -### 🐛 Bug Fixes - -- Broken checkbox behavior (#4509) -- Popup glitches caused by long calculations (#4511) - -### UBERF-5017 - -- Show correct collaborators diff and dont send notification for collaborators changer (#4529) - -### UBERF-5304 - -- Fix init workspace (#4524) - -## [0.6.190] - 2024-02-03 - -### UBERF-5280 - -- Fix backup service (#4506) - -## [0.6.188] - 2024-02-02 - -### 🚀 Features - -- *(tests)* Updated filter between tests (#4488) - -### EZQMS-467 - -- Fixed group for `Open in new tab` action (#4481) - -### UBER-1160 - -- Open vacancy panel when it’s opened from applicant (#4473) - -### UBER-944 - -- Action for opening in new tab (#4447) - -### UBERF-4319 - -- Performance changes (#4474) -- Improve performance (#4501) - -### UBERF-4983 - -- Update chat ui (#4483) - -### UBERF-5020 - -- Fix reply to thread (#4502) - -### UBERF-5140 - -- Any workspace names (#4489) - -### UBERF-5232 - -- Fix wrong activity message title (#4498) - -### UBERF-5243 - -- Add default size, make icons size consistent (#4494) - -### UBERF-5265 - -- Fix workspace creation (#4499) - -### UBERF-5275 - -- Fix collaborator editing (#4505) - -## [0.6.187] - 2024-01-30 - -### TESTS-159 - -- Feat(tests): done Create issue with several attachment tests (#4464) - -### UBER-1005 - -- Array> support as custom attribute (#4471) - -### UBER-1198 - -- Upgrade to mongo 7 (#4472) - -### UBERF-4631 - -- Fix issue when link preview in activity displayed as #undefined (#4435) - -### Ezqms-537 - -- Make thread header hidable (#4458) - -## [0.6.186] - 2024-01-25 - -### 🚀 Features - -- *(tests)* Updated duplicate issues test (#4450) - -### EZQMS-461 - -- Add generics for `ModeSelector` and `SpecialView` (#4437) -- Better typings for `ModeSelector` (#4451) - -### UBERF-4970 - -- Fix component update (#4455) - -### UBERF-5083 - -- Fix project delete (#4446) - -## [0.6.185] - 2024-01-25 - -### Ezqms-538 - -- Allow command contributions to dev tool (#4440) - -## [0.6.184] - 2024-01-24 - -### 🚀 Features - -- *(tests)* Skipped Set parent issue test (#4427) - -### EZQMS-527 - -- Introduced `ActionButton` component (#4412) -- Consistent defaults for `ActionButton` (#4421) - -## [0.6.183] - 2024-01-23 - -### UBERF-5018 - -- Search improvements/Indexing fix (#4403) - -### UBERF-5024 - -- Add reactions control to inbox (#4414) - -### UBERF-5042 - -- Fix exception in list view (#4419) - -## [0.6.182] - 2024-01-22 - -### EZQMS-527 - -- Expose `EmployeeArrayEditor` from `contact-resources` (#4411) - -### UBERF-5012 - -- Remove extra key (avoid reloading after notifications deleting) (#4399) -- Use flat message view if doc has only one notification (#4410) - -### UBERF-5023 - -- Make flat view default (#4409) - -## [0.6.181a] - 2024-01-20 - -### 🚀 Features - -- *(test)* Updated flaky tests (#4393) - -### QFIX - -- Remove unused deps (#4394) - -## [0.6.181] - 2024-01-19 - -### EZQMS-457 - -- Added optional ModeSelector to SpecialView (#4381) - -### EZQMS-529 - -- Added support for primary/positive/negative kinds for CheckBox and RadioButton (#4384) -- Added support for `grow` and new `align` display options in `Table` (#4389) - -### UBERF-5000 - -- Handle derived tx for security context update (#4391) - -## [0.6.180] - 2024-01-18 - -### QFIX - -- Return ActivityMessageHeader, since it is used by github (#4377) - -### UBERF-4361 - -- Update inbox ui (#4376) - -## [0.6.179] - 2024-01-17 - -### 🚀 Features - -- *(tests)* Updated flaky tests (#4367) - -### EZQMS-470 - -- Add server side tiptap extension for node uuid (#4358) - -### UBER-1188 - -- Fix exception during login/logout (#4364) - -### UBERF-4957 - -- Fix status colors (#4369) - -## [0.6.178] - 2024-01-16 - -### 🚀 Features - -- *(tests)* Update Merge contacts test (#4339) - -### 🐛 Bug Fixes - -- *(tests)* Disabled failed tests (#4331) - -### QFIX - -- Change activity onhover (#4336) - -### UBER-1187 - -- AnyType field support (#4343) - -### UBERF-4360 - -- Rewrite chat (#4265) - -### UBERF-4868 - -- Disable draft saving for comment editing (#4332) - -### UBERF-4928 - -- Indexing fixes (#4357) - -## [0.6.177] - 2024-01-08 - -### UBER-1185 - -- Fix TT migration issues (#4320) - -### UBERF-4870 - -- Fixed attribute creation (#4325) - -## [0.6.175] - 2024-01-05 - -### 🚀 Features - -- *(tests)* Updated tests (#4296) - -## [0.6.174a] - 2023-12-29 - -### UBERF-4799 - -- Fix migration tasktype doubling (#4289) - -## [0.6.173] - 2023-12-28 - -### 🚀 Features - -- *(tests)* TESTS-15 done Create a new Company test (#4242) -- *(tests)* Updated flaky tests (#4244) -- *(tests)* TESTS-21 done Match to vacancy test (#4268) - -### EZQMS-430 - -- Update change document owner popup (#4278) - -### TESTS-16 - -- Feat(tests): done Edit a Company test (#4243) - -### TESTS-17 - -- Feat(tests): done Delete a Company test (#4252) - -### TESTS-20 - -- Feat(tests): done Archive a Vacancy test (#4254) - -### TESTS-23 - -- Feat(tests): done Export vacancies tests (#4253) - -### TESTS-51 - -- Feat(tests): done Delete a component test (#4234) - -### TSK-1668 - -- Side changes from Surveys (#4271) - -### UBER-1178 - -- Rework indexing fields (#4261) - -### UBERF-4716 - -- Activity info message (#4241) - -### UBERF-4729 - -- Fix front service (#4260) - -### UBERF-4738 - -- Fix attachments preview (#4259) - -### Ezqms-449 - -- Wrap initial collaborator content loading with try-catch (#4256) - -### Ezqms-452 - -- Fix issue presenter (#4263) - -## [0.6.172] - 2023-12-21 - -### 🚀 Features - -- *(tests)* TESTS-48 done Create duplicate issues test (#4225) -- *(tests)* TESTS-40 done Delete an issue test (#4233) - -### TESTS-50 - -- Feat(tests): done Edit a component test (#4232) - -### UBERF-4692 - -- Remove activity messages on doc remove (#4227) - -### UBERF-4707 - -- Fix activity messages updating (#4238) - -### QFix - -- Update DropdownLabels for showing dropdown icon (#4230) - -## [0.6.171] - 2023-12-20 - -### 🚀 Features - -- *(tests)* TESTS-54 done Edit a Milestone test (#4175) -- *(tests)* TESTS-55 done Delete a Milestone test (#4184) -- *(tests)* Updated tests (#4185) -- *(tests)* Updated sanity-ws dump and tests (#4202) -- *(tests)* TESTS-45 done Move to project test (#4203) -- *(tests)* Updated tests (#4209) -- *(tests)* Updated Edit a sub-issue test (#4210) -- *(tests)* Updated move to project tests (#4214) -- *(tests)* TESTS-81 done Comment stored test (#4216) -- *(tests)* Updated flaky tests (#4218) -- *(tests)* TESTS-106 (#4217) -- *(tests)* TESTS-41 done Delete a sub-issue test (#4223) -- *(tests)* Updated tests (#4224) - -### EZQMS-440 - -- Fix quality events (#4183) - -### TESTS-42 - -- Feat(tests): done Edit Sub-Issue test (#4191) - -### TESTS-44 - -- Feat(tests): the Set parent issue test (#4158) - -### TESTS-46 - -- Feat(tests): done New related issue test (#4192) - -### TESTS-59 - -- Feat(tests): done Create an Issue from template test (#4212) - -### TESTS-98 - -- Feat(tests): done Created by filter test (#4161) - -### TESTS-99 - -- Feat(tests): done Component filter test (#4162) - -### TSK-1668 - -- Survey plugin (#4174) - -### UBER-1179 - -- Fix comments saving (#4205) - -### UBER-1182 - -- Fix github task types support (#4215) -- Fix task type categories (#4222) - -### UBERF-4248 - -- Task type (#4042) - -### UBERF-4432 - -- Better notifications for Chunter (#4165) - -### UBERF-4610 - -- Fix checkbox behaviour (#4173) - -### UBERF-4620 - -- Fix show less triangle (#4182) - -### UBERF-4632 - -- Refactor activity classes structure (#4190) - -### UBERF-4649 - -- Fix query projection/cache issue (#4200) - -## [0.6.170] - 2023-12-07 - -### TESTS-26 - -- Feat(tests): done Archive Project tests (#4157) - -### TESTS-97 - -- Feat(tests): done the Priority filter test (#4156) - -### UBERF-4451 - -- Fixed how resolved default location is applied on initial routing (#4159) - -### UBERF-4526 - -- Elastic bulk error on re-indexing (#4155) - -## [0.6.169] - 2023-12-06 - -### 🚀 Features - -- *(tests)* Updated sanity-ws dump (#4149) -- *(tests)* TESTS-95 done Status filter test (#4150) - -### TESTS-25 - -- Feat(tests): done Edit project tests (#4138) - -### UBERF-4477 - -- Fixed positioning of `AddSavedView` popup (#4148) - -### UBERF-4560 - -- Filter out spaces that are archived for kanban (#4147) - -## [0.6.168] - 2023-12-05 - -### UBERF-4555 - -- Fix elastic backup/restore (#4144) - -## [0.6.167] - 2023-12-05 - -### 🚀 Features - -- *(tests)* Updated issues.spec.ts test (#4136) - -### TESTS-24 - -- Feat(tests): done Create project test (#4126) - -### UBER-1144 - -- Fixed estimation time representation used when creating issue and issue template (#4139) - -### UBERF-4470 - -- Make SetLabels action available on a single focused issue (#4140) - -## [0.6.166] - 2023-12-04 - -### EZQMS-394 - -- Update diff viewer lint button colors (#4115) - -### UBERF-4527 - -- Extra logging for client (#4133) - -## [0.6.165] - 2023-12-02 - -### 🚀 Features - -- *(tests)* TESTS-58 dont test delete template (#4125) - -### UBER-1086 - -- Fixed Elastic scroll contexts overflow issue, added tests for Elastic (#4124) - -### UBERF-4514 - -- Option for order of activity, pinned first in CommentPopup (#4122) - -## [0.6.164] - 2023-12-01 - -### 🚀 Features - -- *(tests)* Done TESTS-93 (#4110) - -### EZQMS-403 - -- Displatch value update from EditBox (#4114) - -### EZQMS-407 - -- Add Panel post utils slot (#4116) - -### UBER-1083 - -- Use hours and minutes to present less than a day durations (#4111) - -### UBERF-4493 - -- Mentions. When there is a lot of Applicants it's really difficult to mention employee (#4119) - -## [0.6.163] - 2023-11-29 - -### TESTS - -- Feat(tests): updated flaky tests (#4106) - -### UBER-1006 - -- Support Ref for Vacancies (#4104) - -### UBERF-4405 - -- Empty Vacancies' members (#4105) - -### UBERF-4478 - -- Set modifiedOn on server for collections tx (#4103) - -### UBERF-4486 - -- Fix mention and spotlight categories (#4108) - -## [0.6.162] - 2023-11-29 - -### 🚀 Features - -- *(tests)* Updated create-vacancy test (#4091) - -### EZQMS-398 - -- Fix StringDiffViewer (#4089) - -### TESTS-92 - -- Feat(tests): done Tracker filters tests - Modified date (#4094) - -### UBERF-4238 - -- Fix calendar utils (#4092) - -### UBERF-4428 - -- Add option to disable indexing for a class (#4090) - -### UBERF-4446 - -- Move search from text editor (#4093) - -## [0.6.161] - 2023-11-28 - -### EZQMS-398 - -- Update CollaborationDiffViewer (#4075) -- Add StringDiffViewer (#4085) - -### Qfix - -- Fix asterisk usage in forms (#4080) - -### TESTS-56 - -- Feat(tests): done Create a Template test (#4063) - -### TESTS-57 - -- Feat(tests): done Edit a Template test (#4079) - -### TESTS-88 - -- Feat(tests): done Add comment from several users test (#4054) - -### UBERF-4165 - -- Add search to actions popup (#4057) - -### UBERF-4413 - -- Kanban with huge data sets (#4076) - -### UBERF-4420 - -- Bump fieldStateId (#4071) - -## [0.6.160] - 2023-11-27 - -### EZQMS-393 - -- Add CollaboratorEditor prop to hide popups (#4051) - -### TESTS-89 - -- Feat(tests): working on First user change assignee, second user should see assigned issue test (#4046) - -## [0.6.159] - 2023-11-24 - -### UBER-945 - -- Pinning for comments (#4050) - -### UBERF-4384 - -- Update space from attributes (#4049) - -### UBERF-4388 - -- Few performance related fixes (#4053) - -## [0.6.158] - 2023-11-23 - -### EZQMS-368 - -- Fix exit text editor node uuid extension node (#4044) - -### TESTS-85 - -- Feat(tests): added issues.spec.ts test (#4025) - -### TESTS-87 - -- Feat(tests): done Issues status can be changed by another users test (#4036) - -### UBER-1167 - -- Revert All/Active/Backlog for issues (#4047) - -### UBER-636 - -- Fix from&to for NewMessage (#4043) - -### UBERF-4302 - -- Added footer to Calendar (#4033) - -### UBERF-4325 - -- Boost titles (#4023) - -## [0.6.157] - 2023-11-21 - -### EZQMS-342 - -- Add text editor configurable active highlighted node (#4019) - -### TESTS-71 - -- Feat(tests): updated allure parent suite (#4010) - -### UBER-1074 - -- Svelte 4 (#4014) - -### UBER-911 - -- Mentions without second input and tabs (#3798) - -### UBERF-4229 - -- Fix createAttachments runtime error (#3960) - -### UBERF-4324 - -- While indexing is still in progress we see undefined (#4017) - -### UBERF-4348 - -- Mentions. Fix render props types and component props types (#4022) - -## [0.6.156] - 2023-11-15 - -### 🚀 Features - -- *(tests)* Updated tracker.loading.spec.ts test (#3989) - -### QFix - -- Swapping actions between buttons (#3990) - -### UBER-1164 - -- Clickable panel on the desktop app (#3988) - -### UBERF-4216 - -- Fix query for cases with mixins (#3981) - -### UBERF-4287 - -- Fix Indexer peak memory usage (#3993) - -### UBERF-4289 - -- Allow to configure user agent (#3995) - -## [0.6.155a] - 2023-11-14 - -### 🚀 Features - -- *(ci)* Updated Deploy report to Github Pages flow step (#3984) - -### UBERF-4267 - -- Fix mergeQuery, provide a test case for it (#3985) - -## [0.6.155] - 2023-11-14 - -### 🚀 Features - -- *(tests)* Added allure report for tests (#3944) - -### UBERF-4161 - -- Few inbox fixes (#3976) - -### UBERF-4205 - -- Updated Panel header layout, custom aside (#3974) - -### UBERF-4263 - -- Restore Back and Close button, fixed selectedAside (#3983) - -## [0.6.154a] - 2023-11-10 - -### UBER-942 - -- Few skill fixes (#3971) - -## [0.6.154] - 2023-11-10 - -### EZQMS-360 - -- Platform changes for document comments highlight sync (#3965) - -### UBERF-4136 - -- Fix global actions (#3961) - -### UBERF-4195 - -- Fix query after applying viewOptions (#3942) - -## [0.6.153] - 2023-11-08 - -### UBERF-4136 - -- New issues from command palette (#3956) - -## [0.6.152] - 2023-11-07 - -### UBER-1127 - -- Updated status bar layout (#3940) - -### UBER-1141 - -- Fixed Comments popup layout (#3946) - -### UBER-1159 - -- Fixed horizontal scrolling in Scroller (#3945) - -### UBER-1161 - -- Remove async to correctly handle query change (#3951) - -### UBER-942 - -- Rework skill optimization (#3941) - -## [0.6.151] - 2023-11-03 - -### EZQMS-350 - -- Fix reactions in threads (#3935) - -### UBER-1143 - -- Additional skill parsing, increase timeout for filter (#3933) - -### UBER-1157 - -- Some dependant fixes (#3936) - -## [0.6.150] - 2023-11-01 - -### 🚀 Features - -- *(tests)* TESTS-39 done edit issue test (#3918) - -### QMS - -- Fix collaborator editor loading (#3920) - -### UBER-1116 - -- Saving sidebar changes (#3919) - -### UBER-1137 - -- Prevent changes of spaces while kanban drag-and-drop (#3928) - -### UBER-1143 - -- Setting for skill import, redirect to talents from skillsView (#3925) - -### UBER-1149 - -- Events in team planing fixes (#3922) - -### UBERF-18 - -- Add reactions for comments (#3899) - -### UBERF-4132 - -- Fix unexpected delete of documents in query (#3921) - -### Ezqms-334 - -- More configurations for radio button and radio group (#3917) - -## [0.6.149] - 2023-10-30 - -### 🚀 Features - -- *(tests)* TESTS-43 added the Create an issue with all params test (#3905) - -### 🐛 Bug Fixes - -- *(tests)* Updated the today selector for calendar (#3908) -- *(tests)* Updated the today selector for issues page (#3911) - -### EZQMS-327 - -- Move inline comments to platform popups (#3909) - -### EZQMS-333 - -- Customizable RadioButton label (#3900) - -### TESTS-18 - -- Feat(tests): added edit vacancy test (#3901) - -### UBER-1101 - -- Updated Separator (Float mode), fixed Scroller visibility (#3902) - -### UBER-1146 - -- Fix scrolling in emojis popup (#3912) - -## [0.6.148] - 2023-10-26 - -### UBER-1027 - -- Don't update issue space in kanban view (#3895) - -### UBER-634 - -- Focus on SelectPopup (#3897) - -### UBER-898 - -- Assignee rules and general rules fix (#3894) - -## [0.6.147] - 2023-10-26 - -### 🚀 Features - -- *(tests)* Added Change & Save all States test (#3863) -- *(tests)* TESTS-10 added the Delete the Talent test (#3883) - -### EZQMS-306 - -- Add extensions for chunter message version (#3882) - -### TESTS-22 - -- Feat(tests): done test Merge Contacts (#3891) - -### TESTS-9 - -- Feat(tests): added edit Talent test (#3871) - -### UBER-1088 - -- ListItem fix. (#3872) - -### UBER-1097 - -- Remove second status editor amd fix done state selection in new Applicant popup (#3869) - -### UBER-1099,-1100 - -- Milestone fixes. (#3873) - -### UBER-1106,-1108 - -- Update navigator and button layout (#3870) - -### UBER-1128 - -- Fix to many requests from query (#3888) - -### UBER-1129 - -- Fix list support attached documents properly (#3889) - -### UBER-937 - -- Extensibility changes (#3874) - -### UBER-942 - -- Fix-skills script (#3876) - -### Ezqms-331 - -- Fix disabled button icon style (#3881) - -## [0.6.146] - 2023-10-23 - -### 🚀 Features - -- *(tests)* Added delete application test (#3859) - -## [0.6.145] - 2023-10-19 - -### 🚀 Features - -- *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts (#3847) -- *(recruiting)* Working on update recruit tests and adding Edit Application test (#3851) - -### EZQMS-278 - -- Update comments popups (#3849) -- Adjust view inline comments UI (#3855) - -### EZQMS-291 - -- Fix documents node selections issues (#3845) - -### UBER-1085 - -- Improve upgrade tool (#3852) - -### UBER-1091 - -- Fix attach button (#3854) - -### UBER-921 - -- Improve full text search (#3848) - -### UBERF-31 - -- Fix comment edit (#3853) - -## [0.6.144] - 2023-10-16 - -### TextEditor - -- Refactor attachments (#3833) - -### UBER-1052 - -- Fix remainings (#3844) - -## [0.6.142] - 2023-10-13 - -### UBER-1039 - -- Codeblock style fixes. (#3829) - -### UBERF-3997 - -- Fix Tab navigation in text editors (#3832) - -## [0.6.141] - 2023-10-11 - -### UBER-1038 - -- Fix flicking during issue creation (#3826) - -### UBER-953 - -- Fix related issues (#3821) - -## [0.6.140] - 2023-10-10 - -### QMS - -- Update inline comments extensions (#3814) - -### UBER-984 - -- UI fixes, Panel auto resize (#3818) - -## [0.6.139a] - 2023-10-09 - -### UBER-955 - -- Added Separator component (#3804) - -## [0.6.138] - 2023-10-06 - -### QFIX - -- Child info could be empty (#3785) - -### UBER-987 - -- Fix emojis in the middle of something (URLs) (#3790) - -## [0.6.137] - 2023-10-03 - -### EZQMS-279 - -- Remove .ProseMirror global css (#3772) - -### UBER-974 - -- Fix saved views and mode in filters (#3780) - -### UBER-977 - -- A remaining time (#3783) - -## [0.6.136] - 2023-10-02 - -### UBER-963 - -- Related issues (#3773) - -### UBERF-17 - -- Missing smiles auto-conversion in rich texts :) (#3771) - -## [0.6.135] - 2023-10-01 - -### EZQMS-266 - -- Commenting on document (#3759) - -### UBER-920 - -- Fixed drag and drop in Calendar (#3767) - -### UBER-939 - -- Speedup table/kanban (#3764) - -## [0.6.134] - 2023-09-29 - -### Calendar - -- Resize and move event (#3750) - -### UBER-845 - -- Add NotificationPresenter to send rich text notifications (#3729) - -### UBER-924 - -- Fix file upload progress (#3757) - -## [0.6.133] - 2023-09-27 - -### UBER-902 - -- Fix transactions (#3748) - -### UBER-914 - -- Map to mixin after findAll (#3745) - -### UBER-916 - -- Navigation from issue to mentioned issue break description (#3746) - -### UBER-923 - -- Fix milestone category selector (#3747) - -## [0.6.132] - 2023-09-26 - -### QFix - -- Migration (#3734) - -### UBER-888 - -- Fixed dragging of the WorkItem (#3735) - -## [0.6.131] - 2023-09-22 - -### UBER-486 - -- Updated people avatars. (#3720) -- Replaced avatar colors (#3724) - -### UBER-799 - -- Allow extensions to tracker for github (#3727) - -### UBER-888 - -- Fixed dragging of the WorkItem (#3730) - -## [0.6.130] - 2023-09-20 - -### UBER-881 - -- Fix labels list view numbers (#3721) - -## [0.6.129] - 2023-09-20 - -### UBER-885 - -- Value filter fix (#3719) - -## [0.6.128] - 2023-09-19 - -### UBER-885 - -- Fix Object filter (#3716) - -## [0.6.127] - 2023-09-19 - -### UBER-882 - -- Fixed popup (#3713) - -## [0.6.126] - 2023-09-18 - -### UBER-784 - -- Updated WorkItemPresenter (#3710) - -### UBER-796 - -- Fixed AttachmentActions (#3709) - -### UBER-834 - -- Improve list speed (#3692) - -### UBER-839 - -- Request the category if it's not in lookup (#3679) - -### UBER-841 - -- Allowed to position work item to half hour (#3707) - -### UBER-851 - -- Fix titles in ListView (#3678) - -### UBER-852 - -- Owner should only see a list of spaces (#3677) - -### UBER-854 - -- More proper upgrade notification (#3694) - -### UBER-863 - -- Fix employee filter (#3682) - -### UBER-869 - -- Fixed mentions in Activity. Fixed messages in Inbox. (#3695) - -### UBER-871 - -- Allow to hide/show archived and done in vacancies list (#3701) - -### UBER-872 - -- StyleTextEditor: No update when change text in another text (#3698) - -### UBERF-81 - -- Replacing the label (#3708) - -## [0.6.125] - 2023-09-11 - -### UBER-828 - -- Fix slow value filter (#3676) - -## [0.6.124] - 2023-09-08 - -### 🐛 Bug Fixes - -- Trim cookie string before extracting values (#3652) - -### Activity - -- Remove inline from presenters. DoneStatesPopup fix. (#3664) - -### UBER-564 - -- Add sound notification and settings (#3655) - -### UBER-674 - -- The calendar starts from the current time. Calendar fixes. (#3671) - -### UBER-795 - -- Updated layout of pop-ups. There is always a Back in the Panel. (#3644) -- Replacing the Panel with a Dialog, fix circle button in Kanban. (#3659) - -### UBER-807 - -- Multiple github repositories fixes (#3646) -- Allow to customize create issue dialog (#3669) - -### UBER-832 - -- Fixed DatePresenter (#3653) - -### UBER-838 - -- Signout button for inactive accounts (#3662) - -### UBERF-55 - -- Change editor toolbar behavior and update icons (#3645) - -### UBERF-60 - -- Update styles and presenters. (#3651) -- Updated Rich editor and Activity styles. (#3661) -- Updated inline presenters. (#3663) - -## [0.6.123] - 2023-08-30 - -### UBER-675 - -- Updated layout of Radio and Circle button (#3638) - -### UBER-816 - -- Fix mentions (#3641) - -## [0.6.122] - 2023-08-25 - -### EZQMS-106 - -- Add elastic search by refs support (#3629) - -### UBER-675 - -- Updated pop-ups and components layout (#3631) - -### UBER-770 - -- Add custom enum and ref attributes for grouping (#3622) - -### UBER-797 - -- Fix popup menu runtime error (#3627) - -### UBER-802 - -- Support underline formatting (#3636) - -### UBER-803 - -- Fix slow filter (#3634) - -### UBER-805 - -- Remove location from grouping (#3635) - -## [0.6.121] - 2023-08-24 - -### UBER-667 - -- UI fixes, displaying All day, time editor. (#3619) - -### UBER-762 - -- Fix editor popup menu behavior (#3617) - -### UBER-772 - -- Require having employee mixin to allow Staff mixin (#3618) - -## [0.6.120a] - 2023-08-22 - -### 🐛 Bug Fixes - -- Telegram window not opening (#3615) - -## [0.6.120] - 2023-08-22 - -### UBER-773 - -- Fix List search anv Vacancy view (#3614) - -## [0.6.119] - 2023-08-19 - -### UBER-600 - -- Fix label, fix colours for boolean presenter (#3608) - -### UBER-726 - -- Ask to update if manual update is required (#3602) - -### UBER-749 - -- Fix no label for unassigned (#3603) - -### UBER-771 - -- Use cookie instead of token for images (#3607) - -## [0.6.118] - 2023-08-17 - -### Team - -- Planning UI fixes (#3599) - -### UBER-479 - -- Add List view for Vacancies (#3595) - -### UBER-500 - -- Confusing Show More button in table (#3590) - -### UBER-743 - -- Provide person instead of id as prop (#3592) - -### UBER-747 - -- Fix readonly field (#3593) - -### UBER-759 - -- Prevent mutations of original object (#3596) - -## [0.6.117] - 2023-08-14 - -### EZQMS-236 - -- QE templates >> Have the ability to make a section mandatory (#3581) - -## [0.6.116] - 2023-08-10 - -### EZQMS-152 - -- Some object selector dropdown items are cut (#3558) - -### Fix - -- Grammatical and stylistic errors (#3552) - -### UBER-720 - -- Rework list view to multiple requests (#3578) - -### Ezqms-245 - -- Allow configurable languages per deployments (#3579) - -## [0.6.115] - 2023-08-08 - -### UBER-653 - -- Open template folder that is enabled (#3573) - -### UBER-710 - -- Fix preference notifications (#3574) - -## [0.6.114] - 2023-08-07 - -### UBER-619 - -- StatusPopup for creating/renaming (#3536) - -### UBER-665 - -- Rename EmployeeAccount->PersonAccount (#3550) - -## [0.6.113] - 2023-08-03 - -### UBER-532 - -- Copy issue URL works wrong (#3529) - -### UBER-628 - -- Allow reordering when sort is set to manual in the same group (#3553) - -### UBER-648 - -- Convert project identifier to upper case (#3546) - -### UBER-677 - -- Use State for Leads' status (like applicants do) (#3554) - -## [0.6.112b] - 2023-08-01 - -### UBER-646 - -- Clear the class when view is changed to prevent using old one (#3541) - -### Ezqms-241 - -- Account for parent classes configurations in list view (#3537) - -## [0.6.112a] - 2023-07-31 - -### UBER-641 - -- Fixed DatePopup. (#3535) - -## [0.6.112] - 2023-07-29 - -### 🐛 Bug Fixes - -- Do not shrink expand/collapse icon in tree (#3517) - -### ATS-13 - -- Support multiple docs for copying (#3526) -- Copy ID action (#3533) - -### Calendar - -- Fixed the display of the past days (events) (#3527) - -### Qfix - -- Translate ezqms email confirmation letter to english (#3532) - -### TSK-1574 - -- Accurate time reports count (#3509) - -### UBER-427 - -- Disable third-nested filters (#3502) - -### UBER-550 - -- Clean milestone when moving to another project (#3498) - -### UBER-558 - -- Filter out overrides for action popup (#3499) - -### UBER-575 - -- Allow per class list view (#3524) - -### UBER-593 - -- Hyperlink editor (#3506) - -### UBER-601 - -- Fixed accentuation of ObjectPresenter (#3507) - -### UBER-609 - -- Fix inbox notification/view for telegram and gmail messages (#3518) - -### UBER-614 - -- Fix submenu popups on scrolling (#3530) - -### UBER-621 - -- Display field validation rule hint (#3521) - -### Uber-642 - -- Use system theme as the default value for application theme (#3534) - -## [0.6.111] - 2023-07-13 - -### ATS-9 - -- Update states once template updates (#3496) - -### TSK-336 - -- Mobile UI adaptation (#3492) - -### UBER-524 - -- Cleaned CSS, UI fixes. (#3491) - -## [0.6.110] - 2023-07-08 - -### UBER-142 - -- Update buttons. Cleaning CSS. (#3482) - -### UBER-298 - -- Add readonly users option to the UserBoxItems component (#3481) - -### UBER-413 - -- Allow extensible navigator model (#3477) - -### UBER-428 - -- Displaying tooltips with a delay (#3442) - -### UBER-462 - -- Prevent creating existing enum value and disable the button in that case (#3465) - -### UBER-472 - -- Don't update when it's not needed (#3460) - -### UBER-473 - -- Show icon for department (#3472) - -### UBER-477 - -- Uberflow dependencies (#3440) - -### UBER-498 - -- Replace component shortcut (#3441) - -### UBER-504 - -- Correct display of optional presenters (#3452) -- Fix presenters on ListItem. Add DeviceSizes. (#3463) - -### UBER-505 - -- Fix resolve errors in console (#3449) - -### UBER-509 - -- Do not update list of unread right after reading (#3461) - -### UBER-513 - -- Fix desktop app navigation (#3459) - -### UBER-520 - -- Fix images drag & drop (#3453) - -### UBER-525 - -- Fixed popup logic placement for top (#3448) - -### UBER-528 - -- Fix desktop navigation (#3450) - -### UBER-536 - -- Fix test stability (#3466) - -### UBER-537 - -- Review support in inbox (#3471) - -### UBER-538 - -- Update ListView layout. Subissues, related issues. (#3467) -- Fixed ListView and KanbanView. (#3475) - -### UBER-554 - -- Show messages with error and allow resending (#3488) - -### UBER-560 - -- Filter out current transaction and get mixin (#3480) - -### UBER-572 - -- Fixed overflow for emoji. (#3485) - -### UBER-573,-574 - -- Updated button styles, fixed ListView (#3484) - -## [0.6.109] - 2023-06-16 - -### UBER-424 - -- Description not saving fix (#3434) - -### UBER-450 - -- Update MentionList. (#3431) - -### UBER-480 - -- Fix ValueFilter for space-like objects (#3428) - -### UBER-482 - -- Fix 'backspace' in inbox for some objects (#3437) - -### UBER-485 - -- Implement icons. (#3433) - -### UBER-488 - -- Update selected priority on issue switch (#3436) - -### UBER-496 - -- Fix few issues (#3439) - -## [0.6.108] - 2023-06-12 - -### UBER-417 - -- Replace AddSavedView with select popup, allow renaming (#3423) - -### UBER-430 - -- Remove old migrations (#3398) - -### UBER-471 - -- Fixed maintenance warining. (#3424) - -### UBER-476 - -- Duplicate comment fix (#3425) - -### UBER-478 - -- Fix issue presenter concurrency (#3426) - -## [0.6.107] - 2023-06-09 - -### UBER-458 - -- Fix submenu (#3416) - -### UBER-459 - -- Remove whereSelected line in dropdowns. (#3417) - -### UBER-460 - -- Fix admin view (#3420) - -## [0.6.106] - 2023-06-08 - -### UBER-158 - -- New popup dialog (#3409) - -### UBER-425 - -- Tooltup/popup fixes (#3404) - -### UBER-433 - -- Allow tabs within bullets. (#3399) - -### UBER-438 - -- Use tracker as default for new users/workspaces (#3403) - -### UBER-439 - -- Fix plurals in russian (#3412) - -### UBER-440 - -- Fix link error message (#3406) - -### UBER-441,-443 - -- Disable fade in Scroller, change color for link and bg for Diff (#3405) - -### UBER-442,-452 - -- Fixed login/signup layout, link, mention and backtick. (#3408) - -### UBER-453 - -- Update favicons. (#3414) - -## [0.6.104] - 2023-06-07 - -### UBER-421 - -- Fixed attachment/comment icons (#3392) - -## [0.6.103] - 2023-06-07 - -### UBER-395 - -- Allow to drop images into description (#3382) - -### UBER-418 - -- Fix object popup a bit (#3377) - -## [0.6.102] - 2023-06-06 - -### UBER-252 - -- Mode int URL in MyLeads/MyApplications (#3347) - -### UBER-371 - -- Retina images for login page (#3351) - -### UBER-373 - -- Fix blurry avatars and other images (#3353) - -### UBER-377 - -- Fix login (#3358) - -### UBER-380 - -- Change icon (#3364) - -### UBER-383 - -- Fix null/undefined for URI and numbers (#3359) - -### UBER-394 - -- Update tiptap plugins (#3368) - -### UBER-397 - -- Fix panel activity (#3370) - -## [0.6.101] - 2023-06-05 - -### UBER-263 - -- Use person after creation (#3304) - -### UBER-276 - -- New messages and Has messages option for filter (#3326) - -### UBER-318 - -- Allow to configure default language (#3342) - -### UBER-358 - -- Fix icons (#3338) - -### UBER-364 - -- Adapt updated UI (#3348) - -### UBER-369 - -- Do not show number of comments if 0 (#3349) - -## [0.6.100] - 2023-06-02 - -### UBER-137 - -- Fix application search (#3309) - -### UBER-170 - -- Navigation for contacts (#3323) - -### UBER-172 - -- Fill contact template fields if only one selected (#3299) - -### UBER-304 - -- Fixed Navigator (#3312) - -### UBER-307,-308,-310,-311,-312 - -- Fixed activity in Inbox (#3298) - -### UBER-327 - -- Sub issues/Related issues allow to create from category header (#3317) - -### UBER-328 - -- Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. (#3314) - -### UBER-331 - -- Fix live query update (#3305) - -### UBER-338 - -- Added AppSwitcher popup. (#3329) - -### UBER-345 - -- Fixed Inbox. (#3325) - -## [0.6.99] - 2023-05-30 - -### UBER-199,-217,-232 - -- Fixed header in ListView, EditMember, ViewOptions (#3273) - -### UBER-267 - -- Fix created selection (#3269) - -### UBER-270 - -- Enable color more wide (#3279) - -### UBER-271 - -- Fix filters (#3293) - -### UBER-274,-287,-288,-294 - -- Fixed tooltip, ActionsPopup, ListHeader, activity. (#3282) - -### UBER-278 - -- Add Yes-No to popup, refactor (#3289) - -### UBER-279 - -- Total qfix (#3281) - -### UBER-289 - -- Prevent empty changes to go into transactions. (#3277) - -### UBER-295 - -- Fix blur'y popups (#3278) - -### UBER-296 - -- Fix create application color selector (#3280) - -### UBER-317 - -- Fix issue (#3285) - -### UBER-319 - -- Fix vacancy editing (#3290) - -### UBER-320 - -- Fix companies filter (#3292) - -## [0.6.98a] - 2023-05-28 - -### UBER-268 - -- List views (#3270) - -### UBER-269 - -- Fix mini toggle (#3271) - -## [0.6.98] - 2023-05-27 - -### UBER-187 - -- Inline attachments (#3264) - -### UBER-218 - -- Fix createOn -> createdOn (#3266) - -### UBER-238 - -- Colors should not use alpha channel (#3255) - -### UBER-265 - -- Updated application icons (#3263) - -### UBER-266 - -- Fix mongo exceptions (#3267) - -### UBER-267 - -- Fix Users popup (#3268) - -### UBER-53 - -- My Leads view (#3259) - -### UBER-64,-231,-229 - -- Updated CreateProject and SelectAvatar layouts, fixed bugs (#3253) - -## [0.6.97] - 2023-05-24 - -### TSK-1523 - -- Fixed IssuePreview (#3231) - -### TSK-1525 - -- Fixed VacancyPresenter (#3237) - -### UBER-134 - -- Back references (#3233) - -### UBER-135/TSK-1430 - -- Allow changing image in PDFViewer through arrow-keys (keyboard) (#3186) - -### UBER-148 - -- My Applications in recruit (#3235) - -### UBER-159 - -- Popup dialog for deleting with message if not enough permissions (#3224) - -### UBER-182 - -- Fix status object filter (#3250) - -### UBER-194,-166,-185 - -- Add application icons, fixed Inbox list and mobile layout (#3229) - -### UBER-205 - -- More info to Kanban card (due date, assignee, Lead number) (#3251) - -### UBER-206 - -- Redefined color palettes (#3243) - -### UBER-219 - -- Updated CreateIssue layout (#3244) - -### UBER-47 - -- Attributes for base class (ex. contacts in lead's customers) (#3241) - -### UBER-49 - -- Custom fields in CreateLead (#3249) - -### UBER-50 - -- Remove funnel browser (#3236) - -## [0.6.96] - 2023-05-21 - -### TSK-1257 - -- Split owner name to first and last name fields (#3156) - -### TSK-1402 - -- Fix default assignee when creating issues (#3159) - -### TSK-1469,-1470 - -- Added SelectAvatars, UserBoxItems components (#3176) - -### TSK-1489 - -- Fixed Components, Milestones, IssueTemplates layout (#3220) - -### TSK-1500 - -- Enable compression by default (#3177) - -### TSK-760 - -- Fix scroll issue for mac (#3173) - -### UBER-122 - -- Fix invalid time report shown (#3191) - -### UBER-130 - -- Fix expand/collapse on multiple levels (#3198) - -### UBER-136 - -- Fix Exception with custom attributes (#3195) - -### UBER-144 - -- Fixed showHeader (#3214) - -### UBER-174 - -- Introduce createOn every there (#3222) - -### UBER-177 - -- Fixed Filter pop-ups (#3225) - -### UBER-48 - -- Custom fields for organization in leads (#3203) - -### UBER-54 - -- Attempt to Expand/collapse issue fix (#3183) - -### UBER-56 - -- Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application (#3196) - -### UBER-62 - -- Maintenance warnings (#3210) - -### UBER-76 - -- Trigger search after timeout (#3193) - -### UBER-81 - -- Fix move project (#3182) - -### UBER-83 - -- Add BrowserStack notice into readme (#3178) - -### UBER-87 - -- Add new icons (#3188) - -### USER-145 - -- Fixed FixedColumn (#3216) - -### USER-79 - -- Fixed the sidebar in the Panel. Update IssuePreview layout. (#3201) - -## [0.6.95] - 2023-05-12 - -### TSK-1324 - -- Update popups and colors (#3152) - -### TSK-1387 - -- Count cancelled sub-issues as completed (#3158) - -### TSK-1418 - -- Make issue notification width smaller (#3160) - -### TSK-1429 - -- Rework dueDate to ignore overdue in applicants, kanban and right panel (#3169) - -### TSK-1432 - -- Fix popup closing (#3170) - -### TSK-1436 - -- Change deleting spaces to removing, add action to move all non-valid requests to correct spaces (#3149) - -### TSK-1451 - -- Fix focus issues + jump workaround (#3167) - -### TSK-1452 - -- Revert sprint statistics display (#3142) - -### TSK-1454 - -- Added varieties to the TabList (#3161) - -### TSK-1459 - -- Update Panel layout (#3163) - -### TSK-742 - -- Use partial binary protocol with ability on/off (#3153) - -## [0.6.94] - 2023-05-04 - -### TSK-1098 - -- My issues list (#3137) - -### TSK-1236 - -- Trigger to remove members when deleting department. Fix for already broken departments (#3120) - -### TSK-1257 - -- Add sorting by create time (#3138) - -### TSK-1409 - -- Bump. client resources 0.6.16 (#3134) - -### TSK-831 - -- Edit issue fixes (#3140) - -## [0.6.93] - 2023-05-04 - -### TSK-1251 - -- My issues action. Hotkeys to lower case (#3122) - -### TSK-1337 - -- Ui fixes. (#3133) - -### TSK-1394,-1407,-1412,-1417,-1422,-1423 - -- Minor fixes. Fixed Scroller. (#3124) - -### TSK-1400 - -- Show 0 in total (time spend reports) (#3127) - -### TSK-1414 - -- Fix exceptions in Kanban (#3119) -- Fix exceptions in Kanban (#3119) (#3123) - -### TSK-1419 - -- Show greyed requests on holidays and weekends (#3121) - -### TSK-1431,-1440 - -- Update AttachmentPresenter. Replace colors, minor fixes. (#3131) - -## [0.6.92] - 2023-05-02 - -### TSK-1166 - -- Sprint editor action (#3110) - -### TSK-1206 - -- Drag-drop statuses between categories (#3112) - -### TSK-1324 - -- Update kanban layout (#3118) - -### TSK-1339 - -- Resize tooltip for dueDate and ignore overdue in done/cancelled (#3113) - -### TSK-1393 - -- Fix status findAll requests extra data (#3105) - -### TSK-1405 - -- Fix hover selection (#3109) - -### TSK-1406 - -- Correct Configuration defaults (#3107) - -### TSK-1410,-1408,-1392,-1389,-1386,-1377 - -- Minor fixes. Update IssueNotification layout. (#3117) - -## [0.6.91a] - 2023-04-27 - -### TSK-1339 - -- Show dueDate for cancelled/done issues (#3091) - -### TSK-1378 - -- Qfix for exception (#3097) - -### TSK-1381 - -- Show preview and Table mouse hover selection (#3098) - -## [0.6.91] - 2023-04-27 - -### TSK-1009 - -- Configurable platform (#3055) - -### TSK-1066 - -- Don't allow creating requests if already exists for set days (#3053) - -### TSK-1068 - -- Update department for Staff via side panel (#3073) - -### TSK-1098 - -- All issues related fixes (#3079) - -### TSK-1113 - -- Add issueUrl to notification for sub-issues (#3057) - -### TSK-1114 - -- Fix default issue status (#3044) - -### TSK-1248 - -- Revert changes and add check for unset field (#3054) - -### TSK-1311 - -- Add editors for String and Number (#3056) - -### TSK-1312 - -- Refit tooltip after loading components inside it (#3083) - -### TSK-1314 - -- Fix slow Kanban open (#3052) - -### TSK-1323 - -- Fix colors for list (#3069) - -### TSK-1342 - -- Reduce number of transfer data and improve Kanban initial render speed (#3078) - -### TSK-1353 - -- Update ListView headers. Replaced colors in settings. (#3086) - -### TSK-1375 - -- Sub issue selector icons (#3089) - -### TSK-571 - -- Fix keyboard list navigation (#3085) - -## [0.6.90] - 2023-04-23 - -### TSK-1243 - -- Add scroller to project's components list (#3045) - -## [0.6.89] - 2023-04-21 - -### TSK-1047 - -- Fix showing requests after moving staff to another department (#3029) - -### TSK-1064 - -- Fix export csv in hr (#3032) - -### TSK-1237 - -- Improve full text indexer (#3025) - -### TSK-1274 - -- Fix Kanban live updates (#3024) - -## [0.6.88] - 2023-04-19 - -### TSK-1248 - -- Sort null last for dates (#3021) - -### TSK-1252 - -- Dispatch update event for attribute bar (#3017) - -### TSK-964 - -- Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes (#3022) - -## [0.6.87] - 2023-04-19 - -### TSK-1158 - -- Remove component from sprint. Remove logic for changing component on sprint change (#2998) - -### TSK-1248 - -- Fix dueDate sorting order (#3013) - -### TSK-808 - -- Ignore initial validation when autofilled for login form (#3012) - -## [0.6.86] - 2023-04-17 - -### TSK-1213 - -- Allow to clean archived vacancies with content (#2999) - -### TSK-1216 - -- Fix bitrix import (#3005) - -### TSK-753 - -- Open user's department in schedule by default (#3001) - -## [0.6.85] - 2023-04-17 - -### TSK-1032 - -- Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only (#2964) - -### TSK-1201 - -- Fix bitrix migration and too to clean removed transactions (#2995) - -## [0.6.84] - 2023-04-16 - -### TSK-1200 - -- Fix Applications with wrong state (#2992) - -## [0.6.83] - 2023-04-14 - -### TSK-1062 - -- Work on Employee and EmployeeAccount migration (#2986) - -### TSK-1189 - -- Fix showing all available categories (#2987) - -### TSK-1194 - -- Fix filter (#2990) - -## [0.6.82] - 2023-04-13 - -### TSK-1152 - -- Fix connections mess (#2969) - -### TSK-1153 - -- Fix server model load exceptions (#2967) - -### TSK-1154 - -- Statuses table support (#2974) - -### TSK-1170 - -- Fix transactions retrieval to speedup of workspace open (#2976) - -## [0.6.81] - 2023-04-12 - -### TSK-1012 - -- Change text names for Organizations to Companies (#2963) - -### TSK-1086 - -- Fix merge (#2961) - -### TSK-1141 - -- Fix bitrix fields (#2956) - -### TSK-1146 - -- Support initial content text for collaborator doc (#2960) - -### TSK-1148 - -- Mixin button for Vacancy and NPE fixes (#2965) - -### TSK-1150 - -- Rollback svelte (#2966) - -## [0.6.80a] - 2023-04-12 - -### TSK-1089 - -- Proper Recruit Archive (#2952) - -## [0.6.80] - 2023-04-11 - -### TSK-1040 - -- Support editable for DraggableList (#2932) - -### TSK-1072 - -- Fix Created by (#2948) - -### TSK-1092 - -- Fix reconnect for Safari (#2929) - -### TSK-1093 - -- Fix Application doneState showing (#2927) - -### TSK-1106 - -- Update to latest packages (#2943) - -## [0.6.79] - 2023-04-07 - -### TSK-1007 - -- Add comments in talent editor (#2922) - -### TSK-1013 - -- Add position field to Employee (#2874) - -### TSK-1015 - -- Bitrix Create Vacancy/Application (#2913) - -### TSK-1038 - -- Fix comments presenter (#2896) - -### TSK-1062 - -- Fix merge properly (#2919) - -### TSK-1065 - -- Check model version (#2916) - -### TSK-1088 - -- Show Kanban counters (#2924) - -### TSK-943 - -- General Status support (#2842) - -### TSK-990 - -- Remove Back button in settings (#2875) - -### Tsk-1040 - -- Support draft for DraggableList (#2898) - -## [0.6.78] - 2023-04-03 - -### TSK-1010 - -- Change color for New Customer button (#2870) - -### TSK-950 - -- Remove value from filter if the object doesn't exist (#2852) - -## [0.6.77] - 2023-03-31 - -### TSK-839 - -- Fix localization strings (#2833) - -### TSK-903 - -- Do not allow saving if set to private with no members (#2854) - -### TSK-916 - -- Fix attribute errors in console (#2839) - -### TSK-942 - -- Add hours to current time (#2837) - -### TSK-955 - -- Fix status display (#2840) - -### TSK-960 - -- Move for issues (#2846) - -### TSK-963 - -- Show avatar on comments (#2857) - -### TSK-976 - -- Hide preview action (#2847) - -### TSK-983 - -- Fix Cache control for index pages (#2850) - -### TSK-987 - -- Show filter with 0 value (#2855) - -### TSK-988 - -- Sticky first column in hr calendar (#2867) - -### TSK-989 - -- Transparent requests (PTO, extra, etc.) when not in department or it's descendants (#2861) - -### TSK-992 - -- Fix column name in Companies (#2860) - -## [0.6.76a] - 2023-03-24 - -### TSK-897 - -- Allow team-leads and managers to edit descendant departments (#2825) - -### TSK-941 - -- Fix incorrect rewriting space after selecting in SpaceSelect (#2827) - -## [0.6.76] - 2023-03-24 - -### TSK-745 - -- Do not allow changing previous months events (Requests and public holidays) (#2796) - -### TSK-811 - -- Fix for undefined when saving platform last location (#2790) - -### TSK-813 - -- Fix input width and remove divider for time report popup (#2794) - -### TSK-825 - -- Client proper reconnection (#2797) - -### TSK-831 - -- Edit Title and Description inline (#2788) - -### TSK-858 - -- Send picture without text as comment for issues (#2793) - -### TSK-885 - -- Fix invalid deps (#2777) - -### TSK-912 - -- Notifications on removing the request (#2806) - -### TSK-915 - -- Tracker status (#2802) - -### TSK-920 - -- Rename CreatedBy field (#2807) - -### TSK-924 - -- Follow proper order for Tracker Kanban (#2815) - -### TSK-934 - -- Redirect to last location on opening main page (#2817) - -### TSK-937 - -- Fix tooltip for employee (#2822) - -## [0.6.75b] - 2023-03-21 - -### TSK-894 - -- Fix template creation and apply (#2785) - -### TSK-895 - -- Allow to mention only active employees (#2786) - -## [0.6.75a] - 2023-03-21 - -### TSK-877 - -- Show only Candidates for Application creation dialog (#2784) - -### TSK-889 - -- Fix hang and displayName search for Employee (#2783) - -## [0.6.75] - 2023-03-21 - -### TSK-811 - -- Show last workspace location after switching/opening workspace (#2776) - -### TSK-813 - -- Remove WorkDayLength and change time reports to hours (#2763) - -### TSK-859 - -- Replacing icons. TSK-883: Pop-up for viewing images. (#2782) - -### TSK-871 - -- Fix overtime display (#2769) - -### TSK-879 - -- Fix empty assignee selection (#2774) - -### TSK-890 - -- Fix component icons (#2778) - -### TSK-891 - -- Fix UI Tests instability (#2780) +* TSK-811: Show last workspace location after switching/opening workspace (#2776) +* TSK-813: Remove WorkDayLength and change time reports to hours (#2763) +* TSK-859: Replacing icons. TSK-883: Pop-up for viewing images. (#2782) +* TSK-871: Fix overtime display (#2769) +* TSK-879: Fix empty assignee selection (#2774) +* TSK-890: Fix component icons (#2778) +* TSK-891: Fix UI Tests instability (#2780) ## [0.6.74] - 2023-03-17 -### TSK-812 - -- Opening images in the center. Minor design corrections. (#2755) - -### TSK-857 - -- Create company button (#2762) +* TSK-812: Opening images in the center. Minor design corrections. (#2755) +* TSK-857: Create company button (#2762) ## [0.6.73a] - 2023-03-16 -### TSK-568 - -- User-friendly message on join for expired links (#2752) - -### TSK-802 - -- Save token to array (#2754) - -### TSK-807 - -- Query only active Employees (#2753) - -### TSK-849 - -- Show labels in list (#2749) +* TSK-568: User-friendly message on join for expired links (#2752) +* TSK-802: Save token to array (#2754) +* TSK-807: Query only active Employees (#2753) +* TSK-849: Show labels in list (#2749) ## [0.6.73] - 2023-03-16 -### TSK-791 - -- Handle department's public holidays + add stats for it (#2735) - -### TSK-827 - -- Rename Process to Pattern (#2740) - -### TSK-837 - -- Fix backup OOM (#2732) - -### TSK-838 - -- Created by (#2742) - -### TSK-842 - -- Fix resume recognition functionality (#2736) - -### TSL-840 - -- Fixed the display of Filtered views (#2743) +* TSK-791: Handle department's public holidays + add stats for it (#2735) +* TSK-827: Rename Process to Pattern (#2740) +* TSK-837: Fix backup OOM (#2732) +* TSK-838: Created by (#2742) +* TSK-842: Fix resume recognition functionality (#2736) +* TSL-840: Fixed the display of Filtered views (#2743) ## [0.6.72a] - 2023-03-13 -### TSK-803 - -- Fix load speed (#2728) +* TSK-803: Fix load speed (#2728) ## [0.6.69b] - 2023-03-02 -### TSK-761 - -- Team default assignee (#2706) - -### TSK-769 - -- Fix channel editor (#2704) +* TSK-761: Team default assignee (#2706) +* TSK-769: Fix channel editor (#2704) ## [0.6.69] - 2023-03-01 -### TSK-517 - -- Show 'Last Modified' instead of 'Date' for attachments (#2696) - -### TSK-713 - -- Notifications for DM (#2695) - -### TSK-728 - -- Server reconnect support (#2689) - -### TSK-734 - -- Fix Bitrix email import (#2700) +* TSK-517: Show 'Last Modified' instead of 'Date' for attachments (#2696) +* TSK-713: Notifications for DM (#2695) +* TSK-728: Server reconnect support (#2689) +* TSK-734: Fix Bitrix email import (#2700) ## [0.6.68] - 2023-02-22 -### EZQ-49 - -- Update collaborator (#2677) - -### TSK-544 - -- Search by issue number and description (#2675) +* EZQ-49: Update collaborator (#2677) +* TSK-544: Search by issue number and description (#2675) ## [0.6.67] - 2023-02-20 -### TSK-467 - -- Throw error when used for AttachedDoc (#2649) - -### TSK-637 - -- Add login and recovery action (#2654) - -### TSK-678 - -- Update First/Last names (#2652) - -### TSK-679 - -- Add Whatsapp (#2651) - -### TSK-685 - -- Prioritise selection when focus exists (#2648) +* TSK-467: Throw error when used for AttachedDoc (#2649) +* TSK-637: Add login and recovery action (#2654) +* TSK-678: Update First/Last names (#2652) +* TSK-679: Add Whatsapp (#2651) +* TSK-685: Prioritise selection when focus exists (#2648) ## [0.6.65] - 2023-02-10 -### TSK-651 - -- Fix Team editing (#2611) +* TSK-651: Fix Team editing (#2611) ## [0.6.64] - 2023-02-08 -### TSK-413 - -- Implement scrum recording (#2550) - -### TSK-570 - -- Fix RelatedIssues (#2596) - -### TSK-608 - -- Move Vacancy support. (#2597) +* TSK-413: Implement scrum recording (#2550) +* TSK-570: Fix RelatedIssues (#2596) +* TSK-608: Move Vacancy support. (#2597) ## [0.6.61] - 2023-01-30 -### TSK-476 - -- Bitrix import fixes (#2548) - -### TSK-569 - -- Fix MarkupPresenter, ShowMore (#2553) +* TSK-476: Bitrix import fixes (#2548) +* TSK-569: Fix MarkupPresenter, ShowMore (#2553) ## [0.6.57] - 2023-01-24 -### TSK-553 - -- Fix padding in assignee popup (#2531) +* TSK-553: Fix padding in assignee popup (#2531) ## [0.6.55] - 2023-01-20 -### TSK-360 - -- Assignee selection enhancements (#2509) +* TSK-360: Assignee selection enhancements (#2509) ## [0.6.53a] - 2022-12-30 -### TSK-507 - -- Assignee box Direction line is hidden to early (#2485) +* TSK-507: Assignee box Direction line is hidden to early (#2485) ## [0.6.52] - 2022-12-22 -### TSK-485 - -- Calendar Year/Month summary (#2465) +* TSK-485: Calendar Year/Month summary (#2465) ## [0.6.51] - 2022-12-21 -### TSK-473 - -- Added tracker layout sanity tests (#2452) +* TSK-473: Added tracker layout sanity tests (#2452) ## [0.6.50] - 2022-12-16 -### TSK-487 - -- Resume draft stuck in Resume state (#2443) +* TSK-487: Resume draft stuck in Resume state (#2443) ## [0.6.49] - 2022-12-15 -### TSK-344 - -- Draft for new Candidate/Person etc (#2432) - -### TSK-425 - -- Supported team settings (#2406) - -### TSK-461 - -- Refactor Tracker/Remember Issues (#2425) +* TSK-344: Draft for new Candidate/Person etc (#2432) +* TSK-425: Supported team settings (#2406) +* TSK-461: Refactor Tracker/Remember Issues (#2425) ## [0.6.48] - 2022-12-07 -### TSK-343 - -- Remember unfinished comment per document (#2400) - -### TSK-458 - -- Create of sub-issue not show Issue created notification (#2419) +* TSK-343: Remember unfinished comment per document (#2400) +* TSK-458: Create of sub-issue not show Issue created notification (#2419) ## [0.6.47] - 2022-12-02 -### TSK-419 - -- Update workspaces while open menu (#2413) +* TSK-419: Update workspaces while open menu (#2413) ## [0.6.46] - 2022-11-29 -### Activity - -- Filters (#2395) +* ACTIVITY: Filters (#2395) ## [0.6.45] - 2022-11-24 -### TSK-397 - -- Fixed time report round (#2389) - -### TSK-418 - -- Added working day option (#2393) - -### TSK-421 - -- Improve Core testing and coverage (#2387) - -### TSK-435 - -- Fix create issue edit focus lost. (#2396) +* TSK-397: Fixed time report round (#2389) +* TSK-418: Added working day option (#2393) +* TSK-421: Improve Core testing and coverage (#2387) +* TSK-435: Fix create issue edit focus lost. (#2396) ## [0.6.44] - 2022-11-22 -### HR - -- Update Schedule layout. Fix tooltip and popup. (#2388) - -### TSK-399 - -- Allow to delete sprints (#2386) - -### TSK-420 - -- Fixed time report placeholders (#2390) +* HR: Update Schedule layout. Fix tooltip and popup. (#2388) +* TSK-399: Allow to delete sprints (#2386) +* TSK-420: Fixed time report placeholders (#2390) ## [0.6.41] - 2022-11-12 -### TSK-363 - -- Fixed multiple no sprint category (#2352) - -### TSK-364 - -- Fixed filter updates for collapse issues state (#2355) +* TSK-363: Fixed multiple no sprint category (#2352) +* TSK-364: Fixed filter updates for collapse issues state (#2355) ## [0.6.40] - 2022-11-02 -### TSK-212 - -- Add notification on issue created (#2325) - -### TSK-342 - -- Add resume issue function (#2332) +* TSK-212: Add notification on issue created (#2325) +* TSK-342: Add resume issue function (#2332) ## [0.6.34] - 2022-08-25 -### Tracker - -- Enlarged headers (#2259) +* TRACKER: Enlarged headers (#2259) ## [0.6.33a] - 2022-08-22 -### HR - -- When hovering over a cell, the day is highlighted. (#2253) +* HR: When hovering over a cell, the day is highlighted. (#2253) ## [0.6.31] - 2022-07-19 -### TSK-268 - -- Supported expandable for issue list (#2222) +* TSK-268: Supported expandable for issue list (#2222) ## [0.6.30c] - 2022-07-10 -### Tracker - -- Fix issue status colors in the kanban view (#2231) -- Refactor ViewOptions (#2228) +* TRACKER: Fix issue status colors in the kanban view (#2231)* TRACKER: Refactor ViewOptions (#2228) ## [0.6.30b] - 2022-07-07 -### Board - -- Fix show popup actions (#2211) - -### Tracker - -- Fix colors for issue status icons (#2203) -- Fix kanban query (#2204) -- Updated status icons (#2215) -- Labels on the card. (#2221) -- Hide inbox / views (#2224) +* BOARD: Fix show popup actions (#2211) +* TRACKER: Fix colors for issue status icons (#2203)* TRACKER: Fix kanban query (#2204)* TRACKER: Updated status icons (#2215)* TRACKER: Labels on the card. (#2221)* TRACKER: Hide inbox / views (#2224) ## [0.6.30a] - 2022-07-04 -### HR - -- Update schedule layout (#2202) - -### Userbox - -- Clean up selected for user box on value change (#2199) +* HR: Update schedule layout (#2202) +* USERBOX: Clean up selected for user box on value change (#2199) ## [0.6.30] - 2022-07-02 -### Automation - -- Disable UI (#2158) - -### Board - -- Remove server plugin (#2159) - -### EditBox - -- Fixed size calculation (#2181) - -### HR - -- Update values on blur (#2161) - -### Tracker - -- Fix extra refresh (#2160) -- Add relation (#2174) -- Workflow statuses (#2171) -- Add issues up/down navigator (#2188) +* AUTOMATION: Disable UI (#2158) +* BOARD: Remove server plugin (#2159) +* EDITBOX: Fixed size calculation (#2181) +* HR: Update values on blur (#2161) +* TRACKER: Fix extra refresh (#2160)* TRACKER: Add relation (#2174)* TRACKER: Workflow statuses (#2171)* TRACKER: Add issues up/down navigator (#2188) ## [0.6.29b] - 2022-06-27 -### Chunter - -- Open message links without reload (#2124) +* CHUNTER: Open message links without reload (#2124) ## [0.6.29a] - 2022-06-27 -### Tracker - -- Parent issues name (#2136) -- Sync project with parent (#2137) +* TRACKER: Parent issues name (#2136)* TRACKER: Sync project with parent (#2137) ## [0.6.29] - 2022-06-25 -### Activity - -- Fix comments display (#2143) - -### Automation - -- Initial support (#2134) - -### Tracker - -- Issues search (#2129) -- Introduce Roadmap (#2139) - -### UI - -- Refactor (#2127) +* ACTIVITY: Fix comments display (#2143) +* AUTOMATION: Initial support (#2134) +* TRACKER: Issues search (#2129)* TRACKER: Introduce Roadmap (#2139) +* UI: Refactor (#2127) ## [0.6.28] - 2022-06-20 -### Board - -- Fix header (#2098) - -### Chunter - -- Copy link to message (#2078) - -### Tracker - -- Fix status editor (#2097) +* BOARD: Fix header (#2098) +* CHUNTER: Copy link to message (#2078) +* TRACKER: Fix status editor (#2097) ## [0.6.27] - 2022-06-15 -### Chunter - -- Add button for link formatting (#2063) - -### TSK-112 - -- Fix workbench switch (#2074) - -### TSK-81 - -- Disable State delete action (#2076) - -### Tags - -- Fix collection editor (#2080) -- Add inline editor (#2081) - -### Tracker - -- Add priority to sub-issues (#2054) +* CHUNTER: Add button for link formatting (#2063) +* TSK-112: Fix workbench switch (#2074) +* TSK-81: Disable State delete action (#2076) +* TAGS: Fix collection editor (#2080)* TAGS: Add inline editor (#2081) +* TRACKER: Add priority to sub-issues (#2054) ## [0.6.26] - 2022-06-10 -### Board - -- Fix tags/labels for board table view (#2045) -- Fix attribute views for tags (#2046) -- Update popups style (#2043) -- Add labels view (#2047) +* BOARD: Fix tags/labels for board table view (#2045)* BOARD: Fix attribute views for tags (#2046)* BOARD: Update popups style (#2043)* BOARD: Add labels view (#2047) ## [0.6.25] - 2022-06-08 -### Tracker - -- Added Projects to the card (#2023) -- Updating cards in Kanban (#2032) -- Add "Show Sub-issues" toggle into issue list (#2033) +* TRACKER: Added Projects to the card (#2023)* TRACKER: Updating cards in Kanban (#2032)* TRACKER: Add "Show Sub-issues" toggle into issue list (#2033) ## [0.6.24] - 2022-06-07 -### Panel - -- Remove full size. Fix popup. (#2007) - -### Tracker - -- Add project issue list view (#2012) +* PANEL: Remove full size. Fix popup. (#2007) +* TRACKER: Add project issue list view (#2012) ## [0.6.23] - 2022-06-03 -### Board - -- Update server-plugin for task to subscribe to updates on create & update (#1925) - -### FliterBar - -- Remove save button (#1937) - -### Scroller - -- Added autohide. Fixed track height when displaying table and colors. (#1964) - -### Tracker - -- Change "Issue" type to "AttachedDoc" (#1875) -- Add Sub-issues list (#1989) -- Fix console errors in the Issue Editor (#2001) +* BOARD: Update server-plugin for task to subscribe to updates on create & update (#1925) +* FLITERBAR: Remove save button (#1937) +* SCROLLER: Added autohide. Fixed track height when displaying table and colors. (#1964) +* TRACKER: Change "Issue" type to "AttachedDoc" (#1875)* TRACKER: Add Sub-issues list (#1989)* TRACKER: Fix console errors in the Issue Editor (#2001) ## [0.6.22] - 2022-05-29 -### Board - -- Update actions (#1859) -- Fix cover presenter (#1872) -- Checklist item dnd support (#1873) - -### HR - -- Issue fixes (#1891) - -### Tracker - -- Add "Parent Issue" control to the "Edit Issue" dialog (#1857) +* BOARD: Update actions (#1859)* BOARD: Fix cover presenter (#1872)* BOARD: Checklist item dnd support (#1873) +* HR: Issue fixes (#1891) +* TRACKER: Add "Parent Issue" control to the "Edit Issue" dialog (#1857) ## [0.6.21] - 2022-05-24 -### Contacts - -- Type Filter (#1855) +* CONTACTS: Type Filter (#1855) ## [0.6.20] - 2022-05-23 -### Board - -- Update card (#1826) +* BOARD: Update card (#1826) ## [0.6.19] - 2022-05-22 -### Board - -- Add TableView (#1760) -- Use Standard actions (#1766) -- Add checklists info (#1772) -- Add checklist assignee (#1778) -- Add convert checklist to card action (#1805) - -### Chunter - -- Convert direct message to private channel (#1752) -- Open dm on creation if already exists (#1773) -- Formatting (#1804) - -### EditIssue - -- Fix "Due date" button style. (#1824) - -### HR - -- Fixes to Vacancy/Application creation (#1753) - -### Telegram - -- Latest messages below. Update AttachmentPreview layout. (#1768) - -### Tracker - -- Project - Project selector (#1740) -- Split "edit issue" dialog to preview / edit (#1731) -- Project - Editors (#1779) -- Project - Project status buttons (#1793) -- Add context menu to the "EditIssue" dialog (#1788) -- "Edit Issue" dialog adjustments (#1810) +* BOARD: Add TableView (#1760)* BOARD: Use Standard actions (#1766)* BOARD: Add checklists info (#1772)* BOARD: Add checklist assignee (#1778)* BOARD: Add convert checklist to card action (#1805) +* CHUNTER: Convert direct message to private channel (#1752)* CHUNTER: Open dm on creation if already exists (#1773)* CHUNTER: Formatting (#1804) +* EDITISSUE: Fix "Due date" button style. (#1824) +* HR: Fixes to Vacancy/Application creation (#1753) +* TELEGRAM: Latest messages below. Update AttachmentPreview layout. (#1768) +* TRACKER: Project - Project selector (#1740)* TRACKER: Split "edit issue" dialog to preview / edit (#1731)* TRACKER: Project - Editors (#1779)* TRACKER: Project - Project status buttons (#1793)* TRACKER: Add context menu to the "EditIssue" dialog (#1788)* TRACKER: "Edit Issue" dialog adjustments (#1810) ## [0.6.18] - 2022-05-15 -### Board - -- Initial checklist support (#1672) -- Refactor AddPanel with TextAreaEditor (#1720) -- Fix copy from message -- Fix push/pull activity (#1718) - -### Chunter - -- User status (#1608) (#1692) - -### Tracker - -- Issue filters - additional features (#1708) +* BOARD: Initial checklist support (#1672)* BOARD: Refactor AddPanel with TextAreaEditor (#1720)* BOARD: Fix copy from message* BOARD: Fix push/pull activity (#1718) +* CHUNTER: User status (#1608) (#1692) +* TRACKER: Issue filters - additional features (#1708) ## [0.6.15] - 2022-05-05 -### Board - -- Remove stale left panel items (#1574) -- Fix card members update (#1620) -- Checklists model adjustments (#1633) - -### Chunter - -- File browser additional fixes (#1547) -- Download file action (#1570) -- FileBrowser - add grid view (#1571) -- FileBrowser - replace px with rem (#1582) -- Remove attachments only for creator (#1552) -- Private channel & add channel members ui (#1524) (#1589) - -### EditIssue - -- Add due date to the right panel (#1272) (#1642) - -### Tracker - -- Fix IssuesList selection (#1578) -- Rewrite AssigneePresenter (#1568) -- Fix issue status view for "Activity" (#1632) -- Fix issue priority view for "Activity" (#1635) -- Issue filters - main functionality (#1640) +* BOARD: Remove stale left panel items (#1574)* BOARD: Fix card members update (#1620)* BOARD: Checklists model adjustments (#1633) +* CHUNTER: File browser additional fixes (#1547)* CHUNTER: Download file action (#1570)* CHUNTER: FileBrowser - add grid view (#1571)* CHUNTER: FileBrowser - replace px with rem (#1582)* CHUNTER: Remove attachments only for creator (#1552)* CHUNTER: Private channel & add channel members ui (#1524) (#1589) +* EDITISSUE: Add due date to the right panel (#1272) (#1642) +* TRACKER: Fix IssuesList selection (#1578)* TRACKER: Rewrite AssigneePresenter (#1568)* TRACKER: Fix issue status view for "Activity" (#1632)* TRACKER: Fix issue priority view for "Activity" (#1635)* TRACKER: Issue filters - main functionality (#1640) ## [0.6.14] - 2022-04-26 -### Board - -- Add open card inline menu (#1511) -- Handle labels when move card to another board (#1538) -- Make context menu consistent (#1542) - -### Chunter - -- Avatars in dm header and highlight on first message (#1499) -- Saved attachments (#1515) - -### Tracker - -- Add keyboard support for issues list (#1539) +* BOARD: Add open card inline menu (#1511)* BOARD: Handle labels when move card to another board (#1538)* BOARD: Make context menu consistent (#1542) +* CHUNTER: Avatars in dm header and highlight on first message (#1499)* CHUNTER: Saved attachments (#1515) +* TRACKER: Add keyboard support for issues list (#1539) ## [0.6.13] - 2022-04-24 -### Board - -- Add create / edit card label popup -- Fix lint issues -- Update Date Presenter to reuse as presenter -- Fix formatting -- Use / for card labels update -- Use for join action -- Add labels & members & date to Kanban Card (#1462) -- Fix popup alignments (#1467) -- Add attachment action (#1474) -- Extend popup positioning for Kanban card (#1483) -- Add kanban card edit mode (#1484) - -### Chunter - -- Saved messages (#1466) -- Direct messages (#1472) -- File browser (#1407) (#1488) - -### Tracker - -- View options - Grouping (#1442) -- Status should be positioned at same offset (#1464) -- View options - Completed issues period, empty groups display (#1490) -- Move "IssueStatus" enum into model (#1449) +* BOARD: Add create / edit card label popup* BOARD: Fix lint issues* BOARD: Update Date Presenter to reuse as presenter* BOARD: Fix formatting* BOARD: Use / for card labels update* BOARD: Use for join action* BOARD: Add labels & members & date to Kanban Card (#1462)* BOARD: Fix popup alignments (#1467)* BOARD: Add attachment action (#1474)* BOARD: Extend popup positioning for Kanban card (#1483)* BOARD: Add kanban card edit mode (#1484) +* CHUNTER: Saved messages (#1466)* CHUNTER: Direct messages (#1472)* CHUNTER: File browser (#1407) (#1488) +* TRACKER: View options - Grouping (#1442)* TRACKER: Status should be positioned at same offset (#1464)* TRACKER: View options - Completed issues period, empty groups display (#1490)* TRACKER: Move "IssueStatus" enum into model (#1449) ## [0.6.12] - 2022-04-18 -### Board - -- Create board labels (#1426) -- Add card labels picker popup (#1434) - -### Chunter - -- Archive channel (#1416) +* BOARD: Create board labels (#1426)* BOARD: Add card labels picker popup (#1434) +* CHUNTER: Archive channel (#1416) ## [0.6.11] - 2022-04-17 -### Board - -- Design card editor (initial) (#1292) -- 1265: Make Card Actions extensible (#1319) -- Update board card model (#1329) -- Add new card actions + Join Card Action example (#1335) -- Add card details (members, labels, date) (#1376) -- Add button shape and title props (#1381) -- Fix card live updates (#1403) -- Add attachments support -- Fix labels model (#1405) -- Fix infinite loop in Activity component for space update (#1417) - -### Chunter - -- Channel attributes (#1334) -- Delete message (#1336) -- Update channel last message and close thread on deletion from other user (#1389) -- Pin messages (#1396) -- Attachments table in channel description (#1402) -- Attachments and format updates (#1410) -- Show "edited" label and cancel button (#1411) - -### Tracker - -- Board view (#1325) -- Issues list view (#1313) -- Issue List – Priority presenter (#1382) -- Improve CheckBox (#1356) -- Issue List – Status presenter (#1383) -- Issue List – Assignee presenter (#1384) -- Issue List - DueDate presenter (#1393) +* BOARD: Design card editor (initial) (#1292)* BOARD: 1265: Make Card Actions extensible (#1319)* BOARD: Update board card model (#1329)* BOARD: Add new card actions + Join Card Action example (#1335)* BOARD: Add card details (members, labels, date) (#1376)* BOARD: Add button shape and title props (#1381)* BOARD: Fix card live updates (#1403)* BOARD: Add attachments support* BOARD: Fix labels model (#1405)* BOARD: Fix infinite loop in Activity component for space update (#1417) +* CHUNTER: Channel attributes (#1334)* CHUNTER: Delete message (#1336)* CHUNTER: Update channel last message and close thread on deletion from other user (#1389)* CHUNTER: Pin messages (#1396)* CHUNTER: Attachments table in channel description (#1402)* CHUNTER: Attachments and format updates (#1410)* CHUNTER: Show "edited" label and cancel button (#1411) +* TRACKER: Board view (#1325)* TRACKER: Issues list view (#1313)* TRACKER: Issue List – Priority presenter (#1382)* TRACKER: Improve CheckBox (#1356)* TRACKER: Issue List – Status presenter (#1383)* TRACKER: Issue List – Assignee presenter (#1384)* TRACKER: Issue List - DueDate presenter (#1393) ## [0.6.8] - 2022-03-19 -### Upd - -- DataPicker with region selection. Presenters. (#1153) +* UPD: DataPicker with region selection. Presenters. (#1153) ## [0.6.0] - 2021-11-22 -### Clean - -- Package.json +* CLEAN: Package.json diff --git a/cliff.toml b/cliff.toml index ba12c0b7a8a..23dab105126 100644 --- a/cliff.toml +++ b/cliff.toml @@ -9,22 +9,21 @@ # template for the changelog footer header = """ # Changelog\n -All notable changes to this project will be documented in this file.\n +Changelog.\n """ # template for the changelog body # https://keats.github.io/tera/docs/#introduction body = """ {% if version %}\ - ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }} + ## [{{ version | trim_start_matches(pat="v") }}] - {{ timestamp | date(format="%Y-%m-%d") }}\n {% else %}\ - ## [unreleased] + ## [unreleased]\n {% endif %}\ -{% for group, commits in commits | group_by(attribute="group") %} - ### {{ group | striptags | trim | upper_first }} - {% for commit in commits %} - - {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ +{% for group, commits in commits | group_by(attribute="group") %}\ + {% for commit in commits %}\ + * {{ group | striptags | trim | upper }}: {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ - {{ commit.message | upper_first }}\ + {{ commit.message | trim | upper_first }}\ {% endfor %} {% endfor %}\n """ From beccd6f1488e2edd2af0b310b89bf2611f9315f1 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 12 Aug 2024 15:14:12 +0700 Subject: [PATCH 044/149] UBERF-7865: Final fix (#6316) Signed-off-by: Andrey Sobolev --- server/account/src/operations.ts | 14 ++++++++++++-- server/core/src/server/domainHelper.ts | 3 +++ 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/server/account/src/operations.ts b/server/account/src/operations.ts index 8c45f4a8f3d..e98addfa084 100644 --- a/server/account/src/operations.ts +++ b/server/account/src/operations.ts @@ -579,14 +579,24 @@ function getExtra (info: Account | AccountInfo | null, rec?: Record export const guestAccountEmail = '#guest@hc.engineering' +const failedEmails = new Set() + function decodeToken (ctx: MeasureContext, token: string): Token { // eslint-disable-next-line no-useless-catch try { return decodeTokenRaw(token) } catch (err: any) { try { - // Ok we have error, but we need to log a proper message - ctx.warn('failed to verify token', { ...decodeTokenRaw(token, false) }) + const decode = decodeTokenRaw(token, false) + const has = failedEmails.has(decode.email) + if (!has) { + failedEmails.add(decode.email) + // Ok we have error, but we need to log a proper message + ctx.warn('failed to verify token', { ...decode }) + } + if (failedEmails.size > 1000) { + failedEmails.clear() + } } catch (err2: any) { // Ignore } diff --git a/server/core/src/server/domainHelper.ts b/server/core/src/server/domainHelper.ts index 2f236cdfb6a..0154b7fc982 100644 --- a/server/core/src/server/domainHelper.ts +++ b/server/core/src/server/domainHelper.ts @@ -89,6 +89,9 @@ export class DomainIndexHelperImpl implements DomainHelper { const added = new Set() try { + if (!operations.exists(domain)) { + return + } const has50Documents = documents > 50 const allIndexes = (await operations.listIndexes(domain)).filter((it) => it.name !== '_id_') ctx.info('check indexes', { domain, has50Documents, documents }) From ddbfdfe57c4bd84ff1b4674c75e1616b4b647c2b Mon Sep 17 00:00:00 2001 From: Vyacheslav Tumanov Date: Mon, 12 Aug 2024 23:24:42 +0500 Subject: [PATCH 045/149] Use correct variable (#6325) Signed-off-by: Vyacheslav Tumanov --- server/middleware/src/spaceSecurity.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/middleware/src/spaceSecurity.ts b/server/middleware/src/spaceSecurity.ts index c5985fd9ea7..39305525924 100644 --- a/server/middleware/src/spaceSecurity.ts +++ b/server/middleware/src/spaceSecurity.ts @@ -497,7 +497,7 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar const res = await this.mergeQuery(account, query[field], domain, isSpace) if (res === undefined) { // eslint-disable-next-line @typescript-eslint/no-dynamic-delete - delete (query as any)[field] + delete (newQuery as any)[field] } else { ;(newQuery as any)[field] = res if (typeof res === 'object') { From cebefcee54f0b994febf8c7af741d81fd6ab3846 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 20 Aug 2024 23:03:20 +0700 Subject: [PATCH 046/149] Bump model version to 0.6.281 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 9965b9111ed..85524c9fb26 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.278" +"0.6.281" From 1b42ff773a5ee85321a311bcb6f1e55809093b0e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 20 Aug 2024 23:13:06 +0700 Subject: [PATCH 047/149] Update readme.md Signed-off-by: Andrey Sobolev --- changelog.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/changelog.md b/changelog.md index c62d103b9cf..e4cda3209f0 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,22 @@ Changelog. +## [0.6.281] - 2024-08-20 + +* 🐛 BUG FIXES: Does not send email confirmation when signup with otp (#6292)* 🐛 BUG FIXES: Build print and sign services for arm64 (#6321) +* QFIX: Change default filter for my docs in controlled documents (#6290)* QFIX: Fix duplicates in inbox from multiple accounts (#6306) +* UBERF-7690: Local mongo setup configuration (#6335)* UBERF-7690: Performance fixes (#6336)* UBERF-7690: Use query joiner for server/trigger requests (#6339)* UBERF-7690: Skip space security for >=85% of spaces and do on result check (#6338)* UBERF-7690: Operation log support + fixes (#6337)* UBERF-7690: Trigger improvements (#6340) +* UBERF-7790: Fix connection timeout issue (#6301) +* UBERF-7836: Fix github integeration (#6313) +* UBERF-7854: Fix live query $lookup update (#6304) +* UBERF-7865: Fix wrong access to not created collection (#6315)* UBERF-7865: Final fix (#6316) +* [PART-1]: New analytics events (#6319) +* UBERF-7856: Fix desktop publishing CI (#6308) + +## [0.6.280a] - 2024-08-12 + +* UBERF-7865: Final fix (#6316) + ## [0.6.280] - 2024-08-11 * UBERF-7836: Fix github integeration (#6313) From a848b79307dad41719a215c01f1160a6db5bb3ef Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 20 Aug 2024 23:41:30 +0700 Subject: [PATCH 048/149] Update changelog Signed-off-by: Andrey Sobolev --- changelog.md | 2192 +++++++++++++++++++++++++------------------------- cliff.toml | 14 +- 2 files changed, 1102 insertions(+), 1104 deletions(-) diff --git a/changelog.md b/changelog.md index e4cda3209f0..cd13b816aa1 100644 --- a/changelog.md +++ b/changelog.md @@ -4,1896 +4,1896 @@ Changelog. ## [0.6.281] - 2024-08-20 -* 🐛 BUG FIXES: Does not send email confirmation when signup with otp (#6292)* 🐛 BUG FIXES: Build print and sign services for arm64 (#6321) -* QFIX: Change default filter for my docs in controlled documents (#6290)* QFIX: Fix duplicates in inbox from multiple accounts (#6306) -* UBERF-7690: Local mongo setup configuration (#6335)* UBERF-7690: Performance fixes (#6336)* UBERF-7690: Use query joiner for server/trigger requests (#6339)* UBERF-7690: Skip space security for >=85% of spaces and do on result check (#6338)* UBERF-7690: Operation log support + fixes (#6337)* UBERF-7690: Trigger improvements (#6340) -* UBERF-7790: Fix connection timeout issue (#6301) -* UBERF-7836: Fix github integeration (#6313) -* UBERF-7854: Fix live query $lookup update (#6304) -* UBERF-7865: Fix wrong access to not created collection (#6315)* UBERF-7865: Final fix (#6316) -* [PART-1]: New analytics events (#6319) -* UBERF-7856: Fix desktop publishing CI (#6308) +* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) +* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.280a] - 2024-08-12 -* UBERF-7865: Final fix (#6316) +* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) ## [0.6.280] - 2024-08-11 -* UBERF-7836: Fix github integeration (#6313) -* UBERF-7865: Fix wrong access to not created collection (#6315) -* UBERF-7856: Fix desktop publishing CI (#6308) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.279] - 2024-08-09 -* QFIX: Fix duplicates in inbox from multiple accounts (#6306) -* UBERF-7790: Fix connection timeout issue (#6301) -* UBERF-7854: Fix live query $lookup update (#6304) +* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) ## [0.6.277] - 2024-08-08 -* UBERF-7604: Telegram notifications service (#6182) -* EZQMS-1029: Fix permissions check for creating project doc from context menu (#6282) -* EZQMS-1160: Fix slice type (#6280) +* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) +* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) +* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) ## [0.6.276] - 2024-08-07 -* 🐛 BUG FIXES: Rekoni service build (#6255) -* UBERF-7604: Preparation for telegram notifications (#6123) -* UBERF-7717: Reduce finds on members changed (#6219) -* UBERF-7753: Change auth approach for providers (#6234) -* UBERF-7817: Fix tag element query (#6267) -* UBERF-7765: Retry config load desktop (#6272)* UBERF-7765: Only retry network errors when loading config for desktop app (#6274) +* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) +* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) +* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) +* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) +* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) +* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) ## [0.6.274] - 2024-08-05 -* 🐛 BUG FIXES: Properly update uppy state (#6252)* 🐛 BUG FIXES: Remove provider from preview config (#6253) -* UBERF-7794: Restore related issues control (#6244) -* UBERF-7796: Rework index creation logic (#6246) -* UBERF-7800: Space improvements (#6250) -* UBERF-7764: Improve space permissions query (#6236) +* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) +* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) +* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) +* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) +* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) ## [0.6.271] - 2024-08-02 -* UBERF-7776: Get rid of blobs in UI (#6226) +* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) ## [0.6.271rc1] - 2024-08-01 -* 🐛 BUG FIXES: Drive UX fixes (#6213) -* ⚙️ MISCELLANEOUS TASKS: Cross-platform docker build (#6198)* ⚙️ MISCELLANEOUS TASKS: Update hocuspocus version (#6207) -* EZQMS-1145: Fixes doc import tool (#6204) -* UBERF-7016: Hide channels without any activity long time (#6176) -* UBERF-7721: Fixed event display (#6175) -* UBERF-7734: Fix total with find with limit === 1 (#6187) -* UBERF-7743: Make check-clean non blocking (#6195) -* UBERF-7749: Use MONGO_OPTIONS properly (#6200) -* UBERF-7755: Fix image toolbar visibility (#6208) +* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) +* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) +* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) +* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) +* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) ## [0.6.270] - 2024-07-30 -* UBERF-7016: Hide channels without any activity long time (#6176) -* UBERF-7721: Fixed event display (#6175) -* UBERF-7734: Fix total with find with limit === 1 (#6187) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) ## [0.6.269] - 2024-07-30 -* 🐛 BUG FIXES: Add github to server pipeline (#6170) -* UBERF-7016: Hide channels without any activity long time (#6176) -* UBERF-7721: Fixed event display (#6175)* UBERF-7721: Fixed event display (#6175) +* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) ## [0.6.268] - 2024-07-29 -* UBERF-7698: Fix backup* UBERF-7698: Fix backup (#6168) -* UBERF-7705: Maitenance warning for every transactor (#6169) +* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) +* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) ## [0.6.267] - 2024-07-29 -* EZQMS-1069: Fix request model (#6131)* EZQMS-1069: Fix request model (#6131) -* UBERF-7543: Add low level groupBy api and improve security space lookup (#6126)* UBERF-7543: Add low level groupBy api and improve security space lookup (#6126) -* UBERF-7579: Text editor actions (#6103) -* UBERF-7665: Fix OOM on partial data (#6134)* UBERF-7665: Fix OOM in sharp (#6138)* UBERF-7665: Fix OOM in sharp (#6138) -* UBERF-7675: Remove heading text action from compact editors (#6143)* UBERF-7675: Remove heading text action from compact editors (#6143) -* UBERF-7682: Fix mongo cursor on backup (#6145)* UBERF-7682: Fix mongo cursor on backup (#6145) -* UBERF-7692: Move FindAll slow print into mongo adapter (#6152)* UBERF-7692: Move FindAll slow print into mongo adapter (#6152) +* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) +* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) +* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) +* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) +* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) +* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) +* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) ## [0.6.266] - 2024-07-24 -* EZQMS-1109: Add signature details for reviews/approvals (#6111) -* EZQMS-1140: Controlled doc content display improvements (#6110) -* QFIX: Qms signature dialog login info in tests (#6100) -* UBERF-7603: Fix connect with timeout (#6101) -* UBERF-7638: Add scroll to latest message button (#6119) -* EZQMS-1004: Fix typo (#6114) -* EZQMS-1121: Fix deleted doc states (#6112) +* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) +* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) +* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) +* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) +* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) +* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) +* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) ## [0.6.265] - 2024-07-19 -* 🐛 BUG FIXES: Hide wiki history sidebar tab (#6064) -* UBERF-7595: Do not use /api/v1/version on connect (#6075) -* UBERF-7597: Get rid of formats in preview.ts (#6077) -* UBERF-7600: Reduce number of $in operators and fix account service is… (#6080) -* UBERF-7603: Support multiple transactors (#6086) -* UBERF-7620: Send broadcast on delay with combine (#6094) +* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) +* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) +* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) +* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) +* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) +* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) ## [0.6.264] - 2024-07-12 -* UBERF-7495: Global editor kit extensions (#6057) -* UBERF-7513: Improve notifications model to allow external notifications channels (#6037) -* UBERF-7519: Rework backup service (#6050) -* UBERF-7583: Fix workspace upgrade (#6062) +* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) +* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) +* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) +* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) ## [0.6.263] - 2024-07-10 -* UBERF-7543: Fix memory usage (#6044) +* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) ## [0.6.262] - 2024-07-10 -* 🐛 BUG FIXES: Track applied transactions in session op context (#6029) +* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) ## [0.6.261] - 2024-07-09 -* 🐛 BUG FIXES: Handle readonly in number presenter (#6026) -* UBERF-7510: Add logging and catch errors on cleanup (#6003) -* UBERF-7520: Use Bulk for index query updates (#6012) -* UBERF-7532: Bulk operations for triggers (#6023) +* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) +* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) +* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) +* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) ## [0.6.260] - 2024-07-04 -* QFIX: Revert missing pipeline configuration (#5987) -* QFIX: Use http for local and test brandings (#5980) -* UBERF-7465: Move pipeline into separate plugin (#5978) -* UBERF-7474: Some logging and reduce calls for query refresh (#5973) -* UBERF-7489: Fix various performance issues (#5983)* UBERF-7489: Some more chat optimizations (#5999) -* UBERF-7501: Copy few blobs in parallel (#5995) -* EZQMS-1057: Fix images in branded workspaces (#5979) -* UBERF-7434: Show dowload progress (#5944) +* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) +* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) +* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) +* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) +* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) +* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) +* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) +* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) ## [0.6.259] - 2024-06-28 -* UBERF-7428: Fix memory issues (#5940) -* UBERF-7389: Instant transactions (#5941) +* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) +* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) ## [0.6.258] - 2024-06-27 -* 🚀 FEATURES: Add shortcut to create todo in documents (#5827) -* UBERF-7411: Allow to backup blobs with wrong size (#5926) -* UBERF-7419: Fix various sentry errors (#5931) -* UBERF-7422: Fix blob/stora (#5933) -* UBERF-7425: Fix some CF caching issues (#5936) +* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) +* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) +* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) +* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) +* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) ## [0.6.257] - 2024-06-25 -* 🐛 BUG FIXES: *(ui)* Allow input month with keystrokes (#5785) -* UBERF-5564: Rework groupping and support PersonAccount (#5525) -* UBERF-7165: Storage + Backup improvements (#5913) -* UBERF-7330: Improve text editor UX (#5909) -* UBERF-7362: Do not cache branding served from front (#5889) -* EZQMS-1028: Fix actions in tree element (#5887) -* UBERF-7350: Add more oauth logs (#5879) +* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) +* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) +* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) +* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) +* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) +* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) +* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) ## [0.6.256] - 2024-06-20 -* 🐛 BUG FIXES: Extra logging in documents content migration (#5868) -* EZQMS-951: Server branding (#5858) -* UBERF-7327: Chinese language selector (#5862) -* UBERF-7342: Add french lang selector (#5873) +* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) +* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) +* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) +* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) ## [0.6.255] - 2024-06-18 -* UBERF-7126: Content type based storage configuration (#5781) -* UBERF-7239: Support short/custom links in inbox/chat/planner (#5815) -* UBERF-7286: Backup retry (#5830) -* UBERF-7297: Allow to backup-restore from v0.6.239 (#5837)* UBERF-7297: One more fix to backup-restore (#5841) -* UBERF-7308: Upgrade model improvements (#5847) -* UBERF-7312: Memory improvements (#5849) -* EZQMS-1004: Fix questions wording (#5820) -* EZQMS-1023: Remove old migrations from qms (#5823) -* EZQMS-966: Notifications fixes (#5819) +* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) +* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) +* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) +* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) +* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) +* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) +* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) +* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) +* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) ## [0.6.254] - 2024-06-14 -* UBERF-7266: Fix workspace rate limit (#5812) +* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) ## [0.6.253] - 2024-06-13 -* UBERF-7247: Fix queryFind for mixins on server (#5803) -* EZQMS-972: Fix custom space types for documents and products (#5801) -* EZQMS-974: Fix space type selector in document and product spaces (#5802) +* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) +* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) +* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) ## [0.6.252] - 2024-06-12 -* EZQMS-1008: Disable archived product editing (#5794) -* EZQMS-976: Exclude other types mixins (#5795) -* EZQMS-981: Adjust doc library wording (#5791) -* UBERF-7206: Adjustments and resources to support desktop screenshare (#5790) +* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) +* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) +* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) +* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) ## [0.6.251] - 2024-06-11 -* 🐛 BUG FIXES: Disable guest link action for selection (#5776) -* ⚙️ MISCELLANEOUS TASKS: Update preview.ts (#5765) -* UBERF-7197: Fix high cpu load (#5761) +* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) +* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) +* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) ## [0.6.250] - 2024-06-07 -* UBERF-7077: Fixed Separator (#5743) -* UBERF-7181: Fix GH PR statuses (#5749) +* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) +* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) ## [0.6.249] - 2024-06-05 -* UBERF-7090: Add QMS common components (#5711)* UBERF-7090: Add QMS plugins (#5716)* UBERF-7090: Add Office plugins (#5725) -* UBERF-7126: Fix blob previews (#5723)* UBERF-7126: Support rich editor blob resolve (#5727) -* EZQMS-910: Fix workspace roles editing (#5726) +* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) +* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) +* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) ## [0.6.248] - 2024-05-31 -* UBERF-7114: Fix workspace from clone (#5703) -* UBERF-7118: Fix upgrade/refresh on reconnect (#5704) +* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) +* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) ## [0.6.247] - 2024-05-30 -* 🐛 BUG FIXES: Use concatLink for transactor URL (#5659)* 🐛 BUG FIXES: Migrate content for documents only (#5699) -* QFIX: Remove hardcoded platform url (#5692) -* UBERF-6984: Host-based branding (#5657) -* UBERF-7011: Switch to Ref (#5661) -* UBERF-7062: Fix backup memory usage and support missing blobs (#5665) -* UBERF-7067: Make chat group labels translations reactive (#5688) -* UBERF-7105: Use status colour when projectState is undefined (#5697) -* UBERF-6639: Fix create issue default status (#5685) -* UBERF-7084: Fix add new status to task type (#5684) -* UBERF-7090: Request enhancements (#5695) +* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) +* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) +* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) +* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) +* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) +* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) +* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) +* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) +* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) +* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) ## [0.6.246] - 2024-05-23 -* 🐛 BUG FIXES: Proper drive space header button logic (#5642)* 🐛 BUG FIXES: Download drive files via temporary link (#5644) -* UBERF-7018: Fix vacancies (#5647) +* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) +* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) ## [0.6.245] - 2024-05-22 -* UBERF-6365: Blob mongo storage initial support (#5474) -* UBERF-6638: Fix colours for statuses (#5620) -* UBERF-6854: S3 provider (#5611) -* UBERF-6893: Move index build into workspace usage. (#5586) -* UBERF-6949: Fix kanban options (#5593) +* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) +* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) +* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) +* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) +* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) ## [0.6.243] - 2024-05-13 -* 🐛 BUG FIXES: Hide actions for archived teamspaces (#5580) -* UBERF-6829: Group messages of the same type and user (#5569) -* EZQMS-876: Adjust role assignment editor (#5583) -* EZQMS-883: Allow email notifications for requests (#5582) -* EZQMS-896: Fix owners assignment for default spaces (#5585) +* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) +* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) +* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) +* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) +* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) ## [0.6.242] - 2024-05-10 -* 🐛 BUG FIXES: Add missing productId to getAccountInfo (#5540) -* UBERF-6870: Speedup server broadcast of derived transactions (#5553) -* UBERF-6888: Async triggers (#5565) +* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) +* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) +* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) ## [0.6.241] - 2024-05-08 -* UBERF-6802: Improve create chat message performance (#5530) -* UBERF-6807: Fix empty objects channels in chat (#5533) +* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) +* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) ## [0.6.240] - 2024-05-06 -* 🐛 BUG FIXES: Move to well known parent when no parent selected (#5516) -* EZQMS-729: Restrict spaces operations (#5500) -* QFIX: Connection should restore boolean query fields (#5508) -* UBERF-6576: Move default space/project/task types into static model (#5423) -* UBERF-6778: Add Support to uWebSocket.js library (#5503) -* EZQMS-730: Better check for roles when changing members (#5527) -* EZQMS-798: Fix role name update (#5514) -* EZQMS-834: Fix roles ids and names (#5520) +* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) +* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) +* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) +* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) +* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) +* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) +* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) +* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) ## [0.6.239] - 2024-05-03 -* 🐛 BUG FIXES: Show max width button in documents (#5476) -* EZQMS-762: Improve printing layout (#5486) -* QFIX: Elastic adapter index not found exception (#5482) -* UBERF-6756: Tracker performance fixes (#5488) -* EZQMS-762: Extract base content from toc popup (#5489) +* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) +* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) +* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) +* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) +* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) ## [0.6.238] - 2024-04-26 -* UBERF-6676: Chat local state (#5461) -* UBERF-6677: Add user online/offline status (#5438) -* UBERF-6712: Rework connection logic (#5455) -* UBERF-6726: Fix clone for huge files (#5470) -* UBERF-6708: Composite elastic doc key (#5457) +* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) +* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) +* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) +* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) +* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) ## [0.6.237] - 2024-04-23 -* EZQMS-748: Hide left menu by default, ensure placement, improve show/hide logic (#5429) +* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) ## [0.6.236] - 2024-04-23 -* UBERF-6653: Fix minor issue and add force-close (#5418) +* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) ## [0.6.235a] - 2024-04-20 -* UBERF-6636: Fix todos auto expand if collapsed (#5406) -* UBERF-6643: Fix few connection related exceptions (#5412)* UBERF-6643: A bit more logging (#5413) +* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) +* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) ## [0.6.235] - 2024-04-19 -* UBERF-6626: More detailed info about maintenance (#5400) -* UBERF-6633: Fix model enabled tracking (#5404) +* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) +* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) ## [0.6.234] - 2024-04-18 -* UBERF-5527: Add context menu for activity and inbox (#5373) -* UBERF-6205: Add real archive for notifications (#5385) -* UBERF-6490: Rework backup tool (#5386) -* UBERF-6598: Perform upgrade all workspaces to new versions (#5392) +* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) +* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) +* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) +* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) ## [0.6.233] - 2024-04-16 -* QFIX: Always recreate space types (#5371) -* UBERF-6464: Update activity mentions display (#5339) -* UBERF-6577: Fix invite link with null mask (#5372) +* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) +* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) +* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) ## [0.6.232] - 2024-04-16 -* 🐛 BUG FIXES: Workspace creation issues (#5362) -* UBERF-5686: Fix copy link (#5368) -* UBERF-5964: Insert items menu in editor (#5341) -* UBERF-6330: Fix race conditions in UI (#5184) -* UBERF-6557: Clean old domains during clone of workspace to new place (#5361) -* EZQMS-724: Make roles related code more robust (#5363) -* UBERF-6537: Fix teamspace creation (#5354) +* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) +* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) +* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) +* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) +* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) +* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) +* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) ## [0.6.231] - 2024-04-13 -* EZQMS-689: Slightly improved typings for notification presenters (#5312) -* UBERF-6469: Fix slow index creation (#5324) -* UBERF-6478: Make icons more clear (#5320) -* UBERF-6508: Add user to doc collaborators on mention (#5340) -* UBERF-6509: Fix reading mention notifications (#5323) -* UBERF-6523: Allow to use zstd (#5333) -* UBERF-6540: Fix isIndexable and clean wrong indexed documents (#5347) +* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) +* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) +* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) +* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) +* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) +* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) +* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) ## [0.6.230] - 2024-04-10 -* SILENT: False for notifications (#5284) -* UBERF-6469: Rework workspace creation to more informative (#5291) +* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) +* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) ## [0.6.229] - 2024-04-10 -* 🚀 FEATURES: *(help)* Added find bug button for easy navigation (#5214) -* QFIX: Center media, improve matching (#5267) -* UBERF-6353: Extensible preview (#5264) +* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) +* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) +* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) ## [0.6.228a] - 2024-04-09 -* UBERF-6426: Fix stuck backup (#5258) -* UBERF-6433: Fix workspace creation from demo workspaces (#5255) +* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) +* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) ## [0.6.228] - 2024-04-08 -* TSK-1682: Introduced reusable `SectionEmpty` for numerous existing and upcoming cases (#5220) -* UBERF-6313: Improve backup/restore (#5241) +* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) +* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) ## [0.6.227] - 2024-04-08 -* EZQMS-663: Add permissions util (#5189) -* QFIX: Restore ats task types tool (#5185) -* TSK-1682: Slightly reorganized recruit files for future changes (#5196) -* UBERF-6374: Improve server logging and improve startup performance (#5210) -* UBERF-6393: Work on elastic fast backup/restore (#5235) +* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) +* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) +* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) +* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) +* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) ## [0.6.226] - 2024-04-04 -* UBERF-6313: Improve upgrade of workspace (#5178) -* UBERF-6314: Provide space if all of the items have same space (#5171) -* UBERF-6318: Fix server drop connection on connect (#5174) +* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) +* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) +* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) ## [0.6.225] - 2024-04-03 -* UBERF-6296: Fix elastic queries (#5155) -* UBERF-6300: Not cache for index.html's (#5159) -* UBERF-6310: Fix context passing (#5167) -* UBERF-6255: Minor guest and pdf viewer adjustments (#5164) +* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) +* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) +* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) +* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) ## [0.6.224] - 2024-04-02 -* QFIX: Wrong minio config parameter (#5151) +* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) ## [0.6.223] - 2024-04-02 -* UBERF-6161: Storage configuration (#5109) -* UBERF-6263: Fix mongo client unexpected close (#5129) -* UBERF-6265: Fix account creation from account service (#5132) -* UBERF-6267: Fix few platform troubles (#5142) +* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) +* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) +* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) +* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) ## [0.6.222] - 2024-04-01 -* 🚀 FEATURES: Preview media attachments (#5102) -* UBERF-6226: Updated LOVE layout, VideoPopup. (#5100) -* UBERF-6242: More proper manage mongo connections (#5118) +* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) +* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) +* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) ## [0.6.221] - 2024-03-29 -* QFIX: Consistent space/project/task type mixi ids (#5089) -* EZQMS-663: Add more info to permissions store, fix tree element actions (#5090) -* UBERF-6224: Restore missing task types (#5094) +* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) +* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) +* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) ## [0.6.220] - 2024-03-28 -* QFIX: Invert delete object permission (#5085) +* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) ## [0.6.219] - 2024-03-28 -* EZQMS-612: Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) (#5083) -* EZQMS-665: Minor inbox styles fix (#5065) -* UBERF-6001: Roles management (#4994) -* UBERF-6202: Use only one mongo pull per configuration (#5073) -* UBERF-6209: Add reactivity (#5078) +* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) +* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) +* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) +* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) +* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) ## [0.6.218] - 2024-03-27 -* 🚀 FEATURES: *(test)* Updated Due date filter test (#5057) -* UBERF-6094: Preparing bot (#5061) -* UBERF-6180: Fix account issues (#5063) -* UBERF-6194: CLI for rename account (#5067) +* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) +* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) +* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) +* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) ## [0.6.216] - 2024-03-25 -* 🚀 FEATURES: *(planner)* Drag-n-drop (#5031)* 🚀 FEATURES: *(planner)* Save accordion state (#5042)* 🚀 FEATURES: *(planner)* Remove large view mode (#5043) -* 🐛 BUG FIXES: `Panel` glitches on opening (#5033) -* QFIX: Few check from sentry and disable due date test (#5050) -* UBERF-6124: Rework inbox view (#5046) -* UBERF-6126: Storage adapter (#5035) -* UBERF-6150: Improve backup logic (#5041) +* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) +* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) +* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) +* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) +* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) +* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) ## [0.6.215] - 2024-03-21 -* EZQMS-602: Moved `Rank` type to core (utilities stay in its own package) (#5019) -* UBERF-6121: Fix front service caching (#5029) +* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) +* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) ## [0.6.214] - 2024-03-19 -* 🚀 FEATURES: *(planner)* Add action for toggle button (#4986)* 🚀 FEATURES: *(test)* Working on the migration planner tests (#5002)* 🚀 FEATURES: *(planner)* Some ui improvements (#4992)* 🚀 FEATURES: *(planner)* New layout for attached todos (#4995)* 🚀 FEATURES: *(planner)* New slots, fixes and improvements (#4961) -* EZQMS-642: Extended `navigate()` signature to support History replacement (#4979) -* UBERF-6053: Do not crash on isDerived (#4998) -* UBERF-6058: Fix cache control for front service (#5000) -* UBERF-6066: Fix component manager state (#5009) +* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) +* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) +* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) +* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) +* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) ## [0.6.213] - 2024-03-15 -* 🐛 BUG FIXES: Default project icon (#4984) -* UBERF-6042: Fix front service (#4991) +* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) +* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) ## [0.6.212] - 2024-03-15 -* 🚀 FEATURES: *(test)* Updated Document public link revoke test (#4955) -* 🐛 BUG FIXES: Missed invite icon (#4962) -* UBERF-5933: Add 404 handling in case of resource direct requests (#4983) -* UBERF-5986: Upgrade fixes (#4957) -* UBERF-6000: Fix statuses filtering and icons (#4966) -* UBERF-6014: Fix $faset usage (#4971) +* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) +* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) +* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) +* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) +* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) +* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) ## [0.6.211] - 2024-03-13 -* UBERF-5982: Fix tracker select all action (#4950) +* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) ## [0.6.210a] - 2024-03-13 -* 🐛 BUG FIXES: *(planner)* Frozen slots when switching between todos (#4944) -* TESTS-221: Feat(tests): done Document public link revoke test (#4940) +* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) +* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) ## [0.6.210] - 2024-03-13 -* 🚀 FEATURES: *(planner)* New priority layout, update item layout (#4896)* 🚀 FEATURES: *(test)* Updated Due Date test (#4925) -* EZQMS-459: Hoisted `showNotify` calculation to `ActivityNotificationPresenter` (#4937) -* EZQMS-649: Moved some common utilities from Uberflow to Platform (#4927) -* TESTS-102: Feat(tests): done Label filter test (#4885) -* TESTS-216: Feat(tests): done Public link generate test (#4915) -* TESTS-217: Feat(test): done Public link Revoke test (#4926) -* TESTS-236: Feat(tests): done Create workspace with LastToken in the localStorage test (#4939) -* TESTS-94: Feat(tests): done Due date filter test (#4891) -* UBERF-5825: Fix github issues (#4924) -* UBERF-5932: Fix account upgrade (#4912) +* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) +* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) +* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) +* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) +* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) +* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) +* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) +* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) +* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) +* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) ## [0.6.209] - 2024-03-08 -* 🚀 FEATURES: *(planner)* Improve and reuse `Chip` (#4854) -* 🐛 BUG FIXES: *(todo)* Checkbox focus and spinner (#4890)* 🐛 BUG FIXES: *(todo)* Broken context actions (#4889) -* EZQMS-377: Add file attachments extension to text editor (#4284) -* EZQMS-562: Introduced reusable `NotificationToast` component (#4873) -* EZQMS-602: Moved Rank to its own package (#4845) -* TESTS-100: Feat(tests): done Milestone filter test (#4872) -* TESTS-101: Feat(tests): done Modified by filter test (#4871) -* TESTS-103: Feat(tests): done Title filter test (#4863) -* UBERF-5811: Rework backlinks (#4887) -* UBERF-5827: Add collaborative description for companies (#4851) -* UBERF-5886: Fix todo reorder on click (#4904) +* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) +* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) +* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) +* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) +* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) +* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) +* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) +* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) +* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) +* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) +* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) ## [0.6.208] - 2024-03-04 -* 🚀 FEATURES: New todo checkbox (#4841)* 🚀 FEATURES: *(tests)* TESTS-93 updated Created date filter test (#4862)* 🚀 FEATURES: *(tests)* Updated Created date filter test (#4868) -* 🐛 BUG FIXES: Create event popup improvements (#4850) -* TESTS-212: Feat(tests): done Add comment by popup test (#4817) -* UBERF-5870: Fix cache control and some minor enhancements (#4869) +* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) +* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) +* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) +* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) ## [0.6.207] - 2024-03-01 -* UBERF-5812: Fix allow to delete based on all my accounts (#4823) +* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) ## [0.6.206] - 2024-03-01 -* 🚀 FEATURES: *(tests)* Added documents tests (#4843) -* UBERF-5712: Fix jumping when scroll in bottom and add auto scroll to new content (#4830) +* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) +* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) ## [0.6.205] - 2024-02-29 -* 🚀 FEATURES: *(tests)* Added execute deploy in any status (#4767) -* TESTS-196: Feat(test): done Remove relation be editing issue details test (#4755) -* UBER-1239: Fix missing notifications for mentions from doc (#4820) -* UBERF-5394: Create component for new search input (#4777) -* UBERF-5604: Avoid extra calls on read notifications (#4781) -* UBERF-5621: Add full date tooltip (#4783) -* UBERF-5626: Set autofocus end on message edit (#4784) -* UBERF-5630: Fix inactive employee status in activity (#4782) -* UBERF-5650: Do not send mention notification if user already notified (#4821) -* UBERF-5675: Fix activity and notifications for colelction update (#4819) -* UBERF-5718: Allow to find one from existing queries (#4776) -* UBERF-5733: Remove invalid lookup update (#4779) -* UBERF-5734: Fix guest mode display of server generated links (#4790) -* UBERF-5744: Fix exception on server (#4787) -* UBERF-5795: Improve logging capabilities (#4813) +* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) +* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) +* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) +* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) +* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) +* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) +* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) +* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) +* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) +* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) +* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) +* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) +* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) +* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) +* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) ## [0.6.204] - 2024-02-26 -* TESTS-193: TESTS-194: feat(tests): working on the tests (#4739) +* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) ## [0.6.203] - 2024-02-25 -* UBERF-5511: Fix query and include ibm plex mono (#4764) +* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) ## [0.6.202] - 2024-02-23 -* 🚀 FEATURES: *(tests)* TESTS-47 done Mark as blocked by test (#4737) -* UBER-958: Fix query updates (#4742) -* UBERF-5594: Render mentions before object is loaded (#4738) -* UBERF-5595: Hide link preview for chat (#4752)* UBERF-5595: Set up attachments sizes (#4746) -* UBERF-5628: Fix unexpected Reference object in Activity on mentions in description (#4753) -* UBERF-5673: Esbuild transpile (#4748) -* UBERF-5694: Attempt to fix build cache (#4757) +* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) +* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) +* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) +* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) +* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) +* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) +* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) ## [0.6.201] - 2024-02-20 -* TESTS-182: Feat(tests): done Create sub-issue from template test (#4711) -* UBER-1227: Fix members duplicates (#4721) +* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) +* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) ## [0.6.200] - 2024-02-19 -* TESTS-192: Feat(tests): done Add comment with image attachment test (#4687) -* UBER-708: Github related fixes (#4704) -* UBERF-5472: Add pagination for channels/direct (#4706) -* UBERF-5586: Improve loading of reactions and saved messages (#4694) +* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) +* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) +* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) +* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) ## [0.6.198] - 2024-02-16 -* 🚀 FEATURES: *(tests)* Updated reports and prepare server step (#4659) -* QFIX: Create project type (#4685) -* UBERF-5548: Use esbuild with webpack (#4657) -* UBERF-5570: Fix avatars (#4679) -* UBERF-5575: Fix workspace join (#4684) -* UBERF-5551: Configurable click propagation from edit box (#4674) +* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) +* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) +* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) +* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) +* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) +* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) ## [0.6.197] - 2024-02-15 -* UBERF-5526: Fix scroll to new messages (#4651) -* UBERF-5532: Fix recruit comments typo (#4648) -* UBERF-5538: Fix server queryFind with mixins (#4653) +* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) +* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) +* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) ## [0.6.196] - 2024-02-14 -* EZQMS-563: Moved `ActionWithAvailability` helper type and functions from `questions` to `view` (#4611) -* UBERF-4319: Fix performance issues (#4631) -* UBERF-5467: Remove hidden notifications and use Lazy on inbox (#4632) -* UBERF-5476: Fix archive in inbox (#4618) -* UBERF-5485: Fix versions in bundled resources (#4625) -* UBERF-5495: Load all messages for inbox with one query (#4628) +* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) +* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) +* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) +* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) +* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) +* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) ## [0.6.195] - 2024-02-13 -* TESTS-167: Feat(tests): done Check that the issue backlink test (#4596) -* TESTS-179: Feat(tests): done Check the changed description activity test (#4598) -* UBEF-4319: Few more performance fixes (#4613) -* UBERF-4319: Fix create issue performance (#4608) -* UBERF-5323: Fix new messages marker (#4614) -* UBERF-5324: Allow cmd-k for editable content (#4601) -* UBERF-5438: Fix edit issue attributes keys (#4602) +* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) +* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) +* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) +* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) +* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) +* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) +* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) ## [0.6.194] - 2024-02-09 -* 🚀 FEATURES: *(tests)* TESTS-166 done Check Contact activity backlink test (#4585) -* UBERF-5408: Fix inline images in comments (#4591) -* UBERF-5418: Fix status editing (#4590) +* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) +* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) +* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) ## [0.6.193] - 2024-02-08 -* 🚀 FEATURES: *(test)* Updated Move to project test (#4582) -* TESTS-164: Feat(tests): done mentioned in the issue test (#4575) -* UBERF-4867: Fix issues mentions display (#4580) -* UBERF-5325: Disable send message during attachment upload (#4583) -* UBERF-5326: Fix extra scroll and higlight when thread opened (#4579) -* UBERF-5382: Allow to disable component edit for some cases (#4574) -* UBERF-5393: Fix backlink for thread (#4578) +* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) +* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) +* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) +* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) +* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) +* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) +* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) ## [0.6.192] - 2024-02-07 -* 🚀 FEATURES: *(tests)* Updated Create duplicate issues test (#4542)* 🚀 FEATURES: *(tests)* Updated close issue selector (#4551)* 🚀 FEATURES: *(tests)* TESTS-171 done Check validation steps test (#4558) -* 🐛 BUG FIXES: Tags view action button layout (#4514) -* EZQMS-531: Prop to disable Save As and Save buttons in `FilterBar` (#4560) -* TESTS-169: Feat(tests): done Create a workspace with a custom name test (#4541) -* UBERF-4319: Trigger Server queries (#4550) -* UBERF-5289: Fix getting parent doc for some cases for indexing (#4549) -* UBERF-5315: Update chat (#4572) -* UBERF-5321: Fix workspace CLI upgrade (#4534) -* UBERF-5348: Fix new status creation (#4567) -* UBERF-5350: Fix workspace name create issue (#4555) -* UBERF-5364: Fix targeted broadcast on server (#4565) +* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) +* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) +* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) +* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) +* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) +* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) +* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) +* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) +* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) +* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) +* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) ## [0.6.191] - 2024-02-05 -* 🐛 BUG FIXES: Broken checkbox behavior (#4509)* 🐛 BUG FIXES: Popup glitches caused by long calculations (#4511) -* UBERF-5017: Show correct collaborators diff and dont send notification for collaborators changer (#4529) -* UBERF-5304: Fix init workspace (#4524) +* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) +* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) +* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) ## [0.6.190] - 2024-02-03 -* UBERF-5280: Fix backup service (#4506) +* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) ## [0.6.188] - 2024-02-02 -* 🚀 FEATURES: *(tests)* Updated filter between tests (#4488) -* EZQMS-467: Fixed group for `Open in new tab` action (#4481) -* UBER-1160: Open vacancy panel when it’s opened from applicant (#4473) -* UBER-944: Action for opening in new tab (#4447) -* UBERF-4319: Performance changes (#4474)* UBERF-4319: Improve performance (#4501) -* UBERF-4983: Update chat ui (#4483) -* UBERF-5020: Fix reply to thread (#4502) -* UBERF-5140: Any workspace names (#4489) -* UBERF-5232: Fix wrong activity message title (#4498) -* UBERF-5243: Add default size, make icons size consistent (#4494) -* UBERF-5265: Fix workspace creation (#4499) -* UBERF-5275: Fix collaborator editing (#4505) +* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) +* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) +* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) +* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) +* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) +* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) +* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) +* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) +* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) +* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) +* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) +* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) ## [0.6.187] - 2024-01-30 -* TESTS-159: Feat(tests): done Create issue with several attachment tests (#4464) -* UBER-1005: Array> support as custom attribute (#4471) -* UBER-1198: Upgrade to mongo 7 (#4472) -* UBERF-4631: Fix issue when link preview in activity displayed as #undefined (#4435) -* EZQMS-537: Make thread header hidable (#4458) +* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) +* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) +* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) +* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) +* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) ## [0.6.186] - 2024-01-25 -* 🚀 FEATURES: *(tests)* Updated duplicate issues test (#4450) -* EZQMS-461: Add generics for `ModeSelector` and `SpecialView` (#4437)* EZQMS-461: Better typings for `ModeSelector` (#4451) -* UBERF-4970: Fix component update (#4455) -* UBERF-5083: Fix project delete (#4446) +* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) +* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) +* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) +* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) ## [0.6.185] - 2024-01-25 -* EZQMS-538: Allow command contributions to dev tool (#4440) +* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) ## [0.6.184] - 2024-01-24 -* 🚀 FEATURES: *(tests)* Skipped Set parent issue test (#4427) -* EZQMS-527: Introduced `ActionButton` component (#4412)* EZQMS-527: Consistent defaults for `ActionButton` (#4421) +* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) +* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) ## [0.6.183] - 2024-01-23 -* UBERF-5018: Search improvements/Indexing fix (#4403) -* UBERF-5024: Add reactions control to inbox (#4414) -* UBERF-5042: Fix exception in list view (#4419) +* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) +* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) +* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) ## [0.6.182] - 2024-01-22 -* EZQMS-527: Expose `EmployeeArrayEditor` from `contact-resources` (#4411) -* UBERF-5012: Remove extra key (avoid reloading after notifications deleting) (#4399)* UBERF-5012: Use flat message view if doc has only one notification (#4410) -* UBERF-5023: Make flat view default (#4409) +* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) +* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) +* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) ## [0.6.181a] - 2024-01-20 -* 🚀 FEATURES: *(test)* Updated flaky tests (#4393) -* QFIX: Remove unused deps (#4394) +* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) +* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) ## [0.6.181] - 2024-01-19 -* EZQMS-457: Added optional ModeSelector to SpecialView (#4381) -* EZQMS-529: Added support for primary/positive/negative kinds for CheckBox and RadioButton (#4384)* EZQMS-529: Added support for `grow` and new `align` display options in `Table` (#4389) -* UBERF-5000: Handle derived tx for security context update (#4391) +* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) +* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) +* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) ## [0.6.180] - 2024-01-18 -* QFIX: Return ActivityMessageHeader, since it is used by github (#4377) -* UBERF-4361: Update inbox ui (#4376) +* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) +* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) ## [0.6.179] - 2024-01-17 -* 🚀 FEATURES: *(tests)* Updated flaky tests (#4367) -* EZQMS-470: Add server side tiptap extension for node uuid (#4358) -* UBER-1188: Fix exception during login/logout (#4364) -* UBERF-4957: Fix status colors (#4369) +* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) +* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) +* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) +* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) ## [0.6.178] - 2024-01-16 -* 🚀 FEATURES: *(tests)* Update Merge contacts test (#4339) -* 🐛 BUG FIXES: *(tests)* Disabled failed tests (#4331) -* QFIX: Change activity onhover (#4336) -* UBER-1187: AnyType field support (#4343) -* UBERF-4360: Rewrite chat (#4265) -* UBERF-4868: Disable draft saving for comment editing (#4332) -* UBERF-4928: Indexing fixes (#4357) +* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) +* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) +* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) +* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) +* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) +* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) +* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) ## [0.6.177] - 2024-01-08 -* UBER-1185: Fix TT migration issues (#4320) -* UBERF-4870: Fixed attribute creation (#4325) +* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) +* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) ## [0.6.175] - 2024-01-05 -* 🚀 FEATURES: *(tests)* Updated tests (#4296) +* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) ## [0.6.174a] - 2023-12-29 -* UBERF-4799: Fix migration tasktype doubling (#4289) +* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) ## [0.6.173] - 2023-12-28 -* 🚀 FEATURES: *(tests)* TESTS-15 done Create a new Company test (#4242)* 🚀 FEATURES: *(tests)* Updated flaky tests (#4244)* 🚀 FEATURES: *(tests)* TESTS-21 done Match to vacancy test (#4268) -* EZQMS-430: Update change document owner popup (#4278) -* TESTS-16: Feat(tests): done Edit a Company test (#4243) -* TESTS-17: Feat(tests): done Delete a Company test (#4252) -* TESTS-20: Feat(tests): done Archive a Vacancy test (#4254) -* TESTS-23: Feat(tests): done Export vacancies tests (#4253) -* TESTS-51: Feat(tests): done Delete a component test (#4234) -* TSK-1668: Side changes from Surveys (#4271) -* UBER-1178: Rework indexing fields (#4261) -* UBERF-4716: Activity info message (#4241) -* UBERF-4729: Fix front service (#4260) -* UBERF-4738: Fix attachments preview (#4259) -* EZQMS-449: Wrap initial collaborator content loading with try-catch (#4256) -* EZQMS-452: Fix issue presenter (#4263) +* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) +* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) +* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) +* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) +* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) +* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) +* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) +* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) +* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) +* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) +* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) +* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) +* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) +* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) ## [0.6.172] - 2023-12-21 -* 🚀 FEATURES: *(tests)* TESTS-48 done Create duplicate issues test (#4225)* 🚀 FEATURES: *(tests)* TESTS-40 done Delete an issue test (#4233) -* TESTS-50: Feat(tests): done Edit a component test (#4232) -* UBERF-4692: Remove activity messages on doc remove (#4227) -* UBERF-4707: Fix activity messages updating (#4238) -* QFIX: Update DropdownLabels for showing dropdown icon (#4230) +* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) +* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) +* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) +* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) +* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) ## [0.6.171] - 2023-12-20 -* 🚀 FEATURES: *(tests)* TESTS-54 done Edit a Milestone test (#4175)* 🚀 FEATURES: *(tests)* TESTS-55 done Delete a Milestone test (#4184)* 🚀 FEATURES: *(tests)* Updated tests (#4185)* 🚀 FEATURES: *(tests)* Updated sanity-ws dump and tests (#4202)* 🚀 FEATURES: *(tests)* TESTS-45 done Move to project test (#4203)* 🚀 FEATURES: *(tests)* Updated tests (#4209)* 🚀 FEATURES: *(tests)* Updated Edit a sub-issue test (#4210)* 🚀 FEATURES: *(tests)* Updated move to project tests (#4214)* 🚀 FEATURES: *(tests)* TESTS-81 done Comment stored test (#4216)* 🚀 FEATURES: *(tests)* Updated flaky tests (#4218)* 🚀 FEATURES: *(tests)* TESTS-106 (#4217)* 🚀 FEATURES: *(tests)* TESTS-41 done Delete a sub-issue test (#4223)* 🚀 FEATURES: *(tests)* Updated tests (#4224) -* EZQMS-440: Fix quality events (#4183) -* TESTS-42: Feat(tests): done Edit Sub-Issue test (#4191) -* TESTS-44: Feat(tests): the Set parent issue test (#4158) -* TESTS-46: Feat(tests): done New related issue test (#4192) -* TESTS-59: Feat(tests): done Create an Issue from template test (#4212) -* TESTS-98: Feat(tests): done Created by filter test (#4161) -* TESTS-99: Feat(tests): done Component filter test (#4162) -* TSK-1668: Survey plugin (#4174) -* UBER-1179: Fix comments saving (#4205) -* UBER-1182: Fix github task types support (#4215)* UBER-1182: Fix task type categories (#4222) -* UBERF-4248: Task type (#4042) -* UBERF-4432: Better notifications for Chunter (#4165) -* UBERF-4610: Fix checkbox behaviour (#4173) -* UBERF-4620: Fix show less triangle (#4182) -* UBERF-4632: Refactor activity classes structure (#4190) -* UBERF-4649: Fix query projection/cache issue (#4200) +* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) +* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) +* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) +* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) +* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) +* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) +* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) +* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) +* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) +* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) +* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) +* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) +* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) +* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) +* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) +* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) +* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) ## [0.6.170] - 2023-12-07 -* TESTS-26: Feat(tests): done Archive Project tests (#4157) -* TESTS-97: Feat(tests): done the Priority filter test (#4156) -* UBERF-4451: Fixed how resolved default location is applied on initial routing (#4159) -* UBERF-4526: Elastic bulk error on re-indexing (#4155) +* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) +* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) +* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) +* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) ## [0.6.169] - 2023-12-06 -* 🚀 FEATURES: *(tests)* Updated sanity-ws dump (#4149)* 🚀 FEATURES: *(tests)* TESTS-95 done Status filter test (#4150) -* TESTS-25: Feat(tests): done Edit project tests (#4138) -* UBERF-4477: Fixed positioning of `AddSavedView` popup (#4148) -* UBERF-4560: Filter out spaces that are archived for kanban (#4147) +* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) +* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) +* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) +* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) ## [0.6.168] - 2023-12-05 -* UBERF-4555: Fix elastic backup/restore (#4144) +* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) ## [0.6.167] - 2023-12-05 -* 🚀 FEATURES: *(tests)* Updated issues.spec.ts test (#4136) -* TESTS-24: Feat(tests): done Create project test (#4126) -* UBER-1144: Fixed estimation time representation used when creating issue and issue template (#4139) -* UBERF-4470: Make SetLabels action available on a single focused issue (#4140) +* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) +* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) +* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) +* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) ## [0.6.166] - 2023-12-04 -* EZQMS-394: Update diff viewer lint button colors (#4115) -* UBERF-4527: Extra logging for client (#4133) +* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) +* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) ## [0.6.165] - 2023-12-02 -* 🚀 FEATURES: *(tests)* TESTS-58 dont test delete template (#4125) -* UBER-1086: Fixed Elastic scroll contexts overflow issue, added tests for Elastic (#4124) -* UBERF-4514: Option for order of activity, pinned first in CommentPopup (#4122) +* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) +* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) +* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) ## [0.6.164] - 2023-12-01 -* 🚀 FEATURES: *(tests)* Done TESTS-93 (#4110) -* EZQMS-403: Displatch value update from EditBox (#4114) -* EZQMS-407: Add Panel post utils slot (#4116) -* UBER-1083: Use hours and minutes to present less than a day durations (#4111) -* UBERF-4493: Mentions. When there is a lot of Applicants it's really difficult to mention employee (#4119) +* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) +* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) +* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) +* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) +* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) ## [0.6.163] - 2023-11-29 -* TESTS: Feat(tests): updated flaky tests (#4106) -* UBER-1006: Support Ref for Vacancies (#4104) -* UBERF-4405: Empty Vacancies' members (#4105) -* UBERF-4478: Set modifiedOn on server for collections tx (#4103) -* UBERF-4486: Fix mention and spotlight categories (#4108) +* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) +* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) +* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) +* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) +* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) ## [0.6.162] - 2023-11-29 -* 🚀 FEATURES: *(tests)* Updated create-vacancy test (#4091) -* EZQMS-398: Fix StringDiffViewer (#4089) -* TESTS-92: Feat(tests): done Tracker filters tests - Modified date (#4094) -* UBERF-4238: Fix calendar utils (#4092) -* UBERF-4428: Add option to disable indexing for a class (#4090) -* UBERF-4446: Move search from text editor (#4093) +* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) +* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) +* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) +* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) +* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) +* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) ## [0.6.161] - 2023-11-28 -* EZQMS-398: Update CollaborationDiffViewer (#4075)* EZQMS-398: Add StringDiffViewer (#4085) -* QFIX: Fix asterisk usage in forms (#4080) -* TESTS-56: Feat(tests): done Create a Template test (#4063) -* TESTS-57: Feat(tests): done Edit a Template test (#4079) -* TESTS-88: Feat(tests): done Add comment from several users test (#4054) -* UBERF-4165: Add search to actions popup (#4057) -* UBERF-4413: Kanban with huge data sets (#4076) -* UBERF-4420: Bump fieldStateId (#4071) +* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) +* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) +* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) +* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) +* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) +* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) +* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) +* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) ## [0.6.160] - 2023-11-27 -* EZQMS-393: Add CollaboratorEditor prop to hide popups (#4051) -* TESTS-89: Feat(tests): working on First user change assignee, second user should see assigned issue test (#4046) +* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) +* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) ## [0.6.159] - 2023-11-24 -* UBER-945: Pinning for comments (#4050) -* UBERF-4384: Update space from attributes (#4049) -* UBERF-4388: Few performance related fixes (#4053) +* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) +* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) +* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) ## [0.6.158] - 2023-11-23 -* EZQMS-368: Fix exit text editor node uuid extension node (#4044) -* TESTS-85: Feat(tests): added issues.spec.ts test (#4025) -* TESTS-87: Feat(tests): done Issues status can be changed by another users test (#4036) -* UBER-1167: Revert All/Active/Backlog for issues (#4047) -* UBER-636: Fix from&to for NewMessage (#4043) -* UBERF-4302: Added footer to Calendar (#4033) -* UBERF-4325: Boost titles (#4023) +* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) +* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) +* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) +* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) +* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) +* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) +* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) ## [0.6.157] - 2023-11-21 -* EZQMS-342: Add text editor configurable active highlighted node (#4019) -* TESTS-71: Feat(tests): updated allure parent suite (#4010) -* UBER-1074: Svelte 4 (#4014) -* UBER-911: Mentions without second input and tabs (#3798) -* UBERF-4229: Fix createAttachments runtime error (#3960) -* UBERF-4324: While indexing is still in progress we see undefined (#4017) -* UBERF-4348: Mentions. Fix render props types and component props types (#4022) +* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) +* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) +* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) +* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) +* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) +* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) +* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) ## [0.6.156] - 2023-11-15 -* 🚀 FEATURES: *(tests)* Updated tracker.loading.spec.ts test (#3989) -* QFIX: Swapping actions between buttons (#3990) -* UBER-1164: Clickable panel on the desktop app (#3988) -* UBERF-4216: Fix query for cases with mixins (#3981) -* UBERF-4287: Fix Indexer peak memory usage (#3993) -* UBERF-4289: Allow to configure user agent (#3995) +* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) +* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) +* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) +* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) +* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) +* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) ## [0.6.155a] - 2023-11-14 -* 🚀 FEATURES: *(ci)* Updated Deploy report to Github Pages flow step (#3984) -* UBERF-4267: Fix mergeQuery, provide a test case for it (#3985) +* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) +* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) ## [0.6.155] - 2023-11-14 -* 🚀 FEATURES: *(tests)* Added allure report for tests (#3944) -* UBERF-4161: Few inbox fixes (#3976) -* UBERF-4205: Updated Panel header layout, custom aside (#3974) -* UBERF-4263: Restore Back and Close button, fixed selectedAside (#3983) +* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) +* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) +* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) +* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) ## [0.6.154a] - 2023-11-10 -* UBER-942: Few skill fixes (#3971) +* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) ## [0.6.154] - 2023-11-10 -* EZQMS-360: Platform changes for document comments highlight sync (#3965) -* UBERF-4136: Fix global actions (#3961) -* UBERF-4195: Fix query after applying viewOptions (#3942) +* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) +* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) +* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) ## [0.6.153] - 2023-11-08 -* UBERF-4136: New issues from command palette (#3956) +* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) ## [0.6.152] - 2023-11-07 -* UBER-1127: Updated status bar layout (#3940) -* UBER-1141: Fixed Comments popup layout (#3946) -* UBER-1159: Fixed horizontal scrolling in Scroller (#3945) -* UBER-1161: Remove async to correctly handle query change (#3951) -* UBER-942: Rework skill optimization (#3941) +* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) +* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) +* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) +* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) +* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) ## [0.6.151] - 2023-11-03 -* EZQMS-350: Fix reactions in threads (#3935) -* UBER-1143: Additional skill parsing, increase timeout for filter (#3933) -* UBER-1157: Some dependant fixes (#3936) +* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) +* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) +* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) ## [0.6.150] - 2023-11-01 -* 🚀 FEATURES: *(tests)* TESTS-39 done edit issue test (#3918) -* QMS: Fix collaborator editor loading (#3920) -* UBER-1116: Saving sidebar changes (#3919) -* UBER-1137: Prevent changes of spaces while kanban drag-and-drop (#3928) -* UBER-1143: Setting for skill import, redirect to talents from skillsView (#3925) -* UBER-1149: Events in team planing fixes (#3922) -* UBERF-18: Add reactions for comments (#3899) -* UBERF-4132: Fix unexpected delete of documents in query (#3921) -* EZQMS-334: More configurations for radio button and radio group (#3917) +* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) +* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) +* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) +* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) +* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) +* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) +* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) +* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) +* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) ## [0.6.149] - 2023-10-30 -* 🚀 FEATURES: *(tests)* TESTS-43 added the Create an issue with all params test (#3905) -* 🐛 BUG FIXES: *(tests)* Updated the today selector for calendar (#3908)* 🐛 BUG FIXES: *(tests)* Updated the today selector for issues page (#3911) -* EZQMS-327: Move inline comments to platform popups (#3909) -* EZQMS-333: Customizable RadioButton label (#3900) -* TESTS-18: Feat(tests): added edit vacancy test (#3901) -* UBER-1101: Updated Separator (Float mode), fixed Scroller visibility (#3902) -* UBER-1146: Fix scrolling in emojis popup (#3912) +* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) +* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) +* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) +* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) +* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) +* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) +* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) ## [0.6.148] - 2023-10-26 -* UBER-1027: Don't update issue space in kanban view (#3895) -* UBER-634: Focus on SelectPopup (#3897) -* UBER-898: Assignee rules and general rules fix (#3894) +* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) +* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) +* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) ## [0.6.147] - 2023-10-26 -* 🚀 FEATURES: *(tests)* Added Change & Save all States test (#3863)* 🚀 FEATURES: *(tests)* TESTS-10 added the Delete the Talent test (#3883) -* EZQMS-306: Add extensions for chunter message version (#3882) -* TESTS-22: Feat(tests): done test Merge Contacts (#3891) -* TESTS-9: Feat(tests): added edit Talent test (#3871) -* UBER-1088: ListItem fix. (#3872) -* UBER-1097: Remove second status editor amd fix done state selection in new Applicant popup (#3869) -* UBER-1099,-1100: Milestone fixes. (#3873) -* UBER-1106,-1108: Update navigator and button layout (#3870) -* UBER-1128: Fix to many requests from query (#3888) -* UBER-1129: Fix list support attached documents properly (#3889) -* UBER-937: Extensibility changes (#3874) -* UBER-942: Fix-skills script (#3876) -* EZQMS-331: Fix disabled button icon style (#3881) +* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) +* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) +* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) +* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) +* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) +* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) +* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) +* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) +* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) +* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) +* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) +* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) +* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) ## [0.6.146] - 2023-10-23 -* 🚀 FEATURES: *(tests)* Added delete application test (#3859) +* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) ## [0.6.145] - 2023-10-19 -* 🚀 FEATURES: *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts (#3847)* 🚀 FEATURES: *(recruiting)* Working on update recruit tests and adding Edit Application test (#3851) -* EZQMS-278: Update comments popups (#3849)* EZQMS-278: Adjust view inline comments UI (#3855) -* EZQMS-291: Fix documents node selections issues (#3845) -* UBER-1085: Improve upgrade tool (#3852) -* UBER-1091: Fix attach button (#3854) -* UBER-921: Improve full text search (#3848) -* UBERF-31: Fix comment edit (#3853) +* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) +* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) +* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) +* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) +* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) +* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) +* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) ## [0.6.144] - 2023-10-16 -* TEXTEDITOR: Refactor attachments (#3833) -* UBER-1052: Fix remainings (#3844) +* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) +* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) ## [0.6.142] - 2023-10-13 -* UBER-1039: Codeblock style fixes. (#3829) -* UBERF-3997: Fix Tab navigation in text editors (#3832) +* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) +* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) ## [0.6.141] - 2023-10-11 -* UBER-1038: Fix flicking during issue creation (#3826) -* UBER-953: Fix related issues (#3821) +* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) +* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) ## [0.6.140] - 2023-10-10 -* QMS: Update inline comments extensions (#3814) -* UBER-984: UI fixes, Panel auto resize (#3818) +* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) +* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) ## [0.6.139a] - 2023-10-09 -* UBER-955: Added Separator component (#3804) +* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) ## [0.6.138] - 2023-10-06 -* QFIX: Child info could be empty (#3785) -* UBER-987: Fix emojis in the middle of something (URLs) (#3790) +* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) +* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) ## [0.6.137] - 2023-10-03 -* EZQMS-279: Remove .ProseMirror global css (#3772) -* UBER-974: Fix saved views and mode in filters (#3780) -* UBER-977: A remaining time (#3783) +* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) +* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) +* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) ## [0.6.136] - 2023-10-02 -* UBER-963: Related issues (#3773) -* UBERF-17: Missing smiles auto-conversion in rich texts :) (#3771) +* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) +* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) ## [0.6.135] - 2023-10-01 -* EZQMS-266: Commenting on document (#3759) -* UBER-920: Fixed drag and drop in Calendar (#3767) -* UBER-939: Speedup table/kanban (#3764) +* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) +* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) +* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) ## [0.6.134] - 2023-09-29 -* CALENDAR: Resize and move event (#3750) -* UBER-845: Add NotificationPresenter to send rich text notifications (#3729) -* UBER-924: Fix file upload progress (#3757) +* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) +* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) +* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) ## [0.6.133] - 2023-09-27 -* UBER-902: Fix transactions (#3748) -* UBER-914: Map to mixin after findAll (#3745) -* UBER-916: Navigation from issue to mentioned issue break description (#3746) -* UBER-923: Fix milestone category selector (#3747) +* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) +* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) +* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) +* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) ## [0.6.132] - 2023-09-26 -* QFIX: Migration (#3734) -* UBER-888: Fixed dragging of the WorkItem (#3735) +* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) +* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) ## [0.6.131] - 2023-09-22 -* UBER-486: Updated people avatars. (#3720)* UBER-486: Replaced avatar colors (#3724) -* UBER-799: Allow extensions to tracker for github (#3727) -* UBER-888: Fixed dragging of the WorkItem (#3730) +* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) +* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) +* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) ## [0.6.130] - 2023-09-20 -* UBER-881: Fix labels list view numbers (#3721) +* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) ## [0.6.129] - 2023-09-20 -* UBER-885: Value filter fix (#3719) +* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) ## [0.6.128] - 2023-09-19 -* UBER-885: Fix Object filter (#3716) +* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) ## [0.6.127] - 2023-09-19 -* UBER-882: Fixed popup (#3713) +* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) ## [0.6.126] - 2023-09-18 -* UBER-784: Updated WorkItemPresenter (#3710) -* UBER-796: Fixed AttachmentActions (#3709) -* UBER-834: Improve list speed (#3692) -* UBER-839: Request the category if it's not in lookup (#3679) -* UBER-841: Allowed to position work item to half hour (#3707) -* UBER-851: Fix titles in ListView (#3678) -* UBER-852: Owner should only see a list of spaces (#3677) -* UBER-854: More proper upgrade notification (#3694) -* UBER-863: Fix employee filter (#3682) -* UBER-869: Fixed mentions in Activity. Fixed messages in Inbox. (#3695) -* UBER-871: Allow to hide/show archived and done in vacancies list (#3701) -* UBER-872: StyleTextEditor: No update when change text in another text (#3698) -* UBERF-81: Replacing the label (#3708) +* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) +* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) +* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) +* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) +* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) +* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) +* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) +* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) +* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) +* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) +* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) +* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) +* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) ## [0.6.125] - 2023-09-11 -* UBER-828: Fix slow value filter (#3676) +* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) ## [0.6.124] - 2023-09-08 -* 🐛 BUG FIXES: Trim cookie string before extracting values (#3652) -* ACTIVITY: Remove inline from presenters. DoneStatesPopup fix. (#3664) -* UBER-564: Add sound notification and settings (#3655) -* UBER-674: The calendar starts from the current time. Calendar fixes. (#3671) -* UBER-795: Updated layout of pop-ups. There is always a Back in the Panel. (#3644)* UBER-795: Replacing the Panel with a Dialog, fix circle button in Kanban. (#3659) -* UBER-807: Multiple github repositories fixes (#3646)* UBER-807: Allow to customize create issue dialog (#3669) -* UBER-832: Fixed DatePresenter (#3653) -* UBER-838: Signout button for inactive accounts (#3662) -* UBERF-55: Change editor toolbar behavior and update icons (#3645) -* UBERF-60: Update styles and presenters. (#3651)* UBERF-60: Updated Rich editor and Activity styles. (#3661)* UBERF-60: Updated inline presenters. (#3663) +* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) +* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) +* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) +* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) +* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) +* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) +* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) +* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) +* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) +* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) ## [0.6.123] - 2023-08-30 -* UBER-675: Updated layout of Radio and Circle button (#3638) -* UBER-816: Fix mentions (#3641) +* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) +* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) ## [0.6.122] - 2023-08-25 -* EZQMS-106: Add elastic search by refs support (#3629) -* UBER-675: Updated pop-ups and components layout (#3631) -* UBER-770: Add custom enum and ref attributes for grouping (#3622) -* UBER-797: Fix popup menu runtime error (#3627) -* UBER-802: Support underline formatting (#3636) -* UBER-803: Fix slow filter (#3634) -* UBER-805: Remove location from grouping (#3635) +* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) +* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) +* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) +* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) +* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) +* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) +* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) ## [0.6.121] - 2023-08-24 -* UBER-667: UI fixes, displaying All day, time editor. (#3619) -* UBER-762: Fix editor popup menu behavior (#3617) -* UBER-772: Require having employee mixin to allow Staff mixin (#3618) +* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) +* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) +* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) ## [0.6.120a] - 2023-08-22 -* 🐛 BUG FIXES: Telegram window not opening (#3615) +* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) ## [0.6.120] - 2023-08-22 -* UBER-773: Fix List search anv Vacancy view (#3614) +* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) ## [0.6.119] - 2023-08-19 -* UBER-600: Fix label, fix colours for boolean presenter (#3608) -* UBER-726: Ask to update if manual update is required (#3602) -* UBER-749: Fix no label for unassigned (#3603) -* UBER-771: Use cookie instead of token for images (#3607) +* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) +* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) +* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) +* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) ## [0.6.118] - 2023-08-17 -* TEAM: Planning UI fixes (#3599) -* UBER-479: Add List view for Vacancies (#3595) -* UBER-500: Confusing Show More button in table (#3590) -* UBER-743: Provide person instead of id as prop (#3592) -* UBER-747: Fix readonly field (#3593) -* UBER-759: Prevent mutations of original object (#3596) +* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) +* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) +* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) +* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) +* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) +* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) ## [0.6.117] - 2023-08-14 -* EZQMS-236: QE templates >> Have the ability to make a section mandatory (#3581) +* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) ## [0.6.116] - 2023-08-10 -* EZQMS-152: Some object selector dropdown items are cut (#3558) -* FIX: Grammatical and stylistic errors (#3552) -* UBER-720: Rework list view to multiple requests (#3578) -* EZQMS-245: Allow configurable languages per deployments (#3579) +* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) +* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) +* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) +* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) ## [0.6.115] - 2023-08-08 -* UBER-653: Open template folder that is enabled (#3573) -* UBER-710: Fix preference notifications (#3574) +* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) +* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) ## [0.6.114] - 2023-08-07 -* UBER-619: StatusPopup for creating/renaming (#3536) -* UBER-665: Rename EmployeeAccount->PersonAccount (#3550) +* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) +* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) ## [0.6.113] - 2023-08-03 -* UBER-532: Copy issue URL works wrong (#3529) -* UBER-628: Allow reordering when sort is set to manual in the same group (#3553) -* UBER-648: Convert project identifier to upper case (#3546) -* UBER-677: Use State for Leads' status (like applicants do) (#3554) +* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) +* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) +* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) +* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) ## [0.6.112b] - 2023-08-01 -* UBER-646: Clear the class when view is changed to prevent using old one (#3541) -* EZQMS-241: Account for parent classes configurations in list view (#3537) +* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) +* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) ## [0.6.112a] - 2023-07-31 -* UBER-641: Fixed DatePopup. (#3535) +* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) ## [0.6.112] - 2023-07-29 -* 🐛 BUG FIXES: Do not shrink expand/collapse icon in tree (#3517) -* ATS-13: Support multiple docs for copying (#3526)* ATS-13: Copy ID action (#3533) -* CALENDAR: Fixed the display of the past days (events) (#3527) -* QFIX: Translate ezqms email confirmation letter to english (#3532) -* TSK-1574: Accurate time reports count (#3509) -* UBER-427: Disable third-nested filters (#3502) -* UBER-550: Clean milestone when moving to another project (#3498) -* UBER-558: Filter out overrides for action popup (#3499) -* UBER-575: Allow per class list view (#3524) -* UBER-593: Hyperlink editor (#3506) -* UBER-601: Fixed accentuation of ObjectPresenter (#3507) -* UBER-609: Fix inbox notification/view for telegram and gmail messages (#3518) -* UBER-614: Fix submenu popups on scrolling (#3530) -* UBER-621: Display field validation rule hint (#3521) -* UBER-642: Use system theme as the default value for application theme (#3534) +* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) +* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) +* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) +* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) +* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) +* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) +* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) +* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) +* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) +* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) +* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) +* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) +* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) +* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) +* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) ## [0.6.111] - 2023-07-13 -* ATS-9: Update states once template updates (#3496) -* TSK-336: Mobile UI adaptation (#3492) -* UBER-524: Cleaned CSS, UI fixes. (#3491) +* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) +* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) +* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) ## [0.6.110] - 2023-07-08 -* UBER-142: Update buttons. Cleaning CSS. (#3482) -* UBER-298: Add readonly users option to the UserBoxItems component (#3481) -* UBER-413: Allow extensible navigator model (#3477) -* UBER-428: Displaying tooltips with a delay (#3442) -* UBER-462: Prevent creating existing enum value and disable the button in that case (#3465) -* UBER-472: Don't update when it's not needed (#3460) -* UBER-473: Show icon for department (#3472) -* UBER-477: Uberflow dependencies (#3440) -* UBER-498: Replace component shortcut (#3441) -* UBER-504: Correct display of optional presenters (#3452)* UBER-504: Fix presenters on ListItem. Add DeviceSizes. (#3463) -* UBER-505: Fix resolve errors in console (#3449) -* UBER-509: Do not update list of unread right after reading (#3461) -* UBER-513: Fix desktop app navigation (#3459) -* UBER-520: Fix images drag & drop (#3453) -* UBER-525: Fixed popup logic placement for top (#3448) -* UBER-528: Fix desktop navigation (#3450) -* UBER-536: Fix test stability (#3466) -* UBER-537: Review support in inbox (#3471) -* UBER-538: Update ListView layout. Subissues, related issues. (#3467)* UBER-538: Fixed ListView and KanbanView. (#3475) -* UBER-554: Show messages with error and allow resending (#3488) -* UBER-560: Filter out current transaction and get mixin (#3480) -* UBER-572: Fixed overflow for emoji. (#3485) -* UBER-573,-574: Updated button styles, fixed ListView (#3484) +* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) +* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) +* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) +* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) +* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) +* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) +* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) +* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) +* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) +* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) +* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) +* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) +* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) +* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) +* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) +* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) +* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) +* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) +* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) +* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) +* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) +* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) +* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) ## [0.6.109] - 2023-06-16 -* UBER-424: Description not saving fix (#3434) -* UBER-450: Update MentionList. (#3431) -* UBER-480: Fix ValueFilter for space-like objects (#3428) -* UBER-482: Fix 'backspace' in inbox for some objects (#3437) -* UBER-485: Implement icons. (#3433) -* UBER-488: Update selected priority on issue switch (#3436) -* UBER-496: Fix few issues (#3439) +* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) +* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) +* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) +* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) +* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) +* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) +* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) ## [0.6.108] - 2023-06-12 -* UBER-417: Replace AddSavedView with select popup, allow renaming (#3423) -* UBER-430: Remove old migrations (#3398) -* UBER-471: Fixed maintenance warining. (#3424) -* UBER-476: Duplicate comment fix (#3425) -* UBER-478: Fix issue presenter concurrency (#3426) +* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) +* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) +* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) +* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) +* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) ## [0.6.107] - 2023-06-09 -* UBER-458: Fix submenu (#3416) -* UBER-459: Remove whereSelected line in dropdowns. (#3417) -* UBER-460: Fix admin view (#3420) +* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) +* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) +* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) ## [0.6.106] - 2023-06-08 -* UBER-158: New popup dialog (#3409) -* UBER-425: Tooltup/popup fixes (#3404) -* UBER-433: Allow tabs within bullets. (#3399) -* UBER-438: Use tracker as default for new users/workspaces (#3403) -* UBER-439: Fix plurals in russian (#3412) -* UBER-440: Fix link error message (#3406) -* UBER-441,-443: Disable fade in Scroller, change color for link and bg for Diff (#3405) -* UBER-442,-452: Fixed login/signup layout, link, mention and backtick. (#3408) -* UBER-453: Update favicons. (#3414) +* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) +* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) +* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) +* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) +* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) +* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) +* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) +* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) +* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) ## [0.6.104] - 2023-06-07 -* UBER-421: Fixed attachment/comment icons (#3392) +* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) ## [0.6.103] - 2023-06-07 -* UBER-395: Allow to drop images into description (#3382) -* UBER-418: Fix object popup a bit (#3377) +* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) +* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) ## [0.6.102] - 2023-06-06 -* UBER-252: Mode int URL in MyLeads/MyApplications (#3347) -* UBER-371: Retina images for login page (#3351) -* UBER-373: Fix blurry avatars and other images (#3353) -* UBER-377: Fix login (#3358) -* UBER-380: Change icon (#3364) -* UBER-383: Fix null/undefined for URI and numbers (#3359) -* UBER-394: Update tiptap plugins (#3368) -* UBER-397: Fix panel activity (#3370) +* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) +* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) +* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) +* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) +* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) +* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) +* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) +* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) ## [0.6.101] - 2023-06-05 -* UBER-263: Use person after creation (#3304) -* UBER-276: New messages and Has messages option for filter (#3326) -* UBER-318: Allow to configure default language (#3342) -* UBER-358: Fix icons (#3338) -* UBER-364: Adapt updated UI (#3348) -* UBER-369: Do not show number of comments if 0 (#3349) +* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) +* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) +* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) +* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) +* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) +* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) ## [0.6.100] - 2023-06-02 -* UBER-137: Fix application search (#3309) -* UBER-170: Navigation for contacts (#3323) -* UBER-172: Fill contact template fields if only one selected (#3299) -* UBER-304: Fixed Navigator (#3312) -* UBER-307,-308,-310,-311,-312: Fixed activity in Inbox (#3298) -* UBER-327: Sub issues/Related issues allow to create from category header (#3317) -* UBER-328: Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. (#3314) -* UBER-331: Fix live query update (#3305) -* UBER-338: Added AppSwitcher popup. (#3329) -* UBER-345: Fixed Inbox. (#3325) +* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) +* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) +* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) +* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) +* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) +* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) +* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) +* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) +* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) +* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) ## [0.6.99] - 2023-05-30 -* UBER-199,-217,-232: Fixed header in ListView, EditMember, ViewOptions (#3273) -* UBER-267: Fix created selection (#3269) -* UBER-270: Enable color more wide (#3279) -* UBER-271: Fix filters (#3293) -* UBER-274,-287,-288,-294: Fixed tooltip, ActionsPopup, ListHeader, activity. (#3282) -* UBER-278: Add Yes-No to popup, refactor (#3289) -* UBER-279: Total qfix (#3281) -* UBER-289: Prevent empty changes to go into transactions. (#3277) -* UBER-295: Fix blur'y popups (#3278) -* UBER-296: Fix create application color selector (#3280) -* UBER-317: Fix issue (#3285) -* UBER-319: Fix vacancy editing (#3290) -* UBER-320: Fix companies filter (#3292) +* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) +* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) +* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) +* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) +* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) +* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) +* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) +* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) +* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) +* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) +* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) +* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) +* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) ## [0.6.98a] - 2023-05-28 -* UBER-268: List views (#3270) -* UBER-269: Fix mini toggle (#3271) +* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) +* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) ## [0.6.98] - 2023-05-27 -* UBER-187: Inline attachments (#3264) -* UBER-218: Fix createOn -> createdOn (#3266) -* UBER-238: Colors should not use alpha channel (#3255) -* UBER-265: Updated application icons (#3263) -* UBER-266: Fix mongo exceptions (#3267) -* UBER-267: Fix Users popup (#3268) -* UBER-53: My Leads view (#3259) -* UBER-64,-231,-229: Updated CreateProject and SelectAvatar layouts, fixed bugs (#3253) +* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) +* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) +* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) +* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) +* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) +* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) +* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) +* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) ## [0.6.97] - 2023-05-24 -* TSK-1523: Fixed IssuePreview (#3231) -* TSK-1525: Fixed VacancyPresenter (#3237) -* UBER-134: Back references (#3233) -* UBER-135/TSK-1430: Allow changing image in PDFViewer through arrow-keys (keyboard) (#3186) -* UBER-148: My Applications in recruit (#3235) -* UBER-159: Popup dialog for deleting with message if not enough permissions (#3224) -* UBER-182: Fix status object filter (#3250) -* UBER-194,-166,-185: Add application icons, fixed Inbox list and mobile layout (#3229) -* UBER-205: More info to Kanban card (due date, assignee, Lead number) (#3251) -* UBER-206: Redefined color palettes (#3243) -* UBER-219: Updated CreateIssue layout (#3244) -* UBER-47: Attributes for base class (ex. contacts in lead's customers) (#3241) -* UBER-49: Custom fields in CreateLead (#3249) -* UBER-50: Remove funnel browser (#3236) +* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) +* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) +* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) +* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) +* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) +* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) +* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) +* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) +* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) +* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) +* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) +* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) +* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) +* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) ## [0.6.96] - 2023-05-21 -* TSK-1257: Split owner name to first and last name fields (#3156) -* TSK-1402: Fix default assignee when creating issues (#3159) -* TSK-1469,-1470: Added SelectAvatars, UserBoxItems components (#3176) -* TSK-1489: Fixed Components, Milestones, IssueTemplates layout (#3220) -* TSK-1500: Enable compression by default (#3177) -* TSK-760: Fix scroll issue for mac (#3173) -* UBER-122: Fix invalid time report shown (#3191) -* UBER-130: Fix expand/collapse on multiple levels (#3198) -* UBER-136: Fix Exception with custom attributes (#3195) -* UBER-144: Fixed showHeader (#3214) -* UBER-174: Introduce createOn every there (#3222) -* UBER-177: Fixed Filter pop-ups (#3225) -* UBER-48: Custom fields for organization in leads (#3203) -* UBER-54: Attempt to Expand/collapse issue fix (#3183) -* UBER-56: Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application (#3196) -* UBER-62: Maintenance warnings (#3210) -* UBER-76: Trigger search after timeout (#3193) -* UBER-81: Fix move project (#3182) -* UBER-83: Add BrowserStack notice into readme (#3178) -* UBER-87: Add new icons (#3188) -* USER-145: Fixed FixedColumn (#3216) -* USER-79: Fixed the sidebar in the Panel. Update IssuePreview layout. (#3201) +* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) +* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) +* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) +* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) +* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) +* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) +* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) +* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) +* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) +* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) +* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) +* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) +* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) +* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) +* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) +* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) +* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) +* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) +* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) +* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) +* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) +* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) ## [0.6.95] - 2023-05-12 -* TSK-1324: Update popups and colors (#3152) -* TSK-1387: Count cancelled sub-issues as completed (#3158) -* TSK-1418: Make issue notification width smaller (#3160) -* TSK-1429: Rework dueDate to ignore overdue in applicants, kanban and right panel (#3169) -* TSK-1432: Fix popup closing (#3170) -* TSK-1436: Change deleting spaces to removing, add action to move all non-valid requests to correct spaces (#3149) -* TSK-1451: Fix focus issues + jump workaround (#3167) -* TSK-1452: Revert sprint statistics display (#3142) -* TSK-1454: Added varieties to the TabList (#3161) -* TSK-1459: Update Panel layout (#3163) -* TSK-742: Use partial binary protocol with ability on/off (#3153) +* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) +* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) +* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) +* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) +* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) +* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) +* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) +* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) +* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) +* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) +* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) ## [0.6.94] - 2023-05-04 -* TSK-1098: My issues list (#3137) -* TSK-1236: Trigger to remove members when deleting department. Fix for already broken departments (#3120) -* TSK-1257: Add sorting by create time (#3138) -* TSK-1409: Bump. client resources 0.6.16 (#3134) -* TSK-831: Edit issue fixes (#3140) +* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) +* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) +* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) +* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) +* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) ## [0.6.93] - 2023-05-04 -* TSK-1251: My issues action. Hotkeys to lower case (#3122) -* TSK-1337: Ui fixes. (#3133) -* TSK-1394,-1407,-1412,-1417,-1422,-1423: Minor fixes. Fixed Scroller. (#3124) -* TSK-1400: Show 0 in total (time spend reports) (#3127) -* TSK-1414: Fix exceptions in Kanban (#3119)* TSK-1414: Fix exceptions in Kanban (#3119) (#3123) -* TSK-1419: Show greyed requests on holidays and weekends (#3121) -* TSK-1431,-1440: Update AttachmentPresenter. Replace colors, minor fixes. (#3131) +* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) +* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) +* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) +* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) +* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) +* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) +* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) ## [0.6.92] - 2023-05-02 -* TSK-1166: Sprint editor action (#3110) -* TSK-1206: Drag-drop statuses between categories (#3112) -* TSK-1324: Update kanban layout (#3118) -* TSK-1339: Resize tooltip for dueDate and ignore overdue in done/cancelled (#3113) -* TSK-1393: Fix status findAll requests extra data (#3105) -* TSK-1405: Fix hover selection (#3109) -* TSK-1406: Correct Configuration defaults (#3107) -* TSK-1410,-1408,-1392,-1389,-1386,-1377: Minor fixes. Update IssueNotification layout. (#3117) +* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) +* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) +* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) +* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) +* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) +* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) +* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) +* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) ## [0.6.91a] - 2023-04-27 -* TSK-1339: Show dueDate for cancelled/done issues (#3091) -* TSK-1378: Qfix for exception (#3097) -* TSK-1381: Show preview and Table mouse hover selection (#3098) +* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) +* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) +* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) ## [0.6.91] - 2023-04-27 -* TSK-1009: Configurable platform (#3055) -* TSK-1066: Don't allow creating requests if already exists for set days (#3053) -* TSK-1068: Update department for Staff via side panel (#3073) -* TSK-1098: All issues related fixes (#3079) -* TSK-1113: Add issueUrl to notification for sub-issues (#3057) -* TSK-1114: Fix default issue status (#3044) -* TSK-1248: Revert changes and add check for unset field (#3054) -* TSK-1311: Add editors for String and Number (#3056) -* TSK-1312: Refit tooltip after loading components inside it (#3083) -* TSK-1314: Fix slow Kanban open (#3052) -* TSK-1323: Fix colors for list (#3069) -* TSK-1342: Reduce number of transfer data and improve Kanban initial render speed (#3078) -* TSK-1353: Update ListView headers. Replaced colors in settings. (#3086) -* TSK-1375: Sub issue selector icons (#3089) -* TSK-571: Fix keyboard list navigation (#3085) +* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) +* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) +* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) +* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) +* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) +* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) +* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) +* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) +* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) +* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) +* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) +* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) +* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) +* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) +* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) ## [0.6.90] - 2023-04-23 -* TSK-1243: Add scroller to project's components list (#3045) +* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) ## [0.6.89] - 2023-04-21 -* TSK-1047: Fix showing requests after moving staff to another department (#3029) -* TSK-1064: Fix export csv in hr (#3032) -* TSK-1237: Improve full text indexer (#3025) -* TSK-1274: Fix Kanban live updates (#3024) +* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) +* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) +* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) +* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) ## [0.6.88] - 2023-04-19 -* TSK-1248: Sort null last for dates (#3021) -* TSK-1252: Dispatch update event for attribute bar (#3017) -* TSK-964: Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes (#3022) +* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) +* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) +* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) ## [0.6.87] - 2023-04-19 -* TSK-1158: Remove component from sprint. Remove logic for changing component on sprint change (#2998) -* TSK-1248: Fix dueDate sorting order (#3013) -* TSK-808: Ignore initial validation when autofilled for login form (#3012) +* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) +* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) +* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) ## [0.6.86] - 2023-04-17 -* TSK-1213: Allow to clean archived vacancies with content (#2999) -* TSK-1216: Fix bitrix import (#3005) -* TSK-753: Open user's department in schedule by default (#3001) +* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) +* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) +* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) ## [0.6.85] - 2023-04-17 -* TSK-1032: Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only (#2964) -* TSK-1201: Fix bitrix migration and too to clean removed transactions (#2995) +* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) +* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) ## [0.6.84] - 2023-04-16 -* TSK-1200: Fix Applications with wrong state (#2992) +* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) ## [0.6.83] - 2023-04-14 -* TSK-1062: Work on Employee and EmployeeAccount migration (#2986) -* TSK-1189: Fix showing all available categories (#2987) -* TSK-1194: Fix filter (#2990) +* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) +* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) +* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) ## [0.6.82] - 2023-04-13 -* TSK-1152: Fix connections mess (#2969) -* TSK-1153: Fix server model load exceptions (#2967) -* TSK-1154: Statuses table support (#2974) -* TSK-1170: Fix transactions retrieval to speedup of workspace open (#2976) +* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) +* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) +* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) +* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) ## [0.6.81] - 2023-04-12 -* TSK-1012: Change text names for Organizations to Companies (#2963) -* TSK-1086: Fix merge (#2961) -* TSK-1141: Fix bitrix fields (#2956) -* TSK-1146: Support initial content text for collaborator doc (#2960) -* TSK-1148: Mixin button for Vacancy and NPE fixes (#2965) -* TSK-1150: Rollback svelte (#2966) +* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) +* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) +* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) +* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) +* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) +* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) ## [0.6.80a] - 2023-04-12 -* TSK-1089: Proper Recruit Archive (#2952) +* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) ## [0.6.80] - 2023-04-11 -* TSK-1040: Support editable for DraggableList (#2932) -* TSK-1072: Fix Created by (#2948) -* TSK-1092: Fix reconnect for Safari (#2929) -* TSK-1093: Fix Application doneState showing (#2927) -* TSK-1106: Update to latest packages (#2943) +* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) +* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) +* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) +* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) +* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) ## [0.6.79] - 2023-04-07 -* TSK-1007: Add comments in talent editor (#2922) -* TSK-1013: Add position field to Employee (#2874) -* TSK-1015: Bitrix Create Vacancy/Application (#2913) -* TSK-1038: Fix comments presenter (#2896) -* TSK-1062: Fix merge properly (#2919) -* TSK-1065: Check model version (#2916) -* TSK-1088: Show Kanban counters (#2924) -* TSK-943: General Status support (#2842) -* TSK-990: Remove Back button in settings (#2875) -* TSK-1040: Support draft for DraggableList (#2898) +* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) +* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) +* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) +* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) +* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) +* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) +* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) +* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) +* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) +* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) ## [0.6.78] - 2023-04-03 -* TSK-1010: Change color for New Customer button (#2870) -* TSK-950: Remove value from filter if the object doesn't exist (#2852) +* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) +* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) ## [0.6.77] - 2023-03-31 -* TSK-839: Fix localization strings (#2833) -* TSK-903: Do not allow saving if set to private with no members (#2854) -* TSK-916: Fix attribute errors in console (#2839) -* TSK-942: Add hours to current time (#2837) -* TSK-955: Fix status display (#2840) -* TSK-960: Move for issues (#2846) -* TSK-963: Show avatar on comments (#2857) -* TSK-976: Hide preview action (#2847) -* TSK-983: Fix Cache control for index pages (#2850) -* TSK-987: Show filter with 0 value (#2855) -* TSK-988: Sticky first column in hr calendar (#2867) -* TSK-989: Transparent requests (PTO, extra, etc.) when not in department or it's descendants (#2861) -* TSK-992: Fix column name in Companies (#2860) +* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) +* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) +* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) +* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) +* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) +* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) +* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) +* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) +* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) +* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) +* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) +* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) +* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) ## [0.6.76a] - 2023-03-24 -* TSK-897: Allow team-leads and managers to edit descendant departments (#2825) -* TSK-941: Fix incorrect rewriting space after selecting in SpaceSelect (#2827) +* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) +* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) ## [0.6.76] - 2023-03-24 -* TSK-745: Do not allow changing previous months events (Requests and public holidays) (#2796) -* TSK-811: Fix for undefined when saving platform last location (#2790) -* TSK-813: Fix input width and remove divider for time report popup (#2794) -* TSK-825: Client proper reconnection (#2797) -* TSK-831: Edit Title and Description inline (#2788) -* TSK-858: Send picture without text as comment for issues (#2793) -* TSK-885: Fix invalid deps (#2777) -* TSK-912: Notifications on removing the request (#2806) -* TSK-915: Tracker status (#2802) -* TSK-920: Rename CreatedBy field (#2807) -* TSK-924: Follow proper order for Tracker Kanban (#2815) -* TSK-934: Redirect to last location on opening main page (#2817) -* TSK-937: Fix tooltip for employee (#2822) +* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) +* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) +* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) +* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) +* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) +* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) +* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) +* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) +* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) +* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) +* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) +* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) +* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) ## [0.6.75b] - 2023-03-21 -* TSK-894: Fix template creation and apply (#2785) -* TSK-895: Allow to mention only active employees (#2786) +* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) +* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) ## [0.6.75a] - 2023-03-21 -* TSK-877: Show only Candidates for Application creation dialog (#2784) -* TSK-889: Fix hang and displayName search for Employee (#2783) +* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) +* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) ## [0.6.75] - 2023-03-21 -* TSK-811: Show last workspace location after switching/opening workspace (#2776) -* TSK-813: Remove WorkDayLength and change time reports to hours (#2763) -* TSK-859: Replacing icons. TSK-883: Pop-up for viewing images. (#2782) -* TSK-871: Fix overtime display (#2769) -* TSK-879: Fix empty assignee selection (#2774) -* TSK-890: Fix component icons (#2778) -* TSK-891: Fix UI Tests instability (#2780) +* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) +* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) +* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) +* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) +* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) +* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) +* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) ## [0.6.74] - 2023-03-17 -* TSK-812: Opening images in the center. Minor design corrections. (#2755) -* TSK-857: Create company button (#2762) +* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) +* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) ## [0.6.73a] - 2023-03-16 -* TSK-568: User-friendly message on join for expired links (#2752) -* TSK-802: Save token to array (#2754) -* TSK-807: Query only active Employees (#2753) -* TSK-849: Show labels in list (#2749) +* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) +* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) +* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) +* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) ## [0.6.73] - 2023-03-16 -* TSK-791: Handle department's public holidays + add stats for it (#2735) -* TSK-827: Rename Process to Pattern (#2740) -* TSK-837: Fix backup OOM (#2732) -* TSK-838: Created by (#2742) -* TSK-842: Fix resume recognition functionality (#2736) -* TSL-840: Fixed the display of Filtered views (#2743) +* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) +* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) +* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) +* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) +* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) +* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) ## [0.6.72a] - 2023-03-13 -* TSK-803: Fix load speed (#2728) +* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) ## [0.6.69b] - 2023-03-02 -* TSK-761: Team default assignee (#2706) -* TSK-769: Fix channel editor (#2704) +* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) +* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) ## [0.6.69] - 2023-03-01 -* TSK-517: Show 'Last Modified' instead of 'Date' for attachments (#2696) -* TSK-713: Notifications for DM (#2695) -* TSK-728: Server reconnect support (#2689) -* TSK-734: Fix Bitrix email import (#2700) +* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) +* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) +* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) +* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) ## [0.6.68] - 2023-02-22 -* EZQ-49: Update collaborator (#2677) -* TSK-544: Search by issue number and description (#2675) +* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) +* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) ## [0.6.67] - 2023-02-20 -* TSK-467: Throw error when used for AttachedDoc (#2649) -* TSK-637: Add login and recovery action (#2654) -* TSK-678: Update First/Last names (#2652) -* TSK-679: Add Whatsapp (#2651) -* TSK-685: Prioritise selection when focus exists (#2648) +* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) +* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) +* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) +* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) +* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) ## [0.6.65] - 2023-02-10 -* TSK-651: Fix Team editing (#2611) +* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) ## [0.6.64] - 2023-02-08 -* TSK-413: Implement scrum recording (#2550) -* TSK-570: Fix RelatedIssues (#2596) -* TSK-608: Move Vacancy support. (#2597) +* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) +* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) +* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) ## [0.6.61] - 2023-01-30 -* TSK-476: Bitrix import fixes (#2548) -* TSK-569: Fix MarkupPresenter, ShowMore (#2553) +* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) +* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) ## [0.6.57] - 2023-01-24 -* TSK-553: Fix padding in assignee popup (#2531) +* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) ## [0.6.55] - 2023-01-20 -* TSK-360: Assignee selection enhancements (#2509) +* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) ## [0.6.53a] - 2022-12-30 -* TSK-507: Assignee box Direction line is hidden to early (#2485) +* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) ## [0.6.52] - 2022-12-22 -* TSK-485: Calendar Year/Month summary (#2465) +* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) ## [0.6.51] - 2022-12-21 -* TSK-473: Added tracker layout sanity tests (#2452) +* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) ## [0.6.50] - 2022-12-16 -* TSK-487: Resume draft stuck in Resume state (#2443) +* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) ## [0.6.49] - 2022-12-15 -* TSK-344: Draft for new Candidate/Person etc (#2432) -* TSK-425: Supported team settings (#2406) -* TSK-461: Refactor Tracker/Remember Issues (#2425) +* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) +* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) +* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) ## [0.6.48] - 2022-12-07 -* TSK-343: Remember unfinished comment per document (#2400) -* TSK-458: Create of sub-issue not show Issue created notification (#2419) +* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) +* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) ## [0.6.47] - 2022-12-02 -* TSK-419: Update workspaces while open menu (#2413) +* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) ## [0.6.46] - 2022-11-29 -* ACTIVITY: Filters (#2395) +* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) ## [0.6.45] - 2022-11-24 -* TSK-397: Fixed time report round (#2389) -* TSK-418: Added working day option (#2393) -* TSK-421: Improve Core testing and coverage (#2387) -* TSK-435: Fix create issue edit focus lost. (#2396) +* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) +* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) +* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) +* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) ## [0.6.44] - 2022-11-22 -* HR: Update Schedule layout. Fix tooltip and popup. (#2388) -* TSK-399: Allow to delete sprints (#2386) -* TSK-420: Fixed time report placeholders (#2390) +* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) +* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) +* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) ## [0.6.41] - 2022-11-12 -* TSK-363: Fixed multiple no sprint category (#2352) -* TSK-364: Fixed filter updates for collapse issues state (#2355) +* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) +* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) ## [0.6.40] - 2022-11-02 -* TSK-212: Add notification on issue created (#2325) -* TSK-342: Add resume issue function (#2332) +* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) +* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) ## [0.6.34] - 2022-08-25 -* TRACKER: Enlarged headers (#2259) +* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) ## [0.6.33a] - 2022-08-22 -* HR: When hovering over a cell, the day is highlighted. (#2253) +* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) ## [0.6.31] - 2022-07-19 -* TSK-268: Supported expandable for issue list (#2222) +* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) ## [0.6.30c] - 2022-07-10 -* TRACKER: Fix issue status colors in the kanban view (#2231)* TRACKER: Refactor ViewOptions (#2228) +* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) ## [0.6.30b] - 2022-07-07 -* BOARD: Fix show popup actions (#2211) -* TRACKER: Fix colors for issue status icons (#2203)* TRACKER: Fix kanban query (#2204)* TRACKER: Updated status icons (#2215)* TRACKER: Labels on the card. (#2221)* TRACKER: Hide inbox / views (#2224) +* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) +* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) ## [0.6.30a] - 2022-07-04 -* HR: Update schedule layout (#2202) -* USERBOX: Clean up selected for user box on value change (#2199) +* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) +* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) ## [0.6.30] - 2022-07-02 -* AUTOMATION: Disable UI (#2158) -* BOARD: Remove server plugin (#2159) -* EDITBOX: Fixed size calculation (#2181) -* HR: Update values on blur (#2161) -* TRACKER: Fix extra refresh (#2160)* TRACKER: Add relation (#2174)* TRACKER: Workflow statuses (#2171)* TRACKER: Add issues up/down navigator (#2188) +* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) +* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) +* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) +* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) +* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) ## [0.6.29b] - 2022-06-27 -* CHUNTER: Open message links without reload (#2124) +* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) ## [0.6.29a] - 2022-06-27 -* TRACKER: Parent issues name (#2136)* TRACKER: Sync project with parent (#2137) +* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) ## [0.6.29] - 2022-06-25 -* ACTIVITY: Fix comments display (#2143) -* AUTOMATION: Initial support (#2134) -* TRACKER: Issues search (#2129)* TRACKER: Introduce Roadmap (#2139) -* UI: Refactor (#2127) +* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) +* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) +* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) +* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) ## [0.6.28] - 2022-06-20 -* BOARD: Fix header (#2098) -* CHUNTER: Copy link to message (#2078) -* TRACKER: Fix status editor (#2097) +* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) +* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) +* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) ## [0.6.27] - 2022-06-15 -* CHUNTER: Add button for link formatting (#2063) -* TSK-112: Fix workbench switch (#2074) -* TSK-81: Disable State delete action (#2076) -* TAGS: Fix collection editor (#2080)* TAGS: Add inline editor (#2081) -* TRACKER: Add priority to sub-issues (#2054) +* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) +* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) +* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) +* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) +* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) ## [0.6.26] - 2022-06-10 -* BOARD: Fix tags/labels for board table view (#2045)* BOARD: Fix attribute views for tags (#2046)* BOARD: Update popups style (#2043)* BOARD: Add labels view (#2047) +* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) ## [0.6.25] - 2022-06-08 -* TRACKER: Added Projects to the card (#2023)* TRACKER: Updating cards in Kanban (#2032)* TRACKER: Add "Show Sub-issues" toggle into issue list (#2033) +* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) ## [0.6.24] - 2022-06-07 -* PANEL: Remove full size. Fix popup. (#2007) -* TRACKER: Add project issue list view (#2012) +* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) +* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) ## [0.6.23] - 2022-06-03 -* BOARD: Update server-plugin for task to subscribe to updates on create & update (#1925) -* FLITERBAR: Remove save button (#1937) -* SCROLLER: Added autohide. Fixed track height when displaying table and colors. (#1964) -* TRACKER: Change "Issue" type to "AttachedDoc" (#1875)* TRACKER: Add Sub-issues list (#1989)* TRACKER: Fix console errors in the Issue Editor (#2001) +* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) +* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) +* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) +* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) ## [0.6.22] - 2022-05-29 -* BOARD: Update actions (#1859)* BOARD: Fix cover presenter (#1872)* BOARD: Checklist item dnd support (#1873) -* HR: Issue fixes (#1891) -* TRACKER: Add "Parent Issue" control to the "Edit Issue" dialog (#1857) +* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) +* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) +* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) ## [0.6.21] - 2022-05-24 -* CONTACTS: Type Filter (#1855) +* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) ## [0.6.20] - 2022-05-23 -* BOARD: Update card (#1826) +* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) ## [0.6.19] - 2022-05-22 -* BOARD: Add TableView (#1760)* BOARD: Use Standard actions (#1766)* BOARD: Add checklists info (#1772)* BOARD: Add checklist assignee (#1778)* BOARD: Add convert checklist to card action (#1805) -* CHUNTER: Convert direct message to private channel (#1752)* CHUNTER: Open dm on creation if already exists (#1773)* CHUNTER: Formatting (#1804) -* EDITISSUE: Fix "Due date" button style. (#1824) -* HR: Fixes to Vacancy/Application creation (#1753) -* TELEGRAM: Latest messages below. Update AttachmentPreview layout. (#1768) -* TRACKER: Project - Project selector (#1740)* TRACKER: Split "edit issue" dialog to preview / edit (#1731)* TRACKER: Project - Editors (#1779)* TRACKER: Project - Project status buttons (#1793)* TRACKER: Add context menu to the "EditIssue" dialog (#1788)* TRACKER: "Edit Issue" dialog adjustments (#1810) +* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) +* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) +* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) +* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) +* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) +* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) ## [0.6.18] - 2022-05-15 -* BOARD: Initial checklist support (#1672)* BOARD: Refactor AddPanel with TextAreaEditor (#1720)* BOARD: Fix copy from message* BOARD: Fix push/pull activity (#1718) -* CHUNTER: User status (#1608) (#1692) -* TRACKER: Issue filters - additional features (#1708) +* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) +* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) +* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) ## [0.6.15] - 2022-05-05 -* BOARD: Remove stale left panel items (#1574)* BOARD: Fix card members update (#1620)* BOARD: Checklists model adjustments (#1633) -* CHUNTER: File browser additional fixes (#1547)* CHUNTER: Download file action (#1570)* CHUNTER: FileBrowser - add grid view (#1571)* CHUNTER: FileBrowser - replace px with rem (#1582)* CHUNTER: Remove attachments only for creator (#1552)* CHUNTER: Private channel & add channel members ui (#1524) (#1589) -* EDITISSUE: Add due date to the right panel (#1272) (#1642) -* TRACKER: Fix IssuesList selection (#1578)* TRACKER: Rewrite AssigneePresenter (#1568)* TRACKER: Fix issue status view for "Activity" (#1632)* TRACKER: Fix issue priority view for "Activity" (#1635)* TRACKER: Issue filters - main functionality (#1640) +* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) +* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) +* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) +* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) ## [0.6.14] - 2022-04-26 -* BOARD: Add open card inline menu (#1511)* BOARD: Handle labels when move card to another board (#1538)* BOARD: Make context menu consistent (#1542) -* CHUNTER: Avatars in dm header and highlight on first message (#1499)* CHUNTER: Saved attachments (#1515) -* TRACKER: Add keyboard support for issues list (#1539) +* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) +* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) +* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) ## [0.6.13] - 2022-04-24 -* BOARD: Add create / edit card label popup* BOARD: Fix lint issues* BOARD: Update Date Presenter to reuse as presenter* BOARD: Fix formatting* BOARD: Use / for card labels update* BOARD: Use for join action* BOARD: Add labels & members & date to Kanban Card (#1462)* BOARD: Fix popup alignments (#1467)* BOARD: Add attachment action (#1474)* BOARD: Extend popup positioning for Kanban card (#1483)* BOARD: Add kanban card edit mode (#1484) -* CHUNTER: Saved messages (#1466)* CHUNTER: Direct messages (#1472)* CHUNTER: File browser (#1407) (#1488) -* TRACKER: View options - Grouping (#1442)* TRACKER: Status should be positioned at same offset (#1464)* TRACKER: View options - Completed issues period, empty groups display (#1490)* TRACKER: Move "IssueStatus" enum into model (#1449) +* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) +* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) +* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) ## [0.6.12] - 2022-04-18 -* BOARD: Create board labels (#1426)* BOARD: Add card labels picker popup (#1434) -* CHUNTER: Archive channel (#1416) +* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) +* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) ## [0.6.11] - 2022-04-17 -* BOARD: Design card editor (initial) (#1292)* BOARD: 1265: Make Card Actions extensible (#1319)* BOARD: Update board card model (#1329)* BOARD: Add new card actions + Join Card Action example (#1335)* BOARD: Add card details (members, labels, date) (#1376)* BOARD: Add button shape and title props (#1381)* BOARD: Fix card live updates (#1403)* BOARD: Add attachments support* BOARD: Fix labels model (#1405)* BOARD: Fix infinite loop in Activity component for space update (#1417) -* CHUNTER: Channel attributes (#1334)* CHUNTER: Delete message (#1336)* CHUNTER: Update channel last message and close thread on deletion from other user (#1389)* CHUNTER: Pin messages (#1396)* CHUNTER: Attachments table in channel description (#1402)* CHUNTER: Attachments and format updates (#1410)* CHUNTER: Show "edited" label and cancel button (#1411) -* TRACKER: Board view (#1325)* TRACKER: Issues list view (#1313)* TRACKER: Issue List – Priority presenter (#1382)* TRACKER: Improve CheckBox (#1356)* TRACKER: Issue List – Status presenter (#1383)* TRACKER: Issue List – Assignee presenter (#1384)* TRACKER: Issue List - DueDate presenter (#1393) +* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) +* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) +* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) ## [0.6.8] - 2022-03-19 -* UPD: DataPicker with region selection. Presenters. (#1153) +* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) ## [0.6.0] - 2021-11-22 -* CLEAN: Package.json +* CLEAN: · Package.json diff --git a/cliff.toml b/cliff.toml index 23dab105126..49c002d8784 100644 --- a/cliff.toml +++ b/cliff.toml @@ -20,10 +20,11 @@ body = """ ## [unreleased]\n {% endif %}\ {% for group, commits in commits | group_by(attribute="group") %}\ - {% for commit in commits %}\ - * {{ group | striptags | trim | upper }}: {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ + * {{ group | striptags | trim | upper }}: \ + {% for commit in commits %}\ + · {% if commit.scope %}*({{ commit.scope }})* {% endif %}\ {% if commit.breaking %}[**breaking**] {% endif %}\ - {{ commit.message | trim | upper_first }}\ + {{ commit.message | trim | upper_first }} \ {% endfor %} {% endfor %}\n """ @@ -47,11 +48,8 @@ filter_unconventional = true split_commits = false # regex for preprocessing the commit messages commit_preprocessors = [ - # Replace issue numbers - #{ pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](/issues/${2}))"}, - # Check spelling of the commit with https://github.com/crate-ci/typos - # If the spelling is incorrect, it will be automatically fixed. - #{ pattern = '.*', replace_command = 'typos --write-changes -' }, + { pattern = '\((\w+\s)?#([0-9]+)\)', replace = "([#${2}](https://github.com/hcengineering/platform/issues/${2}))"}, + { pattern = "Merge pull request #([0-9]+) from [^ ]+", replace = "PR [#${1}](https://github.com/hcengineering/platform/pull/${1}):"}, ] # regex for parsing and grouping commits commit_parsers = [ From 927885c2ad56ea901a58c4d3ecb126973d9076e0 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 21 Aug 2024 22:34:30 +0700 Subject: [PATCH 049/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 85524c9fb26..4bde236614f 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.281" +"0.6.283" From 718bda4128239f10fa85cd02a8a6f2a9374ac371 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 23 Aug 2024 14:35:14 +0700 Subject: [PATCH 050/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 4bde236614f..d824d877eba 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.283" +"0.6.284" From 3600b787f23acb026aa3262c4b3365b0d2685637 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 23 Aug 2024 14:36:03 +0700 Subject: [PATCH 051/149] Fix changelog Signed-off-by: Andrey Sobolev --- changelog.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/changelog.md b/changelog.md index cd13b816aa1..f352d77ba04 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,19 @@ Changelog. +## [0.6.284] - 2024-08-23 + +* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) +* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) + +## [0.6.283] - 2024-08-21 + +* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) + +## [0.6.281a] - 2024-08-21 + +* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) + ## [0.6.281] - 2024-08-20 * 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) From 44910a55871ceb42d42c366b3616c2cde1ecf94e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 27 Aug 2024 15:04:32 +0700 Subject: [PATCH 052/149] Update readme / disable CI build for main commits Signed-off-by: Andrey Sobolev --- .github/workflows/main.yml | 2 +- changelog.md | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d4f3a98cd78..dce6119f4f9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,7 @@ concurrency: on: # Triggers the workflow on push or pull request events but only for the main branch push: - branches: [develop, main] + branches: [develop] tags: - v* pull_request: diff --git a/changelog.md b/changelog.md index f352d77ba04..2de0b6c40e2 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,17 @@ Changelog. +## [0.6.285] - 2024-08-27 + +* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) +* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) +* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) + +## [0.6.284a] - 2024-08-26 + +* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) +* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) + ## [0.6.284] - 2024-08-23 * 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) From 1ad325286c29cc06c6d618749475ab7e86cb4933 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 27 Aug 2024 15:08:24 +0700 Subject: [PATCH 053/149] Bump version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index d824d877eba..ce81dab5806 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.284" +"0.6.285" From 08bee57dbed57582e75f6921dca77808f6e99bc7 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 28 Aug 2024 21:45:36 +0700 Subject: [PATCH 054/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index ce81dab5806..66e0e5b06bb 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.285" +"0.6.286" From a9a9ab7a50ae6f9598d595fdcf2b27b5c7f1d938 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 28 Aug 2024 21:46:19 +0700 Subject: [PATCH 055/149] Update changelog Signed-off-by: Andrey Sobolev --- changelog.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/changelog.md b/changelog.md index 2de0b6c40e2..46bc32190f6 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,15 @@ Changelog. +## [0.6.286] - 2024-08-28 + +* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) +* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) + +## [0.6.285a] - 2024-08-27 + +* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) + ## [0.6.285] - 2024-08-27 * 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) From 0211f8b6caad4230a5be521721ccf0ee02dd6d94 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 29 Aug 2024 00:18:05 +0700 Subject: [PATCH 056/149] Bump version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 66e0e5b06bb..84656673f0a 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.286" +"0.6.287" From 4179cc945408a23f5e54acd8c68885cdfe043a8c Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Mon, 2 Sep 2024 18:30:50 +0700 Subject: [PATCH 057/149] Add move/copy flag to file moving tool (#6459) Signed-off-by: Alexander Onnikov --- dev/tool/src/index.ts | 24 +++++++++++++++++------- dev/tool/src/storage.ts | 35 ++++++++++++++++------------------- 2 files changed, 33 insertions(+), 26 deletions(-) diff --git a/dev/tool/src/index.ts b/dev/tool/src/index.ts index 3a13e78bb22..e8ec0c284ff 100644 --- a/dev/tool/src/index.ts +++ b/dev/tool/src/index.ts @@ -990,11 +990,18 @@ export function devTool ( program .command('move-files') .option('-w, --workspace ', 'Selected workspace only', '') + .option('-m, --move ', 'When set to true, the files will be moved, otherwise copied', 'false') .option('-bl, --blobLimit ', 'A blob size limit in megabytes (default 50mb)', '50') .option('-c, --concurrency ', 'Number of files being processed concurrently', '10') - .action(async (cmd: { workspace: string, blobLimit: string, concurrency: string }) => { + .action(async (cmd: { workspace: string, move: string, blobLimit: string, concurrency: string }) => { + const params = { + blobSizeLimitMb: parseInt(cmd.blobLimit), + concurrency: parseInt(cmd.concurrency), + move: cmd.move === 'true' + } + const { mongodbUri } = prepareTools() - await withDatabase(mongodbUri, async (db, client) => { + await withDatabase(mongodbUri, async (db) => { await withStorage(mongodbUri, async (adapter) => { try { const exAdapter = adapter as StorageAdapterEx @@ -1004,17 +1011,20 @@ export function devTool ( console.log('moving files to storage provider', exAdapter.defaultAdapter) + let index = 1 const workspaces = await listWorkspacesPure(db) + workspaces.sort((a, b) => b.lastVisit - a.lastVisit) + for (const workspace of workspaces) { if (cmd.workspace !== '' && workspace.workspace !== cmd.workspace) { continue } - const wsId = getWorkspaceId(workspace.workspace) - await moveFiles(toolCtx, wsId, exAdapter, { - blobSizeLimitMb: parseInt(cmd.blobLimit), - concurrency: parseInt(cmd.concurrency) - }) + console.log('start', workspace, index, '/', workspaces.length) + await moveFiles(toolCtx, getWorkspaceId(workspace.workspace), exAdapter, params) + console.log('done', workspace) + + index += 1 } } catch (err: any) { console.error(err) diff --git a/dev/tool/src/storage.ts b/dev/tool/src/storage.ts index 27f7e23792d..8393d5feec5 100644 --- a/dev/tool/src/storage.ts +++ b/dev/tool/src/storage.ts @@ -20,6 +20,7 @@ import { PassThrough } from 'stream' export interface MoveFilesParams { blobSizeLimitMb: number concurrency: number + move: boolean } export async function moveFiles ( @@ -30,36 +31,33 @@ export async function moveFiles ( ): Promise { if (exAdapter.adapters === undefined) return - console.log('start', workspaceId.name) + const target = exAdapter.adapters.get(exAdapter.defaultAdapter) + if (target === undefined) return // We assume that the adapter moves all new files to the default adapter - const target = exAdapter.defaultAdapter - await exAdapter.adapters.get(target)?.make(ctx, workspaceId) + await target.make(ctx, workspaceId) for (const [name, adapter] of exAdapter.adapters.entries()) { - if (name === target) continue + if (name === exAdapter.defaultAdapter) continue console.log('moving from', name, 'limit', params.blobSizeLimitMb, 'concurrency', params.concurrency) // we attempt retry the whole process in case of failure // files that were already moved will be skipped await retryOnFailure(ctx, 5, async () => { - await processAdapter(ctx, exAdapter, adapter, workspaceId, params) + await processAdapter(ctx, exAdapter, adapter, target, workspaceId, params) }) } - - console.log('...done', workspaceId.name) } async function processAdapter ( ctx: MeasureContext, exAdapter: StorageAdapterEx, - adapter: StorageAdapter, + source: StorageAdapter, + target: StorageAdapter, workspaceId: WorkspaceId, params: MoveFilesParams ): Promise { - const target = exAdapter.defaultAdapter - let time = Date.now() let processedCnt = 0 let processedBytes = 0 @@ -70,21 +68,20 @@ async function processAdapter ( const rateLimiter = new RateLimiter(params.concurrency) - const iterator = await adapter.listStream(ctx, workspaceId) + const iterator = await source.listStream(ctx, workspaceId) try { while (true) { const data = await iterator.next() if (data === undefined) break - const blob = - (await exAdapter.stat(ctx, workspaceId, data._id)) ?? (await adapter.stat(ctx, workspaceId, data._id)) + const blob = (await exAdapter.stat(ctx, workspaceId, data._id)) ?? (await source.stat(ctx, workspaceId, data._id)) if (blob === undefined) { console.error('blob not found', data._id) continue } - if (blob.provider !== target) { + if (blob.provider !== exAdapter.defaultAdapter) { if (blob.size <= params.blobSizeLimitMb * 1024 * 1024) { await rateLimiter.exec(async () => { try { @@ -92,7 +89,7 @@ async function processAdapter ( ctx, 5, async () => { - await processFile(ctx, exAdapter, adapter, workspaceId, blob) + await processFile(ctx, source, params.move ? exAdapter : target, workspaceId, blob) }, 50 ) @@ -143,18 +140,18 @@ async function processAdapter ( async function processFile ( ctx: MeasureContext, - exAdapter: StorageAdapterEx, - adapter: StorageAdapter, + source: Pick, + target: Pick, workspaceId: WorkspaceId, blob: Blob ): Promise { - const readable = await adapter.get(ctx, workspaceId, blob._id) + const readable = await source.get(ctx, workspaceId, blob._id) try { readable.on('end', () => { readable.destroy() }) const stream = readable.pipe(new PassThrough()) - await exAdapter.put(ctx, workspaceId, blob._id, stream, blob.contentType, blob.size) + await target.put(ctx, workspaceId, blob._id, stream, blob.contentType, blob.size) } finally { readable.destroy() } From 495644c8f0261926df336ff60899b9f973b30bef Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Wed, 4 Sep 2024 01:22:39 +0700 Subject: [PATCH 058/149] Sync files tool (#6478) Signed-off-by: Alexander Onnikov --- dev/tool/src/index.ts | 40 +++++++++++++++++++++++++++++++++++++--- dev/tool/src/storage.ts | 41 +++++++++++++++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+), 3 deletions(-) diff --git a/dev/tool/src/index.ts b/dev/tool/src/index.ts index e8ec0c284ff..3862426012f 100644 --- a/dev/tool/src/index.ts +++ b/dev/tool/src/index.ts @@ -93,7 +93,7 @@ import { changeConfiguration } from './configuration' import { fixJsonMarkup, migrateMarkup } from './markup' import { fixMixinForeignAttributes, showMixinForeignAttributes } from './mixin' import { fixAccountEmails, renameAccount } from './renameAccount' -import { moveFiles } from './storage' +import { moveFiles, syncFiles } from './storage' const colorConstants = { colorRed: '\u001b[31m', @@ -1020,9 +1020,43 @@ export function devTool ( continue } - console.log('start', workspace, index, '/', workspaces.length) + console.log('start', workspace.workspace, index, '/', workspaces.length) await moveFiles(toolCtx, getWorkspaceId(workspace.workspace), exAdapter, params) - console.log('done', workspace) + console.log('done', workspace.workspace) + + index += 1 + } + } catch (err: any) { + console.error(err) + } + }) + }) + }) + + program + .command('sync-files') + .option('-w, --workspace ', 'Selected workspace only', '') + .action(async (cmd: { workspace: string }) => { + const { mongodbUri } = prepareTools() + await withDatabase(mongodbUri, async (db) => { + await withStorage(mongodbUri, async (adapter) => { + try { + const exAdapter = adapter as StorageAdapterEx + + console.log('syncing files from storage provider') + + let index = 1 + const workspaces = await listWorkspacesPure(db) + workspaces.sort((a, b) => b.lastVisit - a.lastVisit) + + for (const workspace of workspaces) { + if (cmd.workspace !== '' && workspace.workspace !== cmd.workspace) { + continue + } + + console.log('start', workspace.workspace, index, '/', workspaces.length) + await syncFiles(toolCtx, getWorkspaceId(workspace.workspace), exAdapter) + console.log('done', workspace.workspace) index += 1 } diff --git a/dev/tool/src/storage.ts b/dev/tool/src/storage.ts index 8393d5feec5..1dc0f55d96c 100644 --- a/dev/tool/src/storage.ts +++ b/dev/tool/src/storage.ts @@ -23,6 +23,47 @@ export interface MoveFilesParams { move: boolean } +export async function syncFiles ( + ctx: MeasureContext, + workspaceId: WorkspaceId, + exAdapter: StorageAdapterEx +): Promise { + if (exAdapter.adapters === undefined) return + + for (const [name, adapter] of exAdapter.adapters.entries()) { + await adapter.make(ctx, workspaceId) + + await retryOnFailure(ctx, 5, async () => { + let time = Date.now() + let count = 0 + + const iterator = await adapter.listStream(ctx, workspaceId) + try { + while (true) { + const data = await iterator.next() + if (data === undefined) break + + const blob = await exAdapter.stat(ctx, workspaceId, data._id) + if (blob !== undefined) continue + + await exAdapter.syncBlobFromStorage(ctx, workspaceId, data._id, name) + + count += 1 + if (count % 100 === 0) { + const duration = Date.now() - time + time = Date.now() + + console.log('...processed', count, Math.round(duration / 1000) + 's') + } + } + console.log('processed', count) + } finally { + await iterator.close() + } + }) + } +} + export async function moveFiles ( ctx: MeasureContext, workspaceId: WorkspaceId, From 9ec7a98978e733f6b9a072deb31815ec1df3b4b0 Mon Sep 17 00:00:00 2001 From: Francis The Basilisk <36006338+snorkysnark@users.noreply.github.com> Date: Mon, 2 Sep 2024 08:29:31 +0200 Subject: [PATCH 059/149] fix adding person to department action (#6455) Signed-off-by: Evgenii Rechkalov --- models/hr/src/index.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/models/hr/src/index.ts b/models/hr/src/index.ts index 9fe03b30335..019405acebc 100644 --- a/models/hr/src/index.ts +++ b/models/hr/src/index.ts @@ -444,7 +444,8 @@ export function createModel (builder: Builder): void { _class: hr.class.Department, query: {}, searchField: 'name', - placeholder: hr.string.Department + placeholder: hr.string.Department, + castRequest: hr.mixin.Staff }, label: hr.string.Department, icon: hr.icon.Department, From 174d9763119cc7bfcbfde4e4a648f55084acda2e Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Tue, 3 Sep 2024 14:58:02 +0700 Subject: [PATCH 060/149] fix: pass actionPopup to action props (#6467) Signed-off-by: Alexander Onnikov --- plugins/view-resources/src/components/ActionHandler.svelte | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/view-resources/src/components/ActionHandler.svelte b/plugins/view-resources/src/components/ActionHandler.svelte index 5cf3f8acff0..7a93ea87471 100644 --- a/plugins/view-resources/src/components/ActionHandler.svelte +++ b/plugins/view-resources/src/components/ActionHandler.svelte @@ -178,7 +178,10 @@ lastKey = undefined delayedAction = undefined Analytics.handleEvent(a._id) - const actionProps = { ...a.actionProps } + const actionProps: Record = { + ...a.actionProps, + ...(a.actionPopup !== undefined ? { actionPopup: a.actionPopup } : {}) + } if (!Object.prototype.hasOwnProperty.call(actionProps, 'props')) actionProps.props = {} actionProps.props.space = currentSpace await action(selectionDocs, evt, actionProps) From 32335e066b747bce682e2b7a84bda71cb89c64c7 Mon Sep 17 00:00:00 2001 From: Kristina Date: Tue, 3 Sep 2024 20:29:16 +0400 Subject: [PATCH 061/149] Fix document channel disappear after message write (#6477) Signed-off-by: Kristina Fefelova --- .../src/components/chat/navigator/ChatNavGroup.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte b/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte index 83a6fc52557..63807eedb50 100644 --- a/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte +++ b/plugins/chunter-resources/src/components/chat/navigator/ChatNavGroup.svelte @@ -88,7 +88,7 @@ _class, { _id: { $in: limit !== -1 ? ids.slice(0, limit) : ids }, - space: isChunterSpace ? core.space.Space : undefined + ...(isChunterSpace ? { space: core.space.Space } : {}) }, (res) => { objectsByClass = objectsByClass.set(_class, { docs: res, total: res.total }) From f7d831a756f32627612fa04ddacde5f4d3e0f521 Mon Sep 17 00:00:00 2001 From: Alexander Onnikov Date: Wed, 4 Sep 2024 02:32:22 +0700 Subject: [PATCH 062/149] fix: get rid of removeAllObjects by prefix (#6479) Signed-off-by: Alexander Onnikov --- packages/storage/src/index.ts | 6 +++--- server-plugins/contact-resources/src/index.ts | 8 +------- server/front/src/index.ts | 6 +----- 3 files changed, 5 insertions(+), 15 deletions(-) diff --git a/packages/storage/src/index.ts b/packages/storage/src/index.ts index 5d3744fdc55..01fa3e72e24 100644 --- a/packages/storage/src/index.ts +++ b/packages/storage/src/index.ts @@ -176,11 +176,11 @@ export function createDummyStorageAdapter (): StorageAdapter { export async function removeAllObjects ( ctx: MeasureContext, storage: StorageAdapter, - workspaceId: WorkspaceId, - prefix?: string + workspaceId: WorkspaceId ): Promise { + ctx.warn('removing all objects from workspace', { workspaceId }) // We need to list all files and delete them - const iterator = await storage.listStream(ctx, workspaceId, prefix) + const iterator = await storage.listStream(ctx, workspaceId) let bulk: string[] = [] while (true) { const obj = await iterator.next() diff --git a/server-plugins/contact-resources/src/index.ts b/server-plugins/contact-resources/src/index.ts index 864f8188aad..805ee180b97 100644 --- a/server-plugins/contact-resources/src/index.ts +++ b/server-plugins/contact-resources/src/index.ts @@ -47,7 +47,7 @@ import core, { } from '@hcengineering/core' import notification, { Collaborators } from '@hcengineering/notification' import { getMetadata } from '@hcengineering/platform' -import serverCore, { TriggerControl, removeAllObjects } from '@hcengineering/server-core' +import serverCore, { TriggerControl } from '@hcengineering/server-core' import { workbenchId } from '@hcengineering/workbench' export async function OnSpaceTypeMembers (tx: Tx, control: TriggerControl): Promise { @@ -181,12 +181,6 @@ export async function OnContactDelete ( return [] } - if (removeContact.avatar == null) { - return [] - } - - await removeAllObjects(ctx, storageAdapter, workspace, removeContact.avatar) - const result: Tx[] = [] const members = await findAll(contact.class.Member, { contact: removeContact._id }) diff --git a/server/front/src/index.ts b/server/front/src/index.ts index 1554dc89ae3..2f962f4e9d7 100644 --- a/server/front/src/index.ts +++ b/server/front/src/index.ts @@ -17,7 +17,7 @@ import { Analytics } from '@hcengineering/analytics' import { MeasureContext, Blob as PlatformBlob, WorkspaceId, metricsAggregate, type Ref } from '@hcengineering/core' import { Token, decodeToken } from '@hcengineering/server-token' -import { StorageAdapter, removeAllObjects } from '@hcengineering/storage' +import { StorageAdapter } from '@hcengineering/storage' import bp from 'body-parser' import cors from 'cors' import express, { Request, Response } from 'express' @@ -545,10 +545,6 @@ export function start ( // TODO: We need to allow delete only of user attached documents. (https://front.hc.engineering/workbench/platform/tracker/TSK-1081) await config.storageAdapter.remove(ctx, payload.workspace, [uuid]) - // TODO: Add support for related documents. - // TODO: Move support of image resize/format change to separate place. - await removeAllObjects(ctx, config.storageAdapter, payload.workspace, uuid) - res.status(200).send() } catch (error: any) { Analytics.handleError(error) From f42554b5fb9c6a163a15de51539da2bc2bd1b56c Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 9 Sep 2024 23:42:54 +0700 Subject: [PATCH 063/149] UBERF-8053: Disable re-check for milestones Signed-off-by: Andrey Sobolev --- services/github/pod-github/src/sync/issues.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/services/github/pod-github/src/sync/issues.ts b/services/github/pod-github/src/sync/issues.ts index cad35aceb3f..cc9ebc9f058 100644 --- a/services/github/pod-github/src/sync/issues.ts +++ b/services/github/pod-github/src/sync/issues.ts @@ -429,8 +429,8 @@ export class IssueSyncManager extends IssueSyncManagerBase implements DocSyncMan ) if (target === null) { // We need to wait, no milestone data yet. - this.ctx.error('target === null', { url: info.url }) - return { needSync: '' } + this.ctx.error('target === null, no milestone data yet', { url: info.url }) + return { needSync: githubSyncVersion } } if (target === undefined) { target = this.getProjectIssueTarget(container.project, issueExternal) From 66b277bb03039a409a09ded26dbbec4f7af75ea6 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 10 Sep 2024 13:10:12 +0700 Subject: [PATCH 064/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 84656673f0a..8bbb8fdd596 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.287" +"0.6.289" From 8f17b43c7409974651b33b44607a66c170d9260e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 10 Sep 2024 13:13:07 +0700 Subject: [PATCH 065/149] Update changelog Signed-off-by: Andrey Sobolev --- changelog.md | 40 +++++++++++++++++++++++++++++++++++++++- 1 file changed, 39 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 46bc32190f6..ba97c24dbb2 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,43 @@ Changelog. +## [0.6.289] - 2024-09-10 + +* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) +* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) +* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) +* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) +* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) +* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) +* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) +* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) +* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) +* UBERF-8053: · Disable re-check for milestones +* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) +* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) +* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) +* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) + +## [s0.6.288b] - 2024-08-30 + +* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) + +## [s0.6.288a] - 2024-08-29 + +* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) + +## [s0.6.278] - 2024-08-29 + +* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) +* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) +* UBERF-8053: · Disable re-check for milestones +* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) + +## [0.6.288] - 2024-09-03 + +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) + ## [0.6.286] - 2024-08-28 * 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) @@ -9,11 +46,12 @@ Changelog. ## [0.6.285a] - 2024-08-27 -* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) +* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) ## [0.6.285] - 2024-08-27 * 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) +* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) * UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) * UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) From f67555c1d130ee0afec3639d038621f3318a460e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 11 Sep 2024 15:35:17 +0700 Subject: [PATCH 066/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 8bbb8fdd596..4307b78284b 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.289" +"0.6.292" From 946046e4b4a88e41a6154993ad43609b85af7bfd Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 12 Sep 2024 21:59:33 +0700 Subject: [PATCH 067/149] Bump model version Signed-off-by: Andrey Sobolev --- changelog.md | 2279 ++++++++++++++++++------------------ common/scripts/version.txt | 2 +- 2 files changed, 1149 insertions(+), 1132 deletions(-) diff --git a/changelog.md b/changelog.md index ba97c24dbb2..10de6be3299 100644 --- a/changelog.md +++ b/changelog.md @@ -2,1969 +2,1986 @@ Changelog. +## [0.6.293] - 2024-09-12 + +* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) +* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) +* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) + +## [0.6.292] - 2024-09-11 + +* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) +* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) +* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) +* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) + +## [0.6.291] - 2024-09-10 + +* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) + ## [0.6.289] - 2024-09-10 -* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) -* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) -* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) -* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) -* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) -* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) -* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) -* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) -* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) -* UBERF-8053: · Disable re-check for milestones -* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) -* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) -* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) -* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) +* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) +* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) +* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) +* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) +* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) +* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) +* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) +* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) +* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) +* UBERF-8053: · Disable re-check for milestones +* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) +* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) +* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) +* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) ## [s0.6.288b] - 2024-08-30 -* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) +* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) ## [s0.6.288a] - 2024-08-29 -* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) +* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) ## [s0.6.278] - 2024-08-29 -* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) -* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) -* UBERF-8053: · Disable re-check for milestones -* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) +* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) +* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) +* UBERF-8053: · Disable re-check for milestones +* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) ## [0.6.288] - 2024-09-03 -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) ## [0.6.286] - 2024-08-28 -* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) -* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) +* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) +* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) ## [0.6.285a] - 2024-08-27 -* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) +* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) ## [0.6.285] - 2024-08-27 -* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) -* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) -* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) -* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) +* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) +* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) +* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) +* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) ## [0.6.284a] - 2024-08-26 -* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) -* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) +* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) +* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) ## [0.6.284] - 2024-08-23 -* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) -* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) +* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) +* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) ## [0.6.283] - 2024-08-21 -* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) +* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) ## [0.6.281a] - 2024-08-21 -* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) +* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) ## [0.6.281] - 2024-08-20 -* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) -* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) -* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) +* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.280a] - 2024-08-12 -* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) ## [0.6.280] - 2024-08-11 -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.279] - 2024-08-09 -* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) ## [0.6.277] - 2024-08-08 -* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) -* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) -* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) +* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) +* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) +* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) ## [0.6.276] - 2024-08-07 -* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) -* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) -* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) -* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) -* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) -* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) +* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) +* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) +* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) +* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) +* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) +* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) ## [0.6.274] - 2024-08-05 -* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) -* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) -* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) -* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) -* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) +* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) +* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) +* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) +* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) +* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) ## [0.6.271] - 2024-08-02 -* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) +* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) ## [0.6.271rc1] - 2024-08-01 -* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) -* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) -* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) -* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) -* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) -* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) +* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) +* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) +* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) +* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) +* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) ## [0.6.270] - 2024-07-30 -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) ## [0.6.269] - 2024-07-30 -* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) ## [0.6.268] - 2024-07-29 -* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) -* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) +* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) +* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) ## [0.6.267] - 2024-07-29 -* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) -* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) -* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) -* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) -* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) -* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) -* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) +* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) +* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) +* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) +* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) +* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) +* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) +* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) ## [0.6.266] - 2024-07-24 -* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) -* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) -* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) -* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) -* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) -* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) -* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) +* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) +* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) +* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) +* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) +* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) +* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) +* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) ## [0.6.265] - 2024-07-19 -* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) -* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) -* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) -* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) -* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) -* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) +* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) +* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) +* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) +* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) +* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) +* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) ## [0.6.264] - 2024-07-12 -* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) -* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) -* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) -* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) +* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) +* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) +* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) +* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) ## [0.6.263] - 2024-07-10 -* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) +* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) ## [0.6.262] - 2024-07-10 -* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) +* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) ## [0.6.261] - 2024-07-09 -* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) -* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) -* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) -* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) +* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) +* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) +* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) +* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) ## [0.6.260] - 2024-07-04 -* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) -* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) -* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) -* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) -* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) -* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) -* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) -* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) +* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) +* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) +* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) +* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) +* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) +* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) +* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) +* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) ## [0.6.259] - 2024-06-28 -* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) -* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) +* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) +* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) ## [0.6.258] - 2024-06-27 -* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) -* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) -* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) -* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) -* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) +* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) +* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) +* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) +* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) +* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) ## [0.6.257] - 2024-06-25 -* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) -* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) -* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) -* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) -* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) -* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) -* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) +* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) +* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) +* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) +* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) +* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) +* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) +* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) ## [0.6.256] - 2024-06-20 -* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) -* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) -* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) -* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) +* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) +* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) +* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) +* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) ## [0.6.255] - 2024-06-18 -* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) -* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) -* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) -* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) -* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) -* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) -* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) -* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) -* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) +* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) +* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) +* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) +* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) +* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) +* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) +* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) +* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) +* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) ## [0.6.254] - 2024-06-14 -* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) +* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) ## [0.6.253] - 2024-06-13 -* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) -* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) -* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) +* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) +* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) +* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) ## [0.6.252] - 2024-06-12 -* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) -* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) -* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) -* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) +* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) +* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) +* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) +* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) ## [0.6.251] - 2024-06-11 -* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) -* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) -* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) +* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) +* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) +* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) ## [0.6.250] - 2024-06-07 -* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) -* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) +* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) +* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) ## [0.6.249] - 2024-06-05 -* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) -* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) -* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) +* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) +* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) +* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) ## [0.6.248] - 2024-05-31 -* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) -* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) +* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) +* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) ## [0.6.247] - 2024-05-30 -* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) -* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) -* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) -* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) -* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) -* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) -* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) -* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) -* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) -* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) +* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) +* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) +* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) +* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) +* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) +* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) +* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) +* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) +* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) +* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) ## [0.6.246] - 2024-05-23 -* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) -* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) +* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) +* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) ## [0.6.245] - 2024-05-22 -* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) -* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) -* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) -* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) -* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) +* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) +* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) +* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) +* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) +* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) ## [0.6.243] - 2024-05-13 -* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) -* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) -* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) -* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) -* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) +* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) +* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) +* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) +* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) +* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) ## [0.6.242] - 2024-05-10 -* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) -* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) -* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) +* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) +* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) +* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) ## [0.6.241] - 2024-05-08 -* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) -* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) +* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) +* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) ## [0.6.240] - 2024-05-06 -* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) -* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) -* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) -* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) -* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) -* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) -* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) -* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) +* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) +* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) +* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) +* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) +* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) +* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) +* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) +* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) ## [0.6.239] - 2024-05-03 -* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) -* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) -* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) -* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) -* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) +* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) +* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) +* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) +* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) +* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) ## [0.6.238] - 2024-04-26 -* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) -* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) -* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) -* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) -* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) +* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) +* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) +* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) +* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) +* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) ## [0.6.237] - 2024-04-23 -* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) +* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) ## [0.6.236] - 2024-04-23 -* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) +* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) ## [0.6.235a] - 2024-04-20 -* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) -* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) +* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) +* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) ## [0.6.235] - 2024-04-19 -* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) -* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) +* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) +* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) ## [0.6.234] - 2024-04-18 -* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) -* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) -* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) -* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) +* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) +* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) +* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) +* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) ## [0.6.233] - 2024-04-16 -* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) -* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) -* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) +* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) +* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) +* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) ## [0.6.232] - 2024-04-16 -* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) -* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) -* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) -* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) -* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) -* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) -* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) +* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) +* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) +* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) +* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) +* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) +* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) +* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) ## [0.6.231] - 2024-04-13 -* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) -* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) -* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) -* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) -* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) -* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) -* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) +* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) +* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) +* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) +* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) +* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) +* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) +* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) ## [0.6.230] - 2024-04-10 -* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) -* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) +* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) +* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) ## [0.6.229] - 2024-04-10 -* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) -* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) -* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) +* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) +* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) +* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) ## [0.6.228a] - 2024-04-09 -* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) -* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) +* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) +* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) ## [0.6.228] - 2024-04-08 -* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) -* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) +* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) +* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) ## [0.6.227] - 2024-04-08 -* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) -* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) -* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) -* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) -* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) +* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) +* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) +* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) +* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) +* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) ## [0.6.226] - 2024-04-04 -* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) -* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) -* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) +* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) +* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) +* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) ## [0.6.225] - 2024-04-03 -* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) -* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) -* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) -* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) +* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) +* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) +* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) +* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) ## [0.6.224] - 2024-04-02 -* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) +* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) ## [0.6.223] - 2024-04-02 -* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) -* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) -* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) -* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) +* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) +* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) +* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) +* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) ## [0.6.222] - 2024-04-01 -* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) -* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) -* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) +* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) +* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) +* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) ## [0.6.221] - 2024-03-29 -* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) -* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) -* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) +* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) +* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) +* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) ## [0.6.220] - 2024-03-28 -* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) +* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) ## [0.6.219] - 2024-03-28 -* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) -* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) -* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) -* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) -* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) +* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) +* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) +* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) +* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) +* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) ## [0.6.218] - 2024-03-27 -* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) -* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) -* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) -* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) +* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) +* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) +* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) +* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) ## [0.6.216] - 2024-03-25 -* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) -* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) -* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) -* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) -* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) -* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) +* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) +* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) +* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) +* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) +* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) +* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) ## [0.6.215] - 2024-03-21 -* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) -* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) +* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) +* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) ## [0.6.214] - 2024-03-19 -* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) -* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) -* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) -* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) -* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) +* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) +* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) +* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) +* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) +* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) ## [0.6.213] - 2024-03-15 -* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) -* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) +* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) +* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) ## [0.6.212] - 2024-03-15 -* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) -* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) -* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) -* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) -* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) -* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) +* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) +* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) +* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) +* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) +* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) +* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) ## [0.6.211] - 2024-03-13 -* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) +* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) ## [0.6.210a] - 2024-03-13 -* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) -* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) +* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) +* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) ## [0.6.210] - 2024-03-13 -* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) -* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) -* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) -* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) -* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) -* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) -* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) -* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) -* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) -* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) +* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) +* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) +* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) +* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) +* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) +* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) +* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) +* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) +* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) +* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) ## [0.6.209] - 2024-03-08 -* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) -* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) -* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) -* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) -* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) -* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) -* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) -* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) -* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) -* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) -* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) +* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) +* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) +* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) +* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) +* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) +* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) +* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) +* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) +* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) +* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) +* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) ## [0.6.208] - 2024-03-04 -* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) -* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) -* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) -* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) +* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) +* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) +* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) +* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) ## [0.6.207] - 2024-03-01 -* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) +* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) ## [0.6.206] - 2024-03-01 -* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) -* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) +* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) +* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) ## [0.6.205] - 2024-02-29 -* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) -* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) -* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) -* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) -* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) -* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) -* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) -* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) -* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) -* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) -* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) -* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) -* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) -* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) -* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) +* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) +* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) +* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) +* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) +* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) +* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) +* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) +* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) +* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) +* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) +* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) +* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) +* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) +* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) +* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) ## [0.6.204] - 2024-02-26 -* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) +* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) ## [0.6.203] - 2024-02-25 -* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) +* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) ## [0.6.202] - 2024-02-23 -* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) -* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) -* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) -* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) -* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) -* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) -* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) +* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) +* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) +* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) +* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) +* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) +* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) +* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) ## [0.6.201] - 2024-02-20 -* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) -* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) +* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) +* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) ## [0.6.200] - 2024-02-19 -* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) -* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) -* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) -* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) +* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) +* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) +* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) +* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) ## [0.6.198] - 2024-02-16 -* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) -* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) -* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) -* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) -* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) -* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) +* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) +* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) +* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) +* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) +* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) +* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) ## [0.6.197] - 2024-02-15 -* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) -* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) -* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) +* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) +* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) +* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) ## [0.6.196] - 2024-02-14 -* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) -* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) -* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) -* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) -* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) -* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) +* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) +* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) +* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) +* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) +* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) +* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) ## [0.6.195] - 2024-02-13 -* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) -* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) -* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) -* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) -* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) -* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) -* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) +* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) +* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) +* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) +* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) +* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) +* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) +* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) ## [0.6.194] - 2024-02-09 -* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) -* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) -* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) +* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) +* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) +* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) ## [0.6.193] - 2024-02-08 -* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) -* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) -* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) -* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) -* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) -* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) -* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) +* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) +* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) +* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) +* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) +* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) +* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) +* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) ## [0.6.192] - 2024-02-07 -* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) -* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) -* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) -* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) -* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) -* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) -* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) -* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) -* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) -* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) -* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) +* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) +* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) +* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) +* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) +* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) +* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) +* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) +* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) +* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) +* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) +* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) ## [0.6.191] - 2024-02-05 -* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) -* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) -* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) +* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) +* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) +* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) ## [0.6.190] - 2024-02-03 -* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) +* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) ## [0.6.188] - 2024-02-02 -* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) -* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) -* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) -* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) -* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) -* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) -* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) -* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) -* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) -* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) -* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) -* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) +* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) +* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) +* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) +* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) +* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) +* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) +* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) +* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) +* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) +* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) +* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) +* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) ## [0.6.187] - 2024-01-30 -* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) -* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) -* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) -* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) -* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) +* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) +* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) +* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) +* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) +* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) ## [0.6.186] - 2024-01-25 -* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) -* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) -* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) -* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) +* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) +* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) +* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) +* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) ## [0.6.185] - 2024-01-25 -* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) +* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) ## [0.6.184] - 2024-01-24 -* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) -* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) +* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) +* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) ## [0.6.183] - 2024-01-23 -* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) -* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) -* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) +* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) +* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) +* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) ## [0.6.182] - 2024-01-22 -* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) -* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) -* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) +* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) +* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) +* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) ## [0.6.181a] - 2024-01-20 -* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) -* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) +* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) +* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) ## [0.6.181] - 2024-01-19 -* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) -* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) -* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) +* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) +* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) +* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) ## [0.6.180] - 2024-01-18 -* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) -* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) +* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) +* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) ## [0.6.179] - 2024-01-17 -* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) -* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) -* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) -* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) +* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) +* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) +* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) +* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) ## [0.6.178] - 2024-01-16 -* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) -* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) -* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) -* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) -* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) -* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) -* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) +* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) +* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) +* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) +* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) +* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) +* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) +* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) ## [0.6.177] - 2024-01-08 -* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) -* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) +* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) +* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) ## [0.6.175] - 2024-01-05 -* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) +* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) ## [0.6.174a] - 2023-12-29 -* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) +* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) ## [0.6.173] - 2023-12-28 -* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) -* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) -* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) -* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) -* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) -* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) -* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) -* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) -* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) -* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) -* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) -* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) -* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) -* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) +* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) +* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) +* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) +* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) +* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) +* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) +* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) +* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) +* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) +* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) +* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) +* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) +* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) +* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) ## [0.6.172] - 2023-12-21 -* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) -* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) -* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) -* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) -* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) +* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) +* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) +* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) +* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) +* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) ## [0.6.171] - 2023-12-20 -* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) -* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) -* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) -* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) -* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) -* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) -* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) -* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) -* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) -* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) -* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) -* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) -* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) -* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) -* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) -* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) -* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) +* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) +* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) +* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) +* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) +* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) +* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) +* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) +* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) +* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) +* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) +* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) +* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) +* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) +* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) +* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) +* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) +* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) ## [0.6.170] - 2023-12-07 -* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) -* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) -* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) -* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) +* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) +* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) +* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) +* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) ## [0.6.169] - 2023-12-06 -* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) -* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) -* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) -* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) +* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) +* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) +* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) +* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) ## [0.6.168] - 2023-12-05 -* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) +* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) ## [0.6.167] - 2023-12-05 -* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) -* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) -* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) -* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) +* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) +* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) +* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) +* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) ## [0.6.166] - 2023-12-04 -* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) -* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) +* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) +* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) ## [0.6.165] - 2023-12-02 -* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) -* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) -* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) +* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) +* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) +* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) ## [0.6.164] - 2023-12-01 -* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) -* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) -* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) -* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) -* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) +* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) +* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) +* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) +* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) +* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) ## [0.6.163] - 2023-11-29 -* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) -* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) -* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) -* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) -* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) +* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) +* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) +* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) +* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) +* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) ## [0.6.162] - 2023-11-29 -* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) -* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) -* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) -* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) -* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) -* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) +* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) +* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) +* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) +* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) +* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) +* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) ## [0.6.161] - 2023-11-28 -* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) -* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) -* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) -* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) -* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) -* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) -* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) -* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) +* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) +* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) +* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) +* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) +* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) +* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) +* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) +* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) ## [0.6.160] - 2023-11-27 -* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) -* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) +* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) +* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) ## [0.6.159] - 2023-11-24 -* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) -* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) -* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) +* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) +* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) +* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) ## [0.6.158] - 2023-11-23 -* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) -* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) -* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) -* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) -* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) -* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) -* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) +* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) +* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) +* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) +* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) +* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) +* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) +* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) ## [0.6.157] - 2023-11-21 -* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) -* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) -* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) -* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) -* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) -* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) -* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) +* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) +* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) +* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) +* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) +* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) +* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) +* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) ## [0.6.156] - 2023-11-15 -* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) -* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) -* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) -* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) -* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) -* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) +* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) +* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) +* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) +* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) +* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) +* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) ## [0.6.155a] - 2023-11-14 -* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) -* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) +* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) +* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) ## [0.6.155] - 2023-11-14 -* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) -* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) -* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) -* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) +* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) +* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) +* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) +* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) ## [0.6.154a] - 2023-11-10 -* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) +* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) ## [0.6.154] - 2023-11-10 -* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) -* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) -* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) +* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) +* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) +* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) ## [0.6.153] - 2023-11-08 -* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) +* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) ## [0.6.152] - 2023-11-07 -* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) -* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) -* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) -* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) -* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) +* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) +* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) +* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) +* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) +* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) ## [0.6.151] - 2023-11-03 -* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) -* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) -* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) +* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) +* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) +* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) ## [0.6.150] - 2023-11-01 -* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) -* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) -* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) -* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) -* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) -* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) -* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) -* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) -* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) +* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) +* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) +* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) +* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) +* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) +* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) +* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) +* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) +* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) ## [0.6.149] - 2023-10-30 -* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) -* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) -* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) -* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) -* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) -* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) -* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) +* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) +* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) +* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) +* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) +* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) +* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) +* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) ## [0.6.148] - 2023-10-26 -* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) -* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) -* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) +* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) +* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) +* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) ## [0.6.147] - 2023-10-26 -* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) -* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) -* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) -* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) -* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) -* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) -* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) -* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) -* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) -* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) -* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) -* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) -* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) +* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) +* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) +* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) +* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) +* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) +* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) +* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) +* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) +* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) +* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) +* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) +* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) +* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) ## [0.6.146] - 2023-10-23 -* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) +* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) ## [0.6.145] - 2023-10-19 -* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) -* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) -* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) -* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) -* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) -* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) -* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) +* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) +* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) +* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) +* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) +* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) +* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) +* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) ## [0.6.144] - 2023-10-16 -* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) -* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) +* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) +* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) ## [0.6.142] - 2023-10-13 -* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) -* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) +* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) +* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) ## [0.6.141] - 2023-10-11 -* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) -* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) +* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) +* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) ## [0.6.140] - 2023-10-10 -* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) -* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) +* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) +* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) ## [0.6.139a] - 2023-10-09 -* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) +* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) ## [0.6.138] - 2023-10-06 -* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) -* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) +* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) +* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) ## [0.6.137] - 2023-10-03 -* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) -* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) -* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) +* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) +* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) +* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) ## [0.6.136] - 2023-10-02 -* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) -* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) +* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) +* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) ## [0.6.135] - 2023-10-01 -* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) -* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) -* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) +* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) +* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) +* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) ## [0.6.134] - 2023-09-29 -* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) -* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) -* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) +* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) +* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) +* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) ## [0.6.133] - 2023-09-27 -* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) -* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) -* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) -* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) +* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) +* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) +* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) +* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) ## [0.6.132] - 2023-09-26 -* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) -* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) +* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) +* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) ## [0.6.131] - 2023-09-22 -* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) -* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) -* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) +* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) +* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) +* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) ## [0.6.130] - 2023-09-20 -* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) +* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) ## [0.6.129] - 2023-09-20 -* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) +* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) ## [0.6.128] - 2023-09-19 -* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) +* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) ## [0.6.127] - 2023-09-19 -* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) +* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) ## [0.6.126] - 2023-09-18 -* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) -* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) -* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) -* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) -* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) -* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) -* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) -* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) -* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) -* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) -* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) -* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) -* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) +* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) +* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) +* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) +* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) +* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) +* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) +* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) +* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) +* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) +* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) +* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) +* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) +* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) ## [0.6.125] - 2023-09-11 -* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) +* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) ## [0.6.124] - 2023-09-08 -* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) -* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) -* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) -* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) -* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) -* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) -* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) -* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) -* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) -* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) +* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) +* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) +* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) +* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) +* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) +* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) +* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) +* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) +* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) +* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) ## [0.6.123] - 2023-08-30 -* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) -* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) +* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) +* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) ## [0.6.122] - 2023-08-25 -* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) -* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) -* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) -* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) -* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) -* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) -* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) +* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) +* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) +* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) +* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) +* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) +* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) +* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) ## [0.6.121] - 2023-08-24 -* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) -* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) -* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) +* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) +* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) +* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) ## [0.6.120a] - 2023-08-22 -* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) +* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) ## [0.6.120] - 2023-08-22 -* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) +* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) ## [0.6.119] - 2023-08-19 -* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) -* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) -* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) -* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) +* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) +* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) +* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) +* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) ## [0.6.118] - 2023-08-17 -* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) -* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) -* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) -* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) -* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) -* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) +* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) +* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) +* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) +* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) +* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) +* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) ## [0.6.117] - 2023-08-14 -* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) +* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) ## [0.6.116] - 2023-08-10 -* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) -* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) -* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) -* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) +* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) +* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) +* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) +* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) ## [0.6.115] - 2023-08-08 -* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) -* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) +* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) +* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) ## [0.6.114] - 2023-08-07 -* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) -* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) +* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) +* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) ## [0.6.113] - 2023-08-03 -* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) -* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) -* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) -* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) +* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) +* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) +* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) +* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) ## [0.6.112b] - 2023-08-01 -* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) -* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) +* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) +* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) ## [0.6.112a] - 2023-07-31 -* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) +* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) ## [0.6.112] - 2023-07-29 -* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) -* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) -* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) -* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) -* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) -* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) -* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) -* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) -* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) -* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) -* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) -* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) -* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) -* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) -* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) +* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) +* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) +* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) +* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) +* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) +* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) +* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) +* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) +* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) +* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) +* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) +* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) +* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) +* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) +* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) ## [0.6.111] - 2023-07-13 -* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) -* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) -* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) +* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) +* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) +* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) ## [0.6.110] - 2023-07-08 -* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) -* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) -* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) -* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) -* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) -* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) -* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) -* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) -* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) -* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) -* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) -* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) -* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) -* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) -* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) -* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) -* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) -* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) -* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) -* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) -* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) -* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) -* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) +* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) +* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) +* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) +* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) +* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) +* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) +* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) +* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) +* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) +* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) +* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) +* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) +* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) +* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) +* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) +* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) +* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) +* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) +* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) +* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) +* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) +* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) +* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) ## [0.6.109] - 2023-06-16 -* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) -* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) -* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) -* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) -* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) -* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) -* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) +* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) +* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) +* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) +* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) +* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) +* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) +* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) ## [0.6.108] - 2023-06-12 -* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) -* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) -* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) -* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) -* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) +* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) +* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) +* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) +* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) +* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) ## [0.6.107] - 2023-06-09 -* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) -* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) -* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) +* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) +* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) +* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) ## [0.6.106] - 2023-06-08 -* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) -* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) -* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) -* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) -* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) -* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) -* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) -* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) -* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) +* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) +* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) +* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) +* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) +* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) +* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) +* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) +* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) +* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) ## [0.6.104] - 2023-06-07 -* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) +* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) ## [0.6.103] - 2023-06-07 -* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) -* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) +* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) +* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) ## [0.6.102] - 2023-06-06 -* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) -* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) -* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) -* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) -* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) -* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) -* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) -* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) +* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) +* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) +* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) +* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) +* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) +* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) +* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) +* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) ## [0.6.101] - 2023-06-05 -* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) -* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) -* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) -* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) -* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) -* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) +* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) +* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) +* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) +* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) +* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) +* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) ## [0.6.100] - 2023-06-02 -* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) -* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) -* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) -* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) -* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) -* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) -* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) -* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) -* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) -* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) +* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) +* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) +* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) +* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) +* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) +* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) +* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) +* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) +* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) +* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) ## [0.6.99] - 2023-05-30 -* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) -* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) -* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) -* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) -* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) -* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) -* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) -* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) -* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) -* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) -* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) -* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) -* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) +* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) +* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) +* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) +* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) +* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) +* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) +* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) +* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) +* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) +* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) +* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) +* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) +* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) ## [0.6.98a] - 2023-05-28 -* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) -* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) +* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) +* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) ## [0.6.98] - 2023-05-27 -* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) -* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) -* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) -* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) -* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) -* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) -* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) -* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) +* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) +* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) +* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) +* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) +* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) +* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) +* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) +* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) ## [0.6.97] - 2023-05-24 -* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) -* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) -* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) -* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) -* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) -* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) -* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) -* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) -* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) -* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) -* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) -* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) -* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) -* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) +* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) +* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) +* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) +* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) +* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) +* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) +* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) +* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) +* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) +* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) +* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) +* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) +* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) +* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) ## [0.6.96] - 2023-05-21 -* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) -* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) -* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) -* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) -* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) -* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) -* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) -* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) -* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) -* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) -* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) -* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) -* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) -* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) -* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) -* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) -* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) -* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) -* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) -* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) -* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) -* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) +* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) +* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) +* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) +* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) +* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) +* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) +* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) +* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) +* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) +* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) +* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) +* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) +* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) +* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) +* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) +* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) +* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) +* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) +* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) +* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) +* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) +* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) ## [0.6.95] - 2023-05-12 -* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) -* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) -* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) -* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) -* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) -* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) -* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) -* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) -* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) -* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) -* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) +* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) +* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) +* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) +* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) +* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) +* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) +* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) +* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) +* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) +* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) +* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) ## [0.6.94] - 2023-05-04 -* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) -* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) -* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) -* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) -* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) +* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) +* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) +* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) +* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) +* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) ## [0.6.93] - 2023-05-04 -* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) -* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) -* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) -* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) -* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) -* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) -* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) +* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) +* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) +* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) +* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) +* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) +* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) +* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) ## [0.6.92] - 2023-05-02 -* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) -* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) -* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) -* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) -* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) -* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) -* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) -* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) +* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) +* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) +* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) +* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) +* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) +* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) +* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) +* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) ## [0.6.91a] - 2023-04-27 -* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) -* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) -* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) +* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) +* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) +* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) ## [0.6.91] - 2023-04-27 -* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) -* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) -* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) -* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) -* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) -* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) -* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) -* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) -* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) -* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) -* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) -* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) -* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) -* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) -* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) +* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) +* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) +* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) +* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) +* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) +* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) +* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) +* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) +* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) +* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) +* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) +* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) +* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) +* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) +* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) ## [0.6.90] - 2023-04-23 -* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) +* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) ## [0.6.89] - 2023-04-21 -* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) -* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) -* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) -* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) +* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) +* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) +* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) +* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) ## [0.6.88] - 2023-04-19 -* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) -* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) -* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) +* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) +* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) +* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) ## [0.6.87] - 2023-04-19 -* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) -* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) -* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) +* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) +* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) +* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) ## [0.6.86] - 2023-04-17 -* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) -* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) -* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) +* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) +* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) +* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) ## [0.6.85] - 2023-04-17 -* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) -* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) +* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) +* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) ## [0.6.84] - 2023-04-16 -* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) +* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) ## [0.6.83] - 2023-04-14 -* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) -* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) -* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) +* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) +* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) +* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) ## [0.6.82] - 2023-04-13 -* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) -* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) -* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) -* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) +* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) +* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) +* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) +* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) ## [0.6.81] - 2023-04-12 -* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) -* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) -* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) -* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) -* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) -* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) +* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) +* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) +* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) +* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) +* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) +* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) ## [0.6.80a] - 2023-04-12 -* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) +* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) ## [0.6.80] - 2023-04-11 -* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) -* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) -* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) -* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) -* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) +* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) +* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) +* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) +* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) +* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) ## [0.6.79] - 2023-04-07 -* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) -* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) -* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) -* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) -* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) -* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) -* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) -* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) -* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) -* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) +* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) +* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) +* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) +* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) +* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) +* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) +* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) +* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) +* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) +* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) ## [0.6.78] - 2023-04-03 -* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) -* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) +* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) +* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) ## [0.6.77] - 2023-03-31 -* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) -* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) -* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) -* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) -* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) -* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) -* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) -* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) -* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) -* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) -* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) -* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) -* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) +* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) +* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) +* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) +* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) +* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) +* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) +* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) +* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) +* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) +* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) +* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) +* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) +* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) ## [0.6.76a] - 2023-03-24 -* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) -* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) +* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) +* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) ## [0.6.76] - 2023-03-24 -* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) -* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) -* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) -* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) -* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) -* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) -* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) -* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) -* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) -* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) -* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) -* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) -* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) +* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) +* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) +* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) +* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) +* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) +* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) +* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) +* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) +* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) +* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) +* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) +* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) +* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) ## [0.6.75b] - 2023-03-21 -* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) -* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) +* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) +* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) ## [0.6.75a] - 2023-03-21 -* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) -* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) +* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) +* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) ## [0.6.75] - 2023-03-21 -* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) -* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) -* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) -* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) -* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) -* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) -* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) +* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) +* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) +* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) +* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) +* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) +* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) +* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) ## [0.6.74] - 2023-03-17 -* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) -* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) +* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) +* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) ## [0.6.73a] - 2023-03-16 -* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) -* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) -* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) -* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) +* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) +* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) +* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) +* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) ## [0.6.73] - 2023-03-16 -* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) -* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) -* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) -* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) -* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) -* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) +* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) +* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) +* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) +* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) +* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) +* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) ## [0.6.72a] - 2023-03-13 -* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) +* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) ## [0.6.69b] - 2023-03-02 -* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) -* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) +* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) +* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) ## [0.6.69] - 2023-03-01 -* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) -* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) -* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) -* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) +* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) +* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) +* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) +* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) ## [0.6.68] - 2023-02-22 -* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) -* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) +* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) +* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) ## [0.6.67] - 2023-02-20 -* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) -* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) -* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) -* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) -* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) +* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) +* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) +* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) +* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) +* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) ## [0.6.65] - 2023-02-10 -* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) +* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) ## [0.6.64] - 2023-02-08 -* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) -* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) -* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) +* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) +* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) +* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) ## [0.6.61] - 2023-01-30 -* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) -* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) +* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) +* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) ## [0.6.57] - 2023-01-24 -* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) +* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) ## [0.6.55] - 2023-01-20 -* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) +* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) ## [0.6.53a] - 2022-12-30 -* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) +* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) ## [0.6.52] - 2022-12-22 -* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) +* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) ## [0.6.51] - 2022-12-21 -* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) +* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) ## [0.6.50] - 2022-12-16 -* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) +* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) ## [0.6.49] - 2022-12-15 -* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) -* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) -* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) +* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) +* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) +* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) ## [0.6.48] - 2022-12-07 -* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) -* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) +* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) +* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) ## [0.6.47] - 2022-12-02 -* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) +* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) ## [0.6.46] - 2022-11-29 -* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) +* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) ## [0.6.45] - 2022-11-24 -* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) -* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) -* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) -* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) +* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) +* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) +* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) +* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) ## [0.6.44] - 2022-11-22 -* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) -* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) -* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) +* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) +* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) +* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) ## [0.6.41] - 2022-11-12 -* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) -* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) +* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) +* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) ## [0.6.40] - 2022-11-02 -* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) -* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) +* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) +* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) ## [0.6.34] - 2022-08-25 -* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) +* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) ## [0.6.33a] - 2022-08-22 -* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) +* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) ## [0.6.31] - 2022-07-19 -* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) +* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) ## [0.6.30c] - 2022-07-10 -* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) +* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) ## [0.6.30b] - 2022-07-07 -* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) -* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) +* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) +* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) ## [0.6.30a] - 2022-07-04 -* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) -* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) +* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) +* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) ## [0.6.30] - 2022-07-02 -* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) -* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) -* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) -* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) -* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) +* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) +* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) +* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) +* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) +* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) ## [0.6.29b] - 2022-06-27 -* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) +* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) ## [0.6.29a] - 2022-06-27 -* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) +* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) ## [0.6.29] - 2022-06-25 -* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) -* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) -* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) -* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) +* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) +* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) +* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) +* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) ## [0.6.28] - 2022-06-20 -* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) -* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) -* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) +* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) +* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) +* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) ## [0.6.27] - 2022-06-15 -* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) -* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) -* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) -* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) -* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) +* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) +* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) +* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) +* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) +* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) ## [0.6.26] - 2022-06-10 -* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) +* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) ## [0.6.25] - 2022-06-08 -* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) +* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) ## [0.6.24] - 2022-06-07 -* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) -* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) +* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) +* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) ## [0.6.23] - 2022-06-03 -* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) -* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) -* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) -* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) +* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) +* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) +* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) +* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) ## [0.6.22] - 2022-05-29 -* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) -* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) -* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) +* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) +* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) +* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) ## [0.6.21] - 2022-05-24 -* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) +* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) ## [0.6.20] - 2022-05-23 -* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) +* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) ## [0.6.19] - 2022-05-22 -* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) -* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) -* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) -* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) -* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) -* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) +* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) +* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) +* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) +* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) +* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) +* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) ## [0.6.18] - 2022-05-15 -* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) -* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) -* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) +* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) +* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) +* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) ## [0.6.15] - 2022-05-05 -* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) -* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) -* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) -* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) +* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) +* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) +* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) +* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) ## [0.6.14] - 2022-04-26 -* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) -* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) -* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) +* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) +* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) +* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) ## [0.6.13] - 2022-04-24 -* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) -* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) -* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) +* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) +* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) +* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) ## [0.6.12] - 2022-04-18 -* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) -* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) +* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) +* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) ## [0.6.11] - 2022-04-17 -* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) -* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) -* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) +* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) +* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) +* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) ## [0.6.8] - 2022-03-19 -* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) +* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) ## [0.6.0] - 2021-11-22 -* CLEAN: · Package.json +* CLEAN: · Package.json diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 4307b78284b..aad39c6c477 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.292" +"0.6.293" From 8fb7974fe6777c863c697ea9b2d7408ea3a65984 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 13 Sep 2024 22:20:25 +0700 Subject: [PATCH 068/149] Bump model version Signed-off-by: Andrey Sobolev --- changelog.md | 9 +++++++++ common/scripts/version.txt | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 10de6be3299..bed5a04524f 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,15 @@ Changelog. +## [0.6.294] - 2024-09-13 + +* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) +* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) +* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) +* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) +* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) +* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) + ## [0.6.293] - 2024-09-12 * UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index aad39c6c477..ca48e843a01 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.293" +"0.6.294" From 2b459feb449f2445bf8d1bc3c455af52c7f6fbef Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 18 Sep 2024 12:26:14 +0700 Subject: [PATCH 069/149] Bump model version to v0.6.298 Signed-off-by: Andrey Sobolev --- changelog.md | 2311 ++++++++++++++++++------------------ common/scripts/version.txt | 2 +- 2 files changed, 1167 insertions(+), 1146 deletions(-) diff --git a/changelog.md b/changelog.md index bed5a04524f..a355193023d 100644 --- a/changelog.md +++ b/changelog.md @@ -2,1995 +2,2016 @@ Changelog. +## [0.6.298] - 2024-09-18 + +* UBERF-8139: · Check server version when connecting from client ([#6608](https://github.com/hcengineering/platform/issues/6608)) +* UBERF-8150: · Update to fresh mongo ([#6603](https://github.com/hcengineering/platform/issues/6603)) + +## [0.6.297] - 2024-09-17 + +* UBERF-8149: · Reset workspace attempts counter tool ([#6604](https://github.com/hcengineering/platform/issues/6604)) + +## [0.6.296] - 2024-09-17 + +* 🐛 BUG FIXES: · Get rid of NOTIFY_INBOX_ONLY env variable ([#6592](https://github.com/hcengineering/platform/issues/6592)) +* UBERF-8122: · Fix backup service + +## [0.6.295] - 2024-09-16 + +* 🐛 BUG FIXES: · Proper order of versions in upgrade string ([#6567](https://github.com/hcengineering/platform/issues/6567)) · Check for deleted objects ([#6581](https://github.com/hcengineering/platform/issues/6581)) +* UBERF-8098: · Basic client metrics in UI ([#6556](https://github.com/hcengineering/platform/issues/6556)) +* UBERF-8120: · Fix high CPU usage in github service ([#6573](https://github.com/hcengineering/platform/issues/6573)) +* UBERF-8122: · Fix backup service ([#6577](https://github.com/hcengineering/platform/issues/6577)) + ## [0.6.294] - 2024-09-13 -* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) -* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) -* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) -* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) -* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) -* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) +* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) +* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) +* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) +* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) +* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) +* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) ## [0.6.293] - 2024-09-12 -* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) -* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) -* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) +* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) +* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) +* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) ## [0.6.292] - 2024-09-11 -* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) -* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) -* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) -* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) +* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) +* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) +* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) +* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) ## [0.6.291] - 2024-09-10 -* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) +* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) ## [0.6.289] - 2024-09-10 -* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) -* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) -* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) -* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) -* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) -* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) -* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) -* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) -* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) -* UBERF-8053: · Disable re-check for milestones -* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) -* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) -* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) -* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) +* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) +* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) +* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) +* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) +* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) +* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) +* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) +* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) +* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) +* UBERF-8053: · Disable re-check for milestones +* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) +* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) +* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) +* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) ## [s0.6.288b] - 2024-08-30 -* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) +* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) ## [s0.6.288a] - 2024-08-29 -* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) +* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) ## [s0.6.278] - 2024-08-29 -* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) -* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) -* UBERF-8053: · Disable re-check for milestones -* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) +* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) +* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) +* UBERF-8053: · Disable re-check for milestones +* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) ## [0.6.288] - 2024-09-03 -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) ## [0.6.286] - 2024-08-28 -* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) -* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) +* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) +* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) ## [0.6.285a] - 2024-08-27 -* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) +* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) ## [0.6.285] - 2024-08-27 -* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) -* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) -* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) -* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) +* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) +* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) +* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) +* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) ## [0.6.284a] - 2024-08-26 -* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) -* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) +* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) +* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) ## [0.6.284] - 2024-08-23 -* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) -* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) +* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) +* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) ## [0.6.283] - 2024-08-21 -* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) +* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) ## [0.6.281a] - 2024-08-21 -* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) +* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) ## [0.6.281] - 2024-08-20 -* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) -* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) -* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) +* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.280a] - 2024-08-12 -* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) ## [0.6.280] - 2024-08-11 -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.279] - 2024-08-09 -* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) ## [0.6.277] - 2024-08-08 -* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) -* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) -* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) +* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) +* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) +* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) ## [0.6.276] - 2024-08-07 -* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) -* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) -* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) -* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) -* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) -* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) +* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) +* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) +* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) +* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) +* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) +* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) ## [0.6.274] - 2024-08-05 -* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) -* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) -* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) -* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) -* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) +* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) +* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) +* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) +* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) +* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) ## [0.6.271] - 2024-08-02 -* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) +* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) ## [0.6.271rc1] - 2024-08-01 -* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) -* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) -* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) -* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) -* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) -* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) +* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) +* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) +* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) +* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) +* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) ## [0.6.270] - 2024-07-30 -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) ## [0.6.269] - 2024-07-30 -* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) ## [0.6.268] - 2024-07-29 -* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) -* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) +* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) +* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) ## [0.6.267] - 2024-07-29 -* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) -* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) -* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) -* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) -* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) -* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) -* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) +* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) +* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) +* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) +* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) +* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) +* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) +* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) ## [0.6.266] - 2024-07-24 -* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) -* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) -* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) -* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) -* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) -* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) -* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) +* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) +* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) +* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) +* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) +* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) +* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) +* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) ## [0.6.265] - 2024-07-19 -* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) -* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) -* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) -* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) -* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) -* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) +* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) +* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) +* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) +* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) +* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) +* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) ## [0.6.264] - 2024-07-12 -* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) -* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) -* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) -* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) +* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) +* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) +* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) +* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) ## [0.6.263] - 2024-07-10 -* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) +* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) ## [0.6.262] - 2024-07-10 -* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) +* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) ## [0.6.261] - 2024-07-09 -* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) -* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) -* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) -* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) +* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) +* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) +* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) +* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) ## [0.6.260] - 2024-07-04 -* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) -* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) -* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) -* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) -* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) -* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) -* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) -* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) +* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) +* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) +* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) +* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) +* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) +* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) +* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) +* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) ## [0.6.259] - 2024-06-28 -* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) -* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) +* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) +* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) ## [0.6.258] - 2024-06-27 -* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) -* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) -* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) -* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) -* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) +* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) +* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) +* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) +* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) +* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) ## [0.6.257] - 2024-06-25 -* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) -* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) -* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) -* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) -* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) -* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) -* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) +* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) +* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) +* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) +* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) +* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) +* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) +* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) ## [0.6.256] - 2024-06-20 -* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) -* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) -* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) -* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) +* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) +* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) +* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) +* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) ## [0.6.255] - 2024-06-18 -* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) -* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) -* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) -* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) -* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) -* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) -* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) -* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) -* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) +* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) +* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) +* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) +* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) +* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) +* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) +* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) +* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) +* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) ## [0.6.254] - 2024-06-14 -* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) +* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) ## [0.6.253] - 2024-06-13 -* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) -* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) -* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) +* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) +* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) +* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) ## [0.6.252] - 2024-06-12 -* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) -* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) -* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) -* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) +* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) +* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) +* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) +* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) ## [0.6.251] - 2024-06-11 -* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) -* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) -* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) +* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) +* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) +* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) ## [0.6.250] - 2024-06-07 -* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) -* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) +* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) +* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) ## [0.6.249] - 2024-06-05 -* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) -* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) -* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) +* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) +* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) +* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) ## [0.6.248] - 2024-05-31 -* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) -* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) +* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) +* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) ## [0.6.247] - 2024-05-30 -* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) -* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) -* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) -* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) -* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) -* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) -* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) -* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) -* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) -* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) +* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) +* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) +* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) +* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) +* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) +* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) +* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) +* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) +* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) +* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) ## [0.6.246] - 2024-05-23 -* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) -* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) +* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) +* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) ## [0.6.245] - 2024-05-22 -* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) -* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) -* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) -* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) -* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) +* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) +* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) +* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) +* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) +* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) ## [0.6.243] - 2024-05-13 -* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) -* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) -* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) -* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) -* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) +* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) +* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) +* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) +* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) +* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) ## [0.6.242] - 2024-05-10 -* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) -* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) -* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) +* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) +* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) +* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) ## [0.6.241] - 2024-05-08 -* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) -* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) +* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) +* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) ## [0.6.240] - 2024-05-06 -* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) -* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) -* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) -* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) -* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) -* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) -* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) -* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) +* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) +* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) +* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) +* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) +* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) +* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) +* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) +* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) ## [0.6.239] - 2024-05-03 -* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) -* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) -* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) -* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) -* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) +* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) +* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) +* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) +* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) +* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) ## [0.6.238] - 2024-04-26 -* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) -* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) -* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) -* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) -* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) +* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) +* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) +* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) +* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) +* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) ## [0.6.237] - 2024-04-23 -* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) +* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) ## [0.6.236] - 2024-04-23 -* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) +* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) ## [0.6.235a] - 2024-04-20 -* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) -* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) +* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) +* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) ## [0.6.235] - 2024-04-19 -* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) -* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) +* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) +* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) ## [0.6.234] - 2024-04-18 -* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) -* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) -* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) -* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) +* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) +* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) +* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) +* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) ## [0.6.233] - 2024-04-16 -* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) -* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) -* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) +* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) +* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) +* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) ## [0.6.232] - 2024-04-16 -* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) -* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) -* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) -* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) -* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) -* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) -* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) +* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) +* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) +* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) +* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) +* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) +* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) +* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) ## [0.6.231] - 2024-04-13 -* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) -* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) -* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) -* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) -* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) -* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) -* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) +* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) +* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) +* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) +* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) +* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) +* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) +* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) ## [0.6.230] - 2024-04-10 -* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) -* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) +* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) +* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) ## [0.6.229] - 2024-04-10 -* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) -* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) -* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) +* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) +* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) +* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) ## [0.6.228a] - 2024-04-09 -* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) -* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) +* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) +* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) ## [0.6.228] - 2024-04-08 -* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) -* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) +* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) +* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) ## [0.6.227] - 2024-04-08 -* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) -* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) -* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) -* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) -* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) +* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) +* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) +* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) +* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) +* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) ## [0.6.226] - 2024-04-04 -* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) -* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) -* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) +* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) +* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) +* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) ## [0.6.225] - 2024-04-03 -* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) -* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) -* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) -* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) +* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) +* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) +* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) +* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) ## [0.6.224] - 2024-04-02 -* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) +* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) ## [0.6.223] - 2024-04-02 -* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) -* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) -* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) -* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) +* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) +* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) +* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) +* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) ## [0.6.222] - 2024-04-01 -* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) -* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) -* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) +* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) +* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) +* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) ## [0.6.221] - 2024-03-29 -* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) -* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) -* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) +* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) +* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) +* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) ## [0.6.220] - 2024-03-28 -* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) +* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) ## [0.6.219] - 2024-03-28 -* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) -* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) -* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) -* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) -* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) +* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) +* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) +* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) +* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) +* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) ## [0.6.218] - 2024-03-27 -* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) -* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) -* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) -* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) +* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) +* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) +* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) +* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) ## [0.6.216] - 2024-03-25 -* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) -* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) -* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) -* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) -* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) -* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) +* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) +* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) +* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) +* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) +* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) +* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) ## [0.6.215] - 2024-03-21 -* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) -* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) +* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) +* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) ## [0.6.214] - 2024-03-19 -* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) -* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) -* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) -* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) -* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) +* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) +* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) +* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) +* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) +* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) ## [0.6.213] - 2024-03-15 -* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) -* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) +* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) +* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) ## [0.6.212] - 2024-03-15 -* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) -* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) -* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) -* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) -* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) -* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) +* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) +* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) +* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) +* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) +* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) +* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) ## [0.6.211] - 2024-03-13 -* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) +* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) ## [0.6.210a] - 2024-03-13 -* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) -* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) +* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) +* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) ## [0.6.210] - 2024-03-13 -* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) -* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) -* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) -* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) -* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) -* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) -* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) -* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) -* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) -* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) +* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) +* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) +* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) +* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) +* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) +* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) +* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) +* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) +* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) +* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) ## [0.6.209] - 2024-03-08 -* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) -* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) -* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) -* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) -* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) -* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) -* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) -* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) -* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) -* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) -* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) +* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) +* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) +* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) +* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) +* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) +* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) +* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) +* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) +* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) +* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) +* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) ## [0.6.208] - 2024-03-04 -* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) -* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) -* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) -* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) +* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) +* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) +* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) +* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) ## [0.6.207] - 2024-03-01 -* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) +* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) ## [0.6.206] - 2024-03-01 -* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) -* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) +* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) +* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) ## [0.6.205] - 2024-02-29 -* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) -* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) -* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) -* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) -* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) -* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) -* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) -* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) -* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) -* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) -* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) -* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) -* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) -* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) -* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) +* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) +* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) +* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) +* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) +* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) +* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) +* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) +* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) +* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) +* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) +* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) +* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) +* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) +* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) +* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) ## [0.6.204] - 2024-02-26 -* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) +* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) ## [0.6.203] - 2024-02-25 -* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) +* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) ## [0.6.202] - 2024-02-23 -* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) -* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) -* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) -* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) -* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) -* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) -* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) +* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) +* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) +* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) +* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) +* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) +* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) +* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) ## [0.6.201] - 2024-02-20 -* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) -* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) +* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) +* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) ## [0.6.200] - 2024-02-19 -* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) -* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) -* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) -* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) +* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) +* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) +* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) +* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) ## [0.6.198] - 2024-02-16 -* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) -* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) -* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) -* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) -* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) -* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) +* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) +* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) +* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) +* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) +* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) +* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) ## [0.6.197] - 2024-02-15 -* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) -* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) -* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) +* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) +* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) +* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) ## [0.6.196] - 2024-02-14 -* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) -* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) -* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) -* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) -* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) -* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) +* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) +* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) +* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) +* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) +* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) +* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) ## [0.6.195] - 2024-02-13 -* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) -* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) -* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) -* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) -* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) -* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) -* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) +* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) +* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) +* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) +* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) +* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) +* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) +* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) ## [0.6.194] - 2024-02-09 -* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) -* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) -* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) +* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) +* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) +* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) ## [0.6.193] - 2024-02-08 -* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) -* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) -* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) -* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) -* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) -* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) -* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) +* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) +* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) +* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) +* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) +* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) +* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) +* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) ## [0.6.192] - 2024-02-07 -* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) -* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) -* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) -* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) -* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) -* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) -* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) -* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) -* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) -* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) -* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) +* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) +* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) +* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) +* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) +* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) +* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) +* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) +* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) +* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) +* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) +* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) ## [0.6.191] - 2024-02-05 -* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) -* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) -* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) +* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) +* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) +* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) ## [0.6.190] - 2024-02-03 -* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) +* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) ## [0.6.188] - 2024-02-02 -* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) -* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) -* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) -* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) -* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) -* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) -* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) -* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) -* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) -* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) -* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) -* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) +* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) +* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) +* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) +* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) +* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) +* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) +* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) +* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) +* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) +* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) +* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) +* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) ## [0.6.187] - 2024-01-30 -* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) -* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) -* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) -* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) -* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) +* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) +* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) +* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) +* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) +* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) ## [0.6.186] - 2024-01-25 -* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) -* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) -* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) -* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) +* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) +* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) +* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) +* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) ## [0.6.185] - 2024-01-25 -* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) +* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) ## [0.6.184] - 2024-01-24 -* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) -* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) +* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) +* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) ## [0.6.183] - 2024-01-23 -* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) -* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) -* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) +* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) +* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) +* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) ## [0.6.182] - 2024-01-22 -* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) -* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) -* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) +* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) +* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) +* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) ## [0.6.181a] - 2024-01-20 -* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) -* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) +* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) +* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) ## [0.6.181] - 2024-01-19 -* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) -* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) -* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) +* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) +* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) +* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) ## [0.6.180] - 2024-01-18 -* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) -* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) +* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) +* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) ## [0.6.179] - 2024-01-17 -* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) -* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) -* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) -* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) +* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) +* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) +* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) +* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) ## [0.6.178] - 2024-01-16 -* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) -* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) -* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) -* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) -* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) -* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) -* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) +* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) +* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) +* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) +* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) +* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) +* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) +* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) ## [0.6.177] - 2024-01-08 -* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) -* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) +* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) +* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) ## [0.6.175] - 2024-01-05 -* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) +* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) ## [0.6.174a] - 2023-12-29 -* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) +* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) ## [0.6.173] - 2023-12-28 -* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) -* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) -* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) -* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) -* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) -* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) -* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) -* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) -* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) -* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) -* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) -* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) -* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) -* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) +* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) +* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) +* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) +* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) +* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) +* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) +* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) +* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) +* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) +* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) +* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) +* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) +* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) +* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) ## [0.6.172] - 2023-12-21 -* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) -* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) -* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) -* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) -* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) +* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) +* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) +* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) +* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) +* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) ## [0.6.171] - 2023-12-20 -* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) -* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) -* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) -* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) -* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) -* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) -* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) -* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) -* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) -* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) -* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) -* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) -* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) -* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) -* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) -* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) -* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) +* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) +* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) +* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) +* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) +* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) +* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) +* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) +* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) +* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) +* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) +* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) +* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) +* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) +* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) +* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) +* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) +* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) ## [0.6.170] - 2023-12-07 -* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) -* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) -* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) -* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) +* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) +* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) +* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) +* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) ## [0.6.169] - 2023-12-06 -* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) -* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) -* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) -* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) +* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) +* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) +* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) +* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) ## [0.6.168] - 2023-12-05 -* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) +* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) ## [0.6.167] - 2023-12-05 -* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) -* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) -* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) -* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) +* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) +* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) +* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) +* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) ## [0.6.166] - 2023-12-04 -* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) -* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) +* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) +* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) ## [0.6.165] - 2023-12-02 -* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) -* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) -* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) +* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) +* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) +* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) ## [0.6.164] - 2023-12-01 -* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) -* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) -* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) -* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) -* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) +* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) +* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) +* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) +* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) +* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) ## [0.6.163] - 2023-11-29 -* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) -* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) -* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) -* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) -* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) +* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) +* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) +* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) +* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) +* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) ## [0.6.162] - 2023-11-29 -* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) -* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) -* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) -* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) -* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) -* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) +* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) +* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) +* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) +* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) +* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) +* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) ## [0.6.161] - 2023-11-28 -* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) -* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) -* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) -* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) -* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) -* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) -* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) -* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) +* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) +* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) +* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) +* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) +* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) +* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) +* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) +* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) ## [0.6.160] - 2023-11-27 -* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) -* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) +* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) +* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) ## [0.6.159] - 2023-11-24 -* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) -* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) -* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) +* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) +* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) +* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) ## [0.6.158] - 2023-11-23 -* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) -* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) -* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) -* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) -* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) -* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) -* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) +* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) +* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) +* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) +* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) +* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) +* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) +* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) ## [0.6.157] - 2023-11-21 -* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) -* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) -* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) -* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) -* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) -* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) -* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) +* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) +* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) +* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) +* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) +* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) +* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) +* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) ## [0.6.156] - 2023-11-15 -* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) -* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) -* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) -* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) -* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) -* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) +* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) +* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) +* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) +* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) +* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) +* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) ## [0.6.155a] - 2023-11-14 -* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) -* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) +* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) +* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) ## [0.6.155] - 2023-11-14 -* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) -* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) -* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) -* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) +* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) +* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) +* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) +* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) ## [0.6.154a] - 2023-11-10 -* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) +* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) ## [0.6.154] - 2023-11-10 -* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) -* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) -* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) +* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) +* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) +* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) ## [0.6.153] - 2023-11-08 -* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) +* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) ## [0.6.152] - 2023-11-07 -* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) -* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) -* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) -* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) -* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) +* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) +* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) +* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) +* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) +* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) ## [0.6.151] - 2023-11-03 -* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) -* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) -* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) +* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) +* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) +* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) ## [0.6.150] - 2023-11-01 -* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) -* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) -* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) -* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) -* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) -* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) -* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) -* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) -* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) +* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) +* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) +* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) +* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) +* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) +* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) +* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) +* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) +* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) ## [0.6.149] - 2023-10-30 -* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) -* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) -* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) -* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) -* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) -* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) -* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) +* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) +* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) +* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) +* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) +* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) +* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) +* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) ## [0.6.148] - 2023-10-26 -* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) -* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) -* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) +* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) +* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) +* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) ## [0.6.147] - 2023-10-26 -* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) -* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) -* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) -* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) -* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) -* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) -* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) -* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) -* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) -* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) -* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) -* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) -* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) +* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) +* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) +* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) +* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) +* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) +* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) +* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) +* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) +* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) +* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) +* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) +* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) +* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) ## [0.6.146] - 2023-10-23 -* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) +* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) ## [0.6.145] - 2023-10-19 -* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) -* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) -* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) -* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) -* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) -* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) -* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) +* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) +* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) +* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) +* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) +* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) +* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) +* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) ## [0.6.144] - 2023-10-16 -* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) -* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) +* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) +* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) ## [0.6.142] - 2023-10-13 -* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) -* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) +* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) +* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) ## [0.6.141] - 2023-10-11 -* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) -* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) +* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) +* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) ## [0.6.140] - 2023-10-10 -* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) -* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) +* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) +* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) ## [0.6.139a] - 2023-10-09 -* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) +* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) ## [0.6.138] - 2023-10-06 -* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) -* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) +* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) +* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) ## [0.6.137] - 2023-10-03 -* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) -* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) -* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) +* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) +* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) +* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) ## [0.6.136] - 2023-10-02 -* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) -* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) +* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) +* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) ## [0.6.135] - 2023-10-01 -* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) -* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) -* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) +* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) +* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) +* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) ## [0.6.134] - 2023-09-29 -* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) -* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) -* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) +* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) +* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) +* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) ## [0.6.133] - 2023-09-27 -* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) -* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) -* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) -* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) +* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) +* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) +* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) +* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) ## [0.6.132] - 2023-09-26 -* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) -* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) +* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) +* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) ## [0.6.131] - 2023-09-22 -* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) -* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) -* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) +* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) +* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) +* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) ## [0.6.130] - 2023-09-20 -* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) +* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) ## [0.6.129] - 2023-09-20 -* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) +* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) ## [0.6.128] - 2023-09-19 -* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) +* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) ## [0.6.127] - 2023-09-19 -* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) +* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) ## [0.6.126] - 2023-09-18 -* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) -* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) -* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) -* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) -* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) -* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) -* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) -* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) -* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) -* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) -* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) -* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) -* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) +* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) +* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) +* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) +* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) +* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) +* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) +* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) +* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) +* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) +* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) +* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) +* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) +* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) ## [0.6.125] - 2023-09-11 -* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) +* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) ## [0.6.124] - 2023-09-08 -* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) -* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) -* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) -* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) -* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) -* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) -* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) -* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) -* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) -* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) +* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) +* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) +* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) +* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) +* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) +* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) +* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) +* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) +* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) +* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) ## [0.6.123] - 2023-08-30 -* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) -* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) +* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) +* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) ## [0.6.122] - 2023-08-25 -* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) -* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) -* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) -* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) -* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) -* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) -* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) +* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) +* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) +* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) +* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) +* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) +* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) +* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) ## [0.6.121] - 2023-08-24 -* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) -* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) -* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) +* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) +* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) +* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) ## [0.6.120a] - 2023-08-22 -* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) +* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) ## [0.6.120] - 2023-08-22 -* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) +* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) ## [0.6.119] - 2023-08-19 -* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) -* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) -* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) -* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) +* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) +* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) +* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) +* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) ## [0.6.118] - 2023-08-17 -* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) -* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) -* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) -* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) -* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) -* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) +* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) +* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) +* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) +* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) +* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) +* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) ## [0.6.117] - 2023-08-14 -* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) +* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) ## [0.6.116] - 2023-08-10 -* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) -* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) -* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) -* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) +* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) +* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) +* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) +* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) ## [0.6.115] - 2023-08-08 -* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) -* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) +* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) +* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) ## [0.6.114] - 2023-08-07 -* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) -* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) +* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) +* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) ## [0.6.113] - 2023-08-03 -* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) -* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) -* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) -* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) +* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) +* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) +* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) +* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) ## [0.6.112b] - 2023-08-01 -* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) -* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) +* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) +* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) ## [0.6.112a] - 2023-07-31 -* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) +* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) ## [0.6.112] - 2023-07-29 -* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) -* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) -* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) -* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) -* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) -* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) -* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) -* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) -* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) -* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) -* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) -* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) -* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) -* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) -* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) +* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) +* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) +* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) +* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) +* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) +* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) +* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) +* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) +* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) +* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) +* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) +* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) +* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) +* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) +* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) ## [0.6.111] - 2023-07-13 -* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) -* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) -* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) +* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) +* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) +* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) ## [0.6.110] - 2023-07-08 -* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) -* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) -* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) -* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) -* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) -* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) -* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) -* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) -* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) -* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) -* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) -* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) -* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) -* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) -* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) -* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) -* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) -* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) -* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) -* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) -* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) -* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) -* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) +* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) +* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) +* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) +* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) +* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) +* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) +* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) +* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) +* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) +* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) +* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) +* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) +* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) +* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) +* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) +* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) +* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) +* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) +* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) +* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) +* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) +* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) +* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) ## [0.6.109] - 2023-06-16 -* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) -* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) -* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) -* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) -* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) -* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) -* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) +* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) +* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) +* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) +* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) +* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) +* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) +* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) ## [0.6.108] - 2023-06-12 -* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) -* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) -* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) -* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) -* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) +* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) +* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) +* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) +* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) +* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) ## [0.6.107] - 2023-06-09 -* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) -* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) -* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) +* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) +* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) +* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) ## [0.6.106] - 2023-06-08 -* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) -* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) -* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) -* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) -* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) -* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) -* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) -* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) -* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) +* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) +* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) +* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) +* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) +* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) +* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) +* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) +* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) +* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) ## [0.6.104] - 2023-06-07 -* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) +* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) ## [0.6.103] - 2023-06-07 -* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) -* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) +* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) +* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) ## [0.6.102] - 2023-06-06 -* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) -* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) -* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) -* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) -* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) -* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) -* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) -* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) +* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) +* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) +* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) +* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) +* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) +* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) +* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) +* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) ## [0.6.101] - 2023-06-05 -* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) -* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) -* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) -* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) -* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) -* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) +* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) +* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) +* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) +* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) +* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) +* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) ## [0.6.100] - 2023-06-02 -* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) -* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) -* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) -* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) -* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) -* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) -* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) -* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) -* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) -* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) +* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) +* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) +* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) +* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) +* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) +* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) +* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) +* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) +* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) +* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) ## [0.6.99] - 2023-05-30 -* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) -* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) -* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) -* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) -* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) -* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) -* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) -* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) -* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) -* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) -* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) -* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) -* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) +* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) +* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) +* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) +* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) +* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) +* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) +* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) +* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) +* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) +* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) +* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) +* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) +* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) ## [0.6.98a] - 2023-05-28 -* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) -* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) +* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) +* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) ## [0.6.98] - 2023-05-27 -* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) -* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) -* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) -* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) -* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) -* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) -* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) -* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) +* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) +* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) +* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) +* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) +* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) +* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) +* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) +* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) ## [0.6.97] - 2023-05-24 -* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) -* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) -* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) -* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) -* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) -* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) -* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) -* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) -* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) -* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) -* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) -* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) -* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) -* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) +* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) +* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) +* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) +* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) +* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) +* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) +* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) +* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) +* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) +* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) +* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) +* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) +* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) +* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) ## [0.6.96] - 2023-05-21 -* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) -* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) -* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) -* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) -* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) -* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) -* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) -* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) -* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) -* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) -* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) -* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) -* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) -* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) -* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) -* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) -* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) -* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) -* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) -* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) -* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) -* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) +* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) +* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) +* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) +* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) +* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) +* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) +* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) +* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) +* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) +* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) +* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) +* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) +* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) +* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) +* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) +* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) +* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) +* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) +* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) +* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) +* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) +* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) ## [0.6.95] - 2023-05-12 -* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) -* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) -* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) -* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) -* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) -* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) -* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) -* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) -* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) -* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) -* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) +* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) +* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) +* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) +* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) +* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) +* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) +* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) +* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) +* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) +* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) +* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) ## [0.6.94] - 2023-05-04 -* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) -* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) -* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) -* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) -* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) +* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) +* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) +* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) +* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) +* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) ## [0.6.93] - 2023-05-04 -* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) -* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) -* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) -* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) -* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) -* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) -* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) +* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) +* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) +* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) +* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) +* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) +* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) +* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) ## [0.6.92] - 2023-05-02 -* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) -* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) -* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) -* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) -* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) -* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) -* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) -* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) +* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) +* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) +* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) +* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) +* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) +* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) +* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) +* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) ## [0.6.91a] - 2023-04-27 -* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) -* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) -* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) +* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) +* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) +* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) ## [0.6.91] - 2023-04-27 -* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) -* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) -* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) -* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) -* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) -* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) -* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) -* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) -* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) -* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) -* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) -* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) -* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) -* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) -* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) +* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) +* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) +* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) +* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) +* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) +* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) +* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) +* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) +* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) +* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) +* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) +* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) +* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) +* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) +* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) ## [0.6.90] - 2023-04-23 -* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) +* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) ## [0.6.89] - 2023-04-21 -* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) -* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) -* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) -* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) +* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) +* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) +* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) +* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) ## [0.6.88] - 2023-04-19 -* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) -* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) -* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) +* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) +* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) +* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) ## [0.6.87] - 2023-04-19 -* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) -* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) -* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) +* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) +* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) +* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) ## [0.6.86] - 2023-04-17 -* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) -* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) -* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) +* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) +* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) +* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) ## [0.6.85] - 2023-04-17 -* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) -* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) +* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) +* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) ## [0.6.84] - 2023-04-16 -* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) +* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) ## [0.6.83] - 2023-04-14 -* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) -* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) -* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) +* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) +* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) +* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) ## [0.6.82] - 2023-04-13 -* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) -* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) -* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) -* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) +* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) +* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) +* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) +* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) ## [0.6.81] - 2023-04-12 -* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) -* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) -* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) -* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) -* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) -* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) +* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) +* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) +* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) +* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) +* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) +* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) ## [0.6.80a] - 2023-04-12 -* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) +* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) ## [0.6.80] - 2023-04-11 -* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) -* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) -* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) -* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) -* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) +* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) +* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) +* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) +* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) +* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) ## [0.6.79] - 2023-04-07 -* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) -* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) -* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) -* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) -* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) -* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) -* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) -* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) -* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) -* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) +* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) +* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) +* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) +* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) +* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) +* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) +* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) +* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) +* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) +* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) ## [0.6.78] - 2023-04-03 -* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) -* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) +* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) +* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) ## [0.6.77] - 2023-03-31 -* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) -* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) -* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) -* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) -* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) -* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) -* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) -* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) -* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) -* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) -* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) -* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) -* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) +* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) +* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) +* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) +* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) +* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) +* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) +* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) +* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) +* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) +* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) +* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) +* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) +* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) ## [0.6.76a] - 2023-03-24 -* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) -* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) +* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) +* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) ## [0.6.76] - 2023-03-24 -* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) -* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) -* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) -* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) -* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) -* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) -* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) -* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) -* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) -* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) -* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) -* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) -* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) +* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) +* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) +* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) +* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) +* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) +* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) +* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) +* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) +* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) +* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) +* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) +* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) +* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) ## [0.6.75b] - 2023-03-21 -* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) -* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) +* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) +* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) ## [0.6.75a] - 2023-03-21 -* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) -* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) +* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) +* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) ## [0.6.75] - 2023-03-21 -* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) -* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) -* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) -* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) -* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) -* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) -* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) +* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) +* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) +* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) +* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) +* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) +* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) +* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) ## [0.6.74] - 2023-03-17 -* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) -* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) +* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) +* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) ## [0.6.73a] - 2023-03-16 -* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) -* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) -* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) -* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) +* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) +* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) +* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) +* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) ## [0.6.73] - 2023-03-16 -* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) -* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) -* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) -* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) -* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) -* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) +* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) +* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) +* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) +* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) +* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) +* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) ## [0.6.72a] - 2023-03-13 -* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) +* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) ## [0.6.69b] - 2023-03-02 -* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) -* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) +* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) +* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) ## [0.6.69] - 2023-03-01 -* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) -* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) -* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) -* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) +* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) +* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) +* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) +* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) ## [0.6.68] - 2023-02-22 -* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) -* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) +* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) +* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) ## [0.6.67] - 2023-02-20 -* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) -* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) -* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) -* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) -* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) +* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) +* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) +* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) +* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) +* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) ## [0.6.65] - 2023-02-10 -* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) +* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) ## [0.6.64] - 2023-02-08 -* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) -* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) -* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) +* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) +* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) +* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) ## [0.6.61] - 2023-01-30 -* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) -* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) +* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) +* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) ## [0.6.57] - 2023-01-24 -* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) +* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) ## [0.6.55] - 2023-01-20 -* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) +* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) ## [0.6.53a] - 2022-12-30 -* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) +* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) ## [0.6.52] - 2022-12-22 -* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) +* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) ## [0.6.51] - 2022-12-21 -* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) +* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) ## [0.6.50] - 2022-12-16 -* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) +* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) ## [0.6.49] - 2022-12-15 -* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) -* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) -* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) +* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) +* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) +* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) ## [0.6.48] - 2022-12-07 -* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) -* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) +* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) +* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) ## [0.6.47] - 2022-12-02 -* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) +* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) ## [0.6.46] - 2022-11-29 -* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) +* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) ## [0.6.45] - 2022-11-24 -* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) -* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) -* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) -* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) +* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) +* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) +* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) +* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) ## [0.6.44] - 2022-11-22 -* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) -* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) -* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) +* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) +* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) +* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) ## [0.6.41] - 2022-11-12 -* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) -* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) +* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) +* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) ## [0.6.40] - 2022-11-02 -* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) -* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) +* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) +* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) ## [0.6.34] - 2022-08-25 -* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) +* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) ## [0.6.33a] - 2022-08-22 -* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) +* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) ## [0.6.31] - 2022-07-19 -* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) +* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) ## [0.6.30c] - 2022-07-10 -* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) +* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) ## [0.6.30b] - 2022-07-07 -* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) -* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) +* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) +* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) ## [0.6.30a] - 2022-07-04 -* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) -* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) +* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) +* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) ## [0.6.30] - 2022-07-02 -* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) -* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) -* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) -* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) -* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) +* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) +* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) +* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) +* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) +* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) ## [0.6.29b] - 2022-06-27 -* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) +* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) ## [0.6.29a] - 2022-06-27 -* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) +* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) ## [0.6.29] - 2022-06-25 -* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) -* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) -* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) -* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) +* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) +* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) +* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) +* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) ## [0.6.28] - 2022-06-20 -* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) -* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) -* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) +* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) +* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) +* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) ## [0.6.27] - 2022-06-15 -* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) -* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) -* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) -* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) -* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) +* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) +* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) +* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) +* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) +* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) ## [0.6.26] - 2022-06-10 -* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) +* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) ## [0.6.25] - 2022-06-08 -* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) +* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) ## [0.6.24] - 2022-06-07 -* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) -* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) +* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) +* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) ## [0.6.23] - 2022-06-03 -* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) -* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) -* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) -* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) +* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) +* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) +* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) +* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) ## [0.6.22] - 2022-05-29 -* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) -* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) -* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) +* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) +* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) +* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) ## [0.6.21] - 2022-05-24 -* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) +* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) ## [0.6.20] - 2022-05-23 -* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) +* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) ## [0.6.19] - 2022-05-22 -* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) -* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) -* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) -* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) -* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) -* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) +* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) +* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) +* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) +* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) +* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) +* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) ## [0.6.18] - 2022-05-15 -* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) -* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) -* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) +* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) +* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) +* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) ## [0.6.15] - 2022-05-05 -* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) -* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) -* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) -* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) +* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) +* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) +* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) +* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) ## [0.6.14] - 2022-04-26 -* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) -* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) -* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) +* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) +* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) +* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) ## [0.6.13] - 2022-04-24 -* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) -* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) -* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) +* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) +* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) +* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) ## [0.6.12] - 2022-04-18 -* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) -* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) +* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) +* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) ## [0.6.11] - 2022-04-17 -* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) -* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) -* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) +* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) +* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) +* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) ## [0.6.8] - 2022-03-19 -* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) +* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) ## [0.6.0] - 2021-11-22 -* CLEAN: · Package.json +* CLEAN: · Package.json diff --git a/common/scripts/version.txt b/common/scripts/version.txt index ca48e843a01..07a56886909 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.294" +"0.6.298" From 9f73cb811f4153f9eeec7188d8af25974063b430 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 20 Sep 2024 16:11:29 +0700 Subject: [PATCH 070/149] Bump model version Signed-off-by: Andrey Sobolev --- changelog.md | 16 ++++++++++++++++ common/scripts/version.txt | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index a355193023d..f9cba1b07be 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,22 @@ Changelog. +## [0.6.301] - 2024-09-20 + +* PLANNER: · Fixed sticking to events when resizing ([#6648](https://github.com/hcengineering/platform/issues/6648)) +* UBERF-8163: · Split ws into server + desktop backup support ([#6630](https://github.com/hcengineering/platform/issues/6630)) + +## [0.6.300] - 2024-09-19 + +* UBERF-6593: · Add document content tests ([#6594](https://github.com/hcengineering/platform/issues/6594)) + +## [0.6.299] - 2024-09-18 + +* 🚀 FEATURES: · Improve links behavior in the editor ([#6612](https://github.com/hcengineering/platform/issues/6612)) +* 🐛 BUG FIXES: · Add codeblock commands to highlighted extension ([#6613](https://github.com/hcengineering/platform/issues/6613)) +* ⚙️ MISCELLANEOUS TASKS: · Update tiptap to v2.6.6 ([#6596](https://github.com/hcengineering/platform/issues/6596)) +* UBEFR-8162: · Fix default language ([#6621](https://github.com/hcengineering/platform/issues/6621)) + ## [0.6.298] - 2024-09-18 * UBERF-8139: · Check server version when connecting from client ([#6608](https://github.com/hcengineering/platform/issues/6608)) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 07a56886909..6f5960a0be8 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.298" +"0.6.301" From d1ebe4061796b1572e9579c24f2330bba920ceb3 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 20 Sep 2024 16:12:47 +0700 Subject: [PATCH 071/149] Skip flacky test Signed-off-by: Andrey Sobolev --- tests/sanity/tests/documents/documents-content.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sanity/tests/documents/documents-content.spec.ts b/tests/sanity/tests/documents/documents-content.spec.ts index 316deeeae3a..8981ca0d1cb 100644 --- a/tests/sanity/tests/documents/documents-content.spec.ts +++ b/tests/sanity/tests/documents/documents-content.spec.ts @@ -170,7 +170,7 @@ test.describe('Content in the Documents tests', () => { }) }) - test('Check Image view and size actions', async ({ page }) => { + test.skip('Check Image view and size actions', async ({ page }) => { await documentContentPage.addImageToDocument(page) const imageSrc = await documentContentPage.firstImageInDocument().getAttribute('src') From c1d6fd4150b4f5640b6c0f8a4d30ccbb15b75790 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 20 Sep 2024 22:11:09 +0700 Subject: [PATCH 072/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 6f5960a0be8..57ea3d18ec9 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.301" +"0.6.302" From 0f75910878c7d54c6f31c0bb802e2625bd92197d Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 23 Sep 2024 13:37:48 +0700 Subject: [PATCH 073/149] Bump model version Signed-off-by: Andrey Sobolev --- changelog.md | 2336 ++++++++++++++++++------------------ common/scripts/version.txt | 2 +- 2 files changed, 1176 insertions(+), 1162 deletions(-) diff --git a/changelog.md b/changelog.md index f9cba1b07be..3afd5aadf8c 100644 --- a/changelog.md +++ b/changelog.md @@ -2,2032 +2,2046 @@ Changelog. +## [0.6.304] - 2024-09-23 + +* UBERF-8224: · Fix undefined rejection exception ([#6677](https://github.com/hcengineering/platform/issues/6677)) + +## [0.6.303] - 2024-09-23 + +* UBERF-8185: · Fix duplicate hierarchy clases ([#6660](https://github.com/hcengineering/platform/issues/6660)) + +## [0.6.302] - 2024-09-20 + +* PLANNER: · Updated ToDos layout ([#6651](https://github.com/hcengineering/platform/issues/6651)) +* EQZMS-1175: · Improve copy UX when clipboard is not available ([#6657](https://github.com/hcengineering/platform/issues/6657)) +* UBERF-8195: · Support openid auth ([#6654](https://github.com/hcengineering/platform/issues/6654)) + ## [0.6.301] - 2024-09-20 -* PLANNER: · Fixed sticking to events when resizing ([#6648](https://github.com/hcengineering/platform/issues/6648)) -* UBERF-8163: · Split ws into server + desktop backup support ([#6630](https://github.com/hcengineering/platform/issues/6630)) +* PLANNER: · Fixed sticking to events when resizing ([#6648](https://github.com/hcengineering/platform/issues/6648)) +* UBERF-8163: · Split ws into server + desktop backup support ([#6630](https://github.com/hcengineering/platform/issues/6630)) ## [0.6.300] - 2024-09-19 -* UBERF-6593: · Add document content tests ([#6594](https://github.com/hcengineering/platform/issues/6594)) +* UBERF-6593: · Add document content tests ([#6594](https://github.com/hcengineering/platform/issues/6594)) ## [0.6.299] - 2024-09-18 -* 🚀 FEATURES: · Improve links behavior in the editor ([#6612](https://github.com/hcengineering/platform/issues/6612)) -* 🐛 BUG FIXES: · Add codeblock commands to highlighted extension ([#6613](https://github.com/hcengineering/platform/issues/6613)) -* ⚙️ MISCELLANEOUS TASKS: · Update tiptap to v2.6.6 ([#6596](https://github.com/hcengineering/platform/issues/6596)) -* UBEFR-8162: · Fix default language ([#6621](https://github.com/hcengineering/platform/issues/6621)) +* 🚀 FEATURES: · Improve links behavior in the editor ([#6612](https://github.com/hcengineering/platform/issues/6612)) +* 🐛 BUG FIXES: · Add codeblock commands to highlighted extension ([#6613](https://github.com/hcengineering/platform/issues/6613)) +* ⚙️ MISCELLANEOUS TASKS: · Update tiptap to v2.6.6 ([#6596](https://github.com/hcengineering/platform/issues/6596)) +* UBEFR-8162: · Fix default language ([#6621](https://github.com/hcengineering/platform/issues/6621)) ## [0.6.298] - 2024-09-18 -* UBERF-8139: · Check server version when connecting from client ([#6608](https://github.com/hcengineering/platform/issues/6608)) -* UBERF-8150: · Update to fresh mongo ([#6603](https://github.com/hcengineering/platform/issues/6603)) +* UBERF-8139: · Check server version when connecting from client ([#6608](https://github.com/hcengineering/platform/issues/6608)) +* UBERF-8150: · Update to fresh mongo ([#6603](https://github.com/hcengineering/platform/issues/6603)) ## [0.6.297] - 2024-09-17 -* UBERF-8149: · Reset workspace attempts counter tool ([#6604](https://github.com/hcengineering/platform/issues/6604)) +* UBERF-8149: · Reset workspace attempts counter tool ([#6604](https://github.com/hcengineering/platform/issues/6604)) ## [0.6.296] - 2024-09-17 -* 🐛 BUG FIXES: · Get rid of NOTIFY_INBOX_ONLY env variable ([#6592](https://github.com/hcengineering/platform/issues/6592)) -* UBERF-8122: · Fix backup service +* 🐛 BUG FIXES: · Get rid of NOTIFY_INBOX_ONLY env variable ([#6592](https://github.com/hcengineering/platform/issues/6592)) +* UBERF-8122: · Fix backup service ## [0.6.295] - 2024-09-16 -* 🐛 BUG FIXES: · Proper order of versions in upgrade string ([#6567](https://github.com/hcengineering/platform/issues/6567)) · Check for deleted objects ([#6581](https://github.com/hcengineering/platform/issues/6581)) -* UBERF-8098: · Basic client metrics in UI ([#6556](https://github.com/hcengineering/platform/issues/6556)) -* UBERF-8120: · Fix high CPU usage in github service ([#6573](https://github.com/hcengineering/platform/issues/6573)) -* UBERF-8122: · Fix backup service ([#6577](https://github.com/hcengineering/platform/issues/6577)) +* 🐛 BUG FIXES: · Proper order of versions in upgrade string ([#6567](https://github.com/hcengineering/platform/issues/6567)) · Check for deleted objects ([#6581](https://github.com/hcengineering/platform/issues/6581)) +* UBERF-8098: · Basic client metrics in UI ([#6556](https://github.com/hcengineering/platform/issues/6556)) +* UBERF-8120: · Fix high CPU usage in github service ([#6573](https://github.com/hcengineering/platform/issues/6573)) +* UBERF-8122: · Fix backup service ([#6577](https://github.com/hcengineering/platform/issues/6577)) ## [0.6.294] - 2024-09-13 -* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) -* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) -* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) -* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) -* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) -* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) +* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) +* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) +* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) +* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) +* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) +* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) ## [0.6.293] - 2024-09-12 -* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) -* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) -* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) +* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) +* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) +* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) ## [0.6.292] - 2024-09-11 -* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) -* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) -* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) -* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) +* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) +* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) +* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) +* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) ## [0.6.291] - 2024-09-10 -* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) +* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) ## [0.6.289] - 2024-09-10 -* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) -* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) -* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) -* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) -* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) -* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) -* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) -* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) -* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) -* UBERF-8053: · Disable re-check for milestones -* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) -* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) -* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) -* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) +* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) +* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) +* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) +* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) +* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) +* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) +* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) +* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) +* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) +* UBERF-8053: · Disable re-check for milestones +* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) +* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) +* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) +* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) ## [s0.6.288b] - 2024-08-30 -* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) +* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) ## [s0.6.288a] - 2024-08-29 -* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) +* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) ## [s0.6.278] - 2024-08-29 -* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) -* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) -* UBERF-8053: · Disable re-check for milestones -* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) +* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) +* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) +* UBERF-8053: · Disable re-check for milestones +* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) ## [0.6.288] - 2024-09-03 -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) ## [0.6.286] - 2024-08-28 -* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) -* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) +* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) +* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) ## [0.6.285a] - 2024-08-27 -* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) +* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) ## [0.6.285] - 2024-08-27 -* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) -* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) -* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) -* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) +* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) +* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) +* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) +* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) ## [0.6.284a] - 2024-08-26 -* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) -* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) +* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) +* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) ## [0.6.284] - 2024-08-23 -* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) -* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) +* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) +* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) ## [0.6.283] - 2024-08-21 -* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) +* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) ## [0.6.281a] - 2024-08-21 -* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) +* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) ## [0.6.281] - 2024-08-20 -* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) -* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) -* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) +* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.280a] - 2024-08-12 -* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) ## [0.6.280] - 2024-08-11 -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.279] - 2024-08-09 -* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) ## [0.6.277] - 2024-08-08 -* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) -* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) -* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) +* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) +* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) +* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) ## [0.6.276] - 2024-08-07 -* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) -* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) -* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) -* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) -* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) -* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) +* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) +* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) +* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) +* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) +* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) +* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) ## [0.6.274] - 2024-08-05 -* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) -* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) -* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) -* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) -* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) +* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) +* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) +* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) +* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) +* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) ## [0.6.271] - 2024-08-02 -* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) +* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) ## [0.6.271rc1] - 2024-08-01 -* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) -* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) -* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) -* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) -* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) -* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) +* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) +* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) +* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) +* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) +* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) ## [0.6.270] - 2024-07-30 -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) ## [0.6.269] - 2024-07-30 -* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) ## [0.6.268] - 2024-07-29 -* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) -* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) +* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) +* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) ## [0.6.267] - 2024-07-29 -* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) -* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) -* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) -* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) -* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) -* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) -* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) +* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) +* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) +* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) +* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) +* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) +* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) +* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) ## [0.6.266] - 2024-07-24 -* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) -* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) -* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) -* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) -* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) -* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) -* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) +* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) +* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) +* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) +* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) +* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) +* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) +* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) ## [0.6.265] - 2024-07-19 -* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) -* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) -* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) -* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) -* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) -* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) +* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) +* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) +* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) +* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) +* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) +* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) ## [0.6.264] - 2024-07-12 -* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) -* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) -* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) -* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) +* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) +* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) +* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) +* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) ## [0.6.263] - 2024-07-10 -* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) +* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) ## [0.6.262] - 2024-07-10 -* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) +* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) ## [0.6.261] - 2024-07-09 -* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) -* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) -* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) -* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) +* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) +* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) +* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) +* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) ## [0.6.260] - 2024-07-04 -* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) -* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) -* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) -* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) -* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) -* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) -* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) -* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) +* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) +* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) +* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) +* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) +* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) +* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) +* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) +* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) ## [0.6.259] - 2024-06-28 -* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) -* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) +* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) +* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) ## [0.6.258] - 2024-06-27 -* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) -* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) -* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) -* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) -* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) +* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) +* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) +* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) +* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) +* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) ## [0.6.257] - 2024-06-25 -* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) -* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) -* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) -* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) -* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) -* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) -* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) +* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) +* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) +* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) +* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) +* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) +* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) +* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) ## [0.6.256] - 2024-06-20 -* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) -* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) -* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) -* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) +* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) +* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) +* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) +* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) ## [0.6.255] - 2024-06-18 -* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) -* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) -* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) -* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) -* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) -* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) -* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) -* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) -* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) +* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) +* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) +* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) +* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) +* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) +* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) +* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) +* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) +* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) ## [0.6.254] - 2024-06-14 -* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) +* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) ## [0.6.253] - 2024-06-13 -* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) -* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) -* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) +* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) +* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) +* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) ## [0.6.252] - 2024-06-12 -* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) -* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) -* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) -* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) +* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) +* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) +* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) +* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) ## [0.6.251] - 2024-06-11 -* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) -* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) -* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) +* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) +* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) +* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) ## [0.6.250] - 2024-06-07 -* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) -* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) +* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) +* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) ## [0.6.249] - 2024-06-05 -* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) -* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) -* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) +* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) +* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) +* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) ## [0.6.248] - 2024-05-31 -* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) -* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) +* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) +* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) ## [0.6.247] - 2024-05-30 -* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) -* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) -* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) -* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) -* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) -* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) -* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) -* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) -* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) -* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) +* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) +* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) +* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) +* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) +* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) +* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) +* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) +* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) +* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) +* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) ## [0.6.246] - 2024-05-23 -* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) -* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) +* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) +* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) ## [0.6.245] - 2024-05-22 -* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) -* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) -* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) -* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) -* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) +* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) +* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) +* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) +* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) +* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) ## [0.6.243] - 2024-05-13 -* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) -* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) -* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) -* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) -* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) +* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) +* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) +* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) +* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) +* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) ## [0.6.242] - 2024-05-10 -* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) -* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) -* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) +* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) +* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) +* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) ## [0.6.241] - 2024-05-08 -* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) -* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) +* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) +* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) ## [0.6.240] - 2024-05-06 -* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) -* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) -* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) -* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) -* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) -* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) -* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) -* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) +* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) +* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) +* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) +* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) +* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) +* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) +* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) +* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) ## [0.6.239] - 2024-05-03 -* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) -* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) -* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) -* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) -* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) +* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) +* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) +* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) +* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) +* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) ## [0.6.238] - 2024-04-26 -* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) -* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) -* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) -* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) -* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) +* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) +* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) +* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) +* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) +* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) ## [0.6.237] - 2024-04-23 -* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) +* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) ## [0.6.236] - 2024-04-23 -* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) +* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) ## [0.6.235a] - 2024-04-20 -* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) -* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) +* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) +* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) ## [0.6.235] - 2024-04-19 -* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) -* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) +* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) +* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) ## [0.6.234] - 2024-04-18 -* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) -* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) -* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) -* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) +* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) +* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) +* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) +* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) ## [0.6.233] - 2024-04-16 -* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) -* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) -* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) +* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) +* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) +* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) ## [0.6.232] - 2024-04-16 -* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) -* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) -* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) -* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) -* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) -* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) -* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) +* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) +* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) +* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) +* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) +* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) +* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) +* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) ## [0.6.231] - 2024-04-13 -* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) -* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) -* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) -* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) -* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) -* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) -* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) +* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) +* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) +* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) +* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) +* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) +* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) +* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) ## [0.6.230] - 2024-04-10 -* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) -* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) +* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) +* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) ## [0.6.229] - 2024-04-10 -* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) -* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) -* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) +* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) +* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) +* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) ## [0.6.228a] - 2024-04-09 -* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) -* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) +* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) +* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) ## [0.6.228] - 2024-04-08 -* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) -* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) +* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) +* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) ## [0.6.227] - 2024-04-08 -* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) -* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) -* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) -* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) -* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) +* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) +* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) +* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) +* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) +* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) ## [0.6.226] - 2024-04-04 -* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) -* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) -* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) +* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) +* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) +* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) ## [0.6.225] - 2024-04-03 -* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) -* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) -* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) -* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) +* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) +* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) +* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) +* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) ## [0.6.224] - 2024-04-02 -* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) +* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) ## [0.6.223] - 2024-04-02 -* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) -* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) -* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) -* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) +* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) +* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) +* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) +* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) ## [0.6.222] - 2024-04-01 -* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) -* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) -* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) +* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) +* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) +* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) ## [0.6.221] - 2024-03-29 -* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) -* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) -* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) +* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) +* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) +* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) ## [0.6.220] - 2024-03-28 -* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) +* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) ## [0.6.219] - 2024-03-28 -* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) -* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) -* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) -* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) -* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) +* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) +* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) +* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) +* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) +* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) ## [0.6.218] - 2024-03-27 -* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) -* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) -* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) -* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) +* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) +* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) +* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) +* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) ## [0.6.216] - 2024-03-25 -* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) -* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) -* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) -* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) -* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) -* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) +* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) +* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) +* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) +* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) +* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) +* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) ## [0.6.215] - 2024-03-21 -* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) -* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) +* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) +* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) ## [0.6.214] - 2024-03-19 -* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) -* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) -* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) -* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) -* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) +* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) +* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) +* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) +* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) +* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) ## [0.6.213] - 2024-03-15 -* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) -* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) +* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) +* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) ## [0.6.212] - 2024-03-15 -* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) -* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) -* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) -* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) -* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) -* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) +* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) +* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) +* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) +* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) +* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) +* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) ## [0.6.211] - 2024-03-13 -* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) +* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) ## [0.6.210a] - 2024-03-13 -* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) -* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) +* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) +* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) ## [0.6.210] - 2024-03-13 -* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) -* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) -* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) -* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) -* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) -* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) -* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) -* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) -* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) -* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) +* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) +* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) +* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) +* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) +* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) +* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) +* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) +* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) +* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) +* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) ## [0.6.209] - 2024-03-08 -* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) -* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) -* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) -* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) -* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) -* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) -* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) -* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) -* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) -* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) -* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) +* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) +* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) +* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) +* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) +* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) +* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) +* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) +* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) +* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) +* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) +* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) ## [0.6.208] - 2024-03-04 -* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) -* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) -* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) -* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) +* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) +* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) +* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) +* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) ## [0.6.207] - 2024-03-01 -* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) +* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) ## [0.6.206] - 2024-03-01 -* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) -* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) +* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) +* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) ## [0.6.205] - 2024-02-29 -* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) -* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) -* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) -* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) -* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) -* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) -* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) -* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) -* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) -* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) -* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) -* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) -* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) -* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) -* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) +* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) +* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) +* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) +* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) +* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) +* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) +* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) +* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) +* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) +* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) +* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) +* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) +* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) +* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) +* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) ## [0.6.204] - 2024-02-26 -* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) +* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) ## [0.6.203] - 2024-02-25 -* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) +* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) ## [0.6.202] - 2024-02-23 -* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) -* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) -* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) -* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) -* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) -* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) -* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) +* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) +* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) +* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) +* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) +* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) +* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) +* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) ## [0.6.201] - 2024-02-20 -* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) -* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) +* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) +* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) ## [0.6.200] - 2024-02-19 -* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) -* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) -* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) -* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) +* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) +* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) +* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) +* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) ## [0.6.198] - 2024-02-16 -* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) -* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) -* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) -* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) -* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) -* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) +* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) +* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) +* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) +* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) +* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) +* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) ## [0.6.197] - 2024-02-15 -* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) -* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) -* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) +* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) +* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) +* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) ## [0.6.196] - 2024-02-14 -* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) -* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) -* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) -* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) -* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) -* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) +* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) +* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) +* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) +* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) +* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) +* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) ## [0.6.195] - 2024-02-13 -* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) -* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) -* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) -* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) -* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) -* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) -* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) +* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) +* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) +* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) +* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) +* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) +* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) +* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) ## [0.6.194] - 2024-02-09 -* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) -* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) -* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) +* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) +* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) +* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) ## [0.6.193] - 2024-02-08 -* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) -* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) -* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) -* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) -* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) -* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) -* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) +* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) +* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) +* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) +* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) +* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) +* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) +* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) ## [0.6.192] - 2024-02-07 -* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) -* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) -* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) -* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) -* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) -* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) -* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) -* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) -* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) -* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) -* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) +* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) +* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) +* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) +* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) +* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) +* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) +* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) +* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) +* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) +* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) +* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) ## [0.6.191] - 2024-02-05 -* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) -* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) -* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) +* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) +* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) +* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) ## [0.6.190] - 2024-02-03 -* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) +* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) ## [0.6.188] - 2024-02-02 -* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) -* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) -* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) -* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) -* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) -* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) -* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) -* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) -* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) -* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) -* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) -* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) +* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) +* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) +* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) +* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) +* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) +* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) +* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) +* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) +* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) +* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) +* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) +* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) ## [0.6.187] - 2024-01-30 -* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) -* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) -* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) -* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) -* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) +* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) +* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) +* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) +* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) +* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) ## [0.6.186] - 2024-01-25 -* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) -* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) -* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) -* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) +* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) +* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) +* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) +* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) ## [0.6.185] - 2024-01-25 -* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) +* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) ## [0.6.184] - 2024-01-24 -* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) -* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) +* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) +* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) ## [0.6.183] - 2024-01-23 -* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) -* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) -* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) +* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) +* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) +* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) ## [0.6.182] - 2024-01-22 -* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) -* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) -* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) +* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) +* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) +* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) ## [0.6.181a] - 2024-01-20 -* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) -* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) +* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) +* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) ## [0.6.181] - 2024-01-19 -* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) -* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) -* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) +* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) +* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) +* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) ## [0.6.180] - 2024-01-18 -* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) -* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) +* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) +* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) ## [0.6.179] - 2024-01-17 -* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) -* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) -* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) -* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) +* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) +* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) +* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) +* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) ## [0.6.178] - 2024-01-16 -* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) -* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) -* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) -* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) -* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) -* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) -* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) +* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) +* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) +* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) +* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) +* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) +* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) +* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) ## [0.6.177] - 2024-01-08 -* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) -* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) +* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) +* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) ## [0.6.175] - 2024-01-05 -* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) +* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) ## [0.6.174a] - 2023-12-29 -* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) +* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) ## [0.6.173] - 2023-12-28 -* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) -* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) -* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) -* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) -* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) -* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) -* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) -* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) -* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) -* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) -* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) -* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) -* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) -* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) +* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) +* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) +* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) +* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) +* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) +* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) +* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) +* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) +* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) +* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) +* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) +* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) +* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) +* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) ## [0.6.172] - 2023-12-21 -* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) -* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) -* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) -* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) -* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) +* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) +* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) +* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) +* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) +* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) ## [0.6.171] - 2023-12-20 -* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) -* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) -* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) -* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) -* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) -* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) -* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) -* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) -* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) -* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) -* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) -* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) -* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) -* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) -* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) -* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) -* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) +* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) +* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) +* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) +* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) +* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) +* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) +* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) +* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) +* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) +* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) +* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) +* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) +* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) +* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) +* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) +* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) +* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) ## [0.6.170] - 2023-12-07 -* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) -* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) -* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) -* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) +* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) +* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) +* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) +* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) ## [0.6.169] - 2023-12-06 -* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) -* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) -* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) -* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) +* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) +* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) +* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) +* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) ## [0.6.168] - 2023-12-05 -* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) +* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) ## [0.6.167] - 2023-12-05 -* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) -* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) -* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) -* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) +* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) +* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) +* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) +* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) ## [0.6.166] - 2023-12-04 -* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) -* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) +* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) +* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) ## [0.6.165] - 2023-12-02 -* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) -* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) -* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) +* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) +* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) +* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) ## [0.6.164] - 2023-12-01 -* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) -* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) -* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) -* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) -* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) +* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) +* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) +* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) +* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) +* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) ## [0.6.163] - 2023-11-29 -* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) -* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) -* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) -* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) -* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) +* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) +* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) +* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) +* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) +* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) ## [0.6.162] - 2023-11-29 -* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) -* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) -* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) -* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) -* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) -* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) +* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) +* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) +* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) +* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) +* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) +* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) ## [0.6.161] - 2023-11-28 -* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) -* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) -* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) -* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) -* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) -* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) -* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) -* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) +* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) +* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) +* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) +* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) +* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) +* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) +* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) +* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) ## [0.6.160] - 2023-11-27 -* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) -* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) +* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) +* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) ## [0.6.159] - 2023-11-24 -* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) -* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) -* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) +* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) +* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) +* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) ## [0.6.158] - 2023-11-23 -* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) -* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) -* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) -* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) -* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) -* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) -* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) +* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) +* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) +* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) +* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) +* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) +* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) +* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) ## [0.6.157] - 2023-11-21 -* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) -* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) -* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) -* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) -* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) -* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) -* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) +* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) +* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) +* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) +* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) +* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) +* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) +* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) ## [0.6.156] - 2023-11-15 -* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) -* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) -* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) -* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) -* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) -* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) +* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) +* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) +* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) +* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) +* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) +* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) ## [0.6.155a] - 2023-11-14 -* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) -* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) +* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) +* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) ## [0.6.155] - 2023-11-14 -* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) -* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) -* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) -* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) +* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) +* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) +* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) +* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) ## [0.6.154a] - 2023-11-10 -* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) +* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) ## [0.6.154] - 2023-11-10 -* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) -* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) -* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) +* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) +* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) +* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) ## [0.6.153] - 2023-11-08 -* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) +* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) ## [0.6.152] - 2023-11-07 -* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) -* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) -* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) -* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) -* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) +* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) +* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) +* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) +* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) +* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) ## [0.6.151] - 2023-11-03 -* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) -* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) -* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) +* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) +* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) +* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) ## [0.6.150] - 2023-11-01 -* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) -* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) -* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) -* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) -* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) -* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) -* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) -* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) -* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) +* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) +* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) +* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) +* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) +* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) +* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) +* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) +* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) +* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) ## [0.6.149] - 2023-10-30 -* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) -* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) -* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) -* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) -* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) -* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) -* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) +* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) +* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) +* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) +* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) +* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) +* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) +* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) ## [0.6.148] - 2023-10-26 -* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) -* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) -* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) +* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) +* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) +* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) ## [0.6.147] - 2023-10-26 -* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) -* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) -* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) -* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) -* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) -* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) -* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) -* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) -* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) -* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) -* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) -* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) -* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) +* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) +* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) +* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) +* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) +* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) +* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) +* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) +* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) +* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) +* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) +* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) +* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) +* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) ## [0.6.146] - 2023-10-23 -* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) +* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) ## [0.6.145] - 2023-10-19 -* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) -* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) -* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) -* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) -* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) -* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) -* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) +* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) +* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) +* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) +* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) +* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) +* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) +* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) ## [0.6.144] - 2023-10-16 -* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) -* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) +* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) +* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) ## [0.6.142] - 2023-10-13 -* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) -* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) +* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) +* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) ## [0.6.141] - 2023-10-11 -* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) -* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) +* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) +* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) ## [0.6.140] - 2023-10-10 -* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) -* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) +* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) +* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) ## [0.6.139a] - 2023-10-09 -* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) +* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) ## [0.6.138] - 2023-10-06 -* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) -* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) +* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) +* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) ## [0.6.137] - 2023-10-03 -* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) -* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) -* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) +* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) +* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) +* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) ## [0.6.136] - 2023-10-02 -* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) -* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) +* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) +* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) ## [0.6.135] - 2023-10-01 -* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) -* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) -* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) +* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) +* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) +* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) ## [0.6.134] - 2023-09-29 -* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) -* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) -* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) +* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) +* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) +* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) ## [0.6.133] - 2023-09-27 -* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) -* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) -* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) -* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) +* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) +* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) +* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) +* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) ## [0.6.132] - 2023-09-26 -* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) -* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) +* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) +* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) ## [0.6.131] - 2023-09-22 -* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) -* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) -* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) +* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) +* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) +* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) ## [0.6.130] - 2023-09-20 -* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) +* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) ## [0.6.129] - 2023-09-20 -* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) +* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) ## [0.6.128] - 2023-09-19 -* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) +* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) ## [0.6.127] - 2023-09-19 -* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) +* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) ## [0.6.126] - 2023-09-18 -* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) -* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) -* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) -* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) -* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) -* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) -* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) -* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) -* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) -* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) -* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) -* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) -* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) +* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) +* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) +* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) +* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) +* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) +* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) +* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) +* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) +* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) +* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) +* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) +* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) +* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) ## [0.6.125] - 2023-09-11 -* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) +* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) ## [0.6.124] - 2023-09-08 -* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) -* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) -* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) -* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) -* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) -* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) -* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) -* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) -* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) -* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) +* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) +* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) +* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) +* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) +* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) +* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) +* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) +* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) +* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) +* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) ## [0.6.123] - 2023-08-30 -* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) -* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) +* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) +* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) ## [0.6.122] - 2023-08-25 -* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) -* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) -* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) -* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) -* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) -* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) -* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) +* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) +* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) +* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) +* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) +* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) +* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) +* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) ## [0.6.121] - 2023-08-24 -* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) -* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) -* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) +* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) +* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) +* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) ## [0.6.120a] - 2023-08-22 -* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) +* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) ## [0.6.120] - 2023-08-22 -* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) +* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) ## [0.6.119] - 2023-08-19 -* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) -* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) -* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) -* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) +* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) +* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) +* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) +* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) ## [0.6.118] - 2023-08-17 -* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) -* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) -* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) -* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) -* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) -* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) +* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) +* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) +* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) +* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) +* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) +* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) ## [0.6.117] - 2023-08-14 -* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) +* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) ## [0.6.116] - 2023-08-10 -* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) -* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) -* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) -* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) +* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) +* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) +* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) +* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) ## [0.6.115] - 2023-08-08 -* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) -* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) +* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) +* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) ## [0.6.114] - 2023-08-07 -* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) -* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) +* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) +* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) ## [0.6.113] - 2023-08-03 -* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) -* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) -* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) -* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) +* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) +* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) +* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) +* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) ## [0.6.112b] - 2023-08-01 -* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) -* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) +* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) +* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) ## [0.6.112a] - 2023-07-31 -* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) +* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) ## [0.6.112] - 2023-07-29 -* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) -* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) -* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) -* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) -* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) -* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) -* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) -* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) -* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) -* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) -* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) -* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) -* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) -* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) -* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) +* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) +* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) +* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) +* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) +* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) +* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) +* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) +* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) +* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) +* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) +* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) +* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) +* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) +* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) +* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) ## [0.6.111] - 2023-07-13 -* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) -* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) -* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) +* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) +* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) +* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) ## [0.6.110] - 2023-07-08 -* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) -* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) -* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) -* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) -* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) -* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) -* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) -* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) -* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) -* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) -* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) -* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) -* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) -* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) -* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) -* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) -* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) -* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) -* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) -* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) -* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) -* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) -* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) +* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) +* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) +* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) +* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) +* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) +* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) +* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) +* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) +* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) +* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) +* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) +* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) +* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) +* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) +* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) +* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) +* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) +* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) +* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) +* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) +* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) +* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) +* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) ## [0.6.109] - 2023-06-16 -* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) -* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) -* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) -* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) -* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) -* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) -* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) +* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) +* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) +* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) +* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) +* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) +* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) +* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) ## [0.6.108] - 2023-06-12 -* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) -* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) -* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) -* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) -* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) +* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) +* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) +* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) +* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) +* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) ## [0.6.107] - 2023-06-09 -* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) -* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) -* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) +* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) +* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) +* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) ## [0.6.106] - 2023-06-08 -* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) -* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) -* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) -* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) -* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) -* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) -* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) -* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) -* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) +* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) +* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) +* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) +* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) +* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) +* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) +* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) +* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) +* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) ## [0.6.104] - 2023-06-07 -* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) +* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) ## [0.6.103] - 2023-06-07 -* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) -* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) +* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) +* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) ## [0.6.102] - 2023-06-06 -* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) -* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) -* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) -* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) -* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) -* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) -* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) -* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) +* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) +* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) +* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) +* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) +* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) +* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) +* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) +* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) ## [0.6.101] - 2023-06-05 -* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) -* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) -* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) -* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) -* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) -* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) +* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) +* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) +* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) +* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) +* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) +* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) ## [0.6.100] - 2023-06-02 -* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) -* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) -* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) -* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) -* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) -* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) -* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) -* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) -* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) -* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) +* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) +* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) +* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) +* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) +* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) +* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) +* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) +* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) +* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) +* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) ## [0.6.99] - 2023-05-30 -* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) -* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) -* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) -* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) -* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) -* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) -* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) -* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) -* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) -* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) -* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) -* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) -* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) +* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) +* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) +* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) +* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) +* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) +* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) +* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) +* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) +* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) +* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) +* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) +* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) +* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) ## [0.6.98a] - 2023-05-28 -* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) -* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) +* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) +* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) ## [0.6.98] - 2023-05-27 -* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) -* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) -* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) -* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) -* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) -* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) -* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) -* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) +* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) +* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) +* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) +* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) +* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) +* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) +* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) +* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) ## [0.6.97] - 2023-05-24 -* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) -* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) -* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) -* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) -* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) -* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) -* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) -* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) -* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) -* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) -* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) -* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) -* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) -* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) +* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) +* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) +* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) +* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) +* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) +* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) +* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) +* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) +* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) +* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) +* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) +* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) +* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) +* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) ## [0.6.96] - 2023-05-21 -* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) -* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) -* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) -* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) -* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) -* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) -* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) -* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) -* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) -* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) -* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) -* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) -* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) -* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) -* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) -* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) -* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) -* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) -* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) -* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) -* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) -* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) +* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) +* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) +* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) +* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) +* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) +* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) +* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) +* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) +* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) +* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) +* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) +* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) +* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) +* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) +* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) +* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) +* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) +* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) +* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) +* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) +* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) +* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) ## [0.6.95] - 2023-05-12 -* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) -* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) -* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) -* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) -* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) -* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) -* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) -* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) -* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) -* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) -* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) +* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) +* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) +* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) +* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) +* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) +* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) +* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) +* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) +* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) +* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) +* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) ## [0.6.94] - 2023-05-04 -* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) -* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) -* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) -* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) -* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) +* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) +* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) +* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) +* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) +* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) ## [0.6.93] - 2023-05-04 -* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) -* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) -* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) -* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) -* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) -* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) -* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) +* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) +* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) +* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) +* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) +* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) +* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) +* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) ## [0.6.92] - 2023-05-02 -* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) -* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) -* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) -* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) -* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) -* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) -* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) -* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) +* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) +* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) +* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) +* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) +* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) +* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) +* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) +* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) ## [0.6.91a] - 2023-04-27 -* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) -* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) -* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) +* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) +* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) +* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) ## [0.6.91] - 2023-04-27 -* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) -* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) -* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) -* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) -* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) -* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) -* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) -* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) -* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) -* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) -* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) -* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) -* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) -* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) -* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) +* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) +* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) +* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) +* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) +* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) +* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) +* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) +* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) +* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) +* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) +* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) +* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) +* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) +* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) +* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) ## [0.6.90] - 2023-04-23 -* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) +* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) ## [0.6.89] - 2023-04-21 -* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) -* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) -* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) -* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) +* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) +* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) +* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) +* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) ## [0.6.88] - 2023-04-19 -* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) -* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) -* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) +* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) +* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) +* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) ## [0.6.87] - 2023-04-19 -* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) -* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) -* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) +* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) +* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) +* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) ## [0.6.86] - 2023-04-17 -* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) -* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) -* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) +* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) +* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) +* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) ## [0.6.85] - 2023-04-17 -* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) -* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) +* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) +* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) ## [0.6.84] - 2023-04-16 -* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) +* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) ## [0.6.83] - 2023-04-14 -* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) -* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) -* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) +* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) +* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) +* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) ## [0.6.82] - 2023-04-13 -* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) -* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) -* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) -* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) +* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) +* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) +* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) +* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) ## [0.6.81] - 2023-04-12 -* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) -* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) -* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) -* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) -* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) -* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) +* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) +* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) +* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) +* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) +* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) +* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) ## [0.6.80a] - 2023-04-12 -* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) +* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) ## [0.6.80] - 2023-04-11 -* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) -* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) -* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) -* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) -* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) +* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) +* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) +* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) +* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) +* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) ## [0.6.79] - 2023-04-07 -* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) -* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) -* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) -* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) -* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) -* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) -* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) -* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) -* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) -* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) +* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) +* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) +* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) +* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) +* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) +* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) +* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) +* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) +* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) +* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) ## [0.6.78] - 2023-04-03 -* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) -* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) +* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) +* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) ## [0.6.77] - 2023-03-31 -* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) -* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) -* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) -* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) -* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) -* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) -* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) -* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) -* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) -* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) -* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) -* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) -* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) +* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) +* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) +* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) +* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) +* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) +* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) +* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) +* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) +* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) +* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) +* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) +* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) +* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) ## [0.6.76a] - 2023-03-24 -* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) -* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) +* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) +* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) ## [0.6.76] - 2023-03-24 -* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) -* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) -* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) -* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) -* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) -* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) -* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) -* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) -* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) -* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) -* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) -* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) -* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) +* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) +* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) +* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) +* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) +* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) +* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) +* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) +* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) +* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) +* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) +* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) +* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) +* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) ## [0.6.75b] - 2023-03-21 -* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) -* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) +* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) +* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) ## [0.6.75a] - 2023-03-21 -* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) -* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) +* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) +* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) ## [0.6.75] - 2023-03-21 -* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) -* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) -* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) -* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) -* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) -* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) -* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) +* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) +* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) +* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) +* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) +* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) +* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) +* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) ## [0.6.74] - 2023-03-17 -* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) -* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) +* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) +* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) ## [0.6.73a] - 2023-03-16 -* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) -* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) -* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) -* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) +* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) +* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) +* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) +* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) ## [0.6.73] - 2023-03-16 -* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) -* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) -* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) -* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) -* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) -* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) +* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) +* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) +* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) +* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) +* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) +* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) ## [0.6.72a] - 2023-03-13 -* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) +* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) ## [0.6.69b] - 2023-03-02 -* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) -* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) +* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) +* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) ## [0.6.69] - 2023-03-01 -* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) -* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) -* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) -* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) +* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) +* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) +* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) +* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) ## [0.6.68] - 2023-02-22 -* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) -* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) +* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) +* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) ## [0.6.67] - 2023-02-20 -* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) -* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) -* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) -* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) -* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) +* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) +* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) +* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) +* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) +* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) ## [0.6.65] - 2023-02-10 -* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) +* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) ## [0.6.64] - 2023-02-08 -* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) -* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) -* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) +* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) +* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) +* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) ## [0.6.61] - 2023-01-30 -* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) -* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) +* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) +* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) ## [0.6.57] - 2023-01-24 -* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) +* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) ## [0.6.55] - 2023-01-20 -* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) +* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) ## [0.6.53a] - 2022-12-30 -* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) +* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) ## [0.6.52] - 2022-12-22 -* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) +* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) ## [0.6.51] - 2022-12-21 -* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) +* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) ## [0.6.50] - 2022-12-16 -* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) +* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) ## [0.6.49] - 2022-12-15 -* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) -* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) -* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) +* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) +* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) +* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) ## [0.6.48] - 2022-12-07 -* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) -* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) +* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) +* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) ## [0.6.47] - 2022-12-02 -* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) +* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) ## [0.6.46] - 2022-11-29 -* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) +* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) ## [0.6.45] - 2022-11-24 -* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) -* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) -* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) -* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) +* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) +* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) +* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) +* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) ## [0.6.44] - 2022-11-22 -* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) -* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) -* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) +* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) +* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) +* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) ## [0.6.41] - 2022-11-12 -* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) -* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) +* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) +* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) ## [0.6.40] - 2022-11-02 -* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) -* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) +* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) +* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) ## [0.6.34] - 2022-08-25 -* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) +* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) ## [0.6.33a] - 2022-08-22 -* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) +* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) ## [0.6.31] - 2022-07-19 -* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) +* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) ## [0.6.30c] - 2022-07-10 -* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) +* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) ## [0.6.30b] - 2022-07-07 -* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) -* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) +* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) +* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) ## [0.6.30a] - 2022-07-04 -* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) -* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) +* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) +* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) ## [0.6.30] - 2022-07-02 -* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) -* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) -* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) -* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) -* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) +* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) +* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) +* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) +* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) +* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) ## [0.6.29b] - 2022-06-27 -* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) +* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) ## [0.6.29a] - 2022-06-27 -* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) +* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) ## [0.6.29] - 2022-06-25 -* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) -* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) -* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) -* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) +* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) +* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) +* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) +* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) ## [0.6.28] - 2022-06-20 -* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) -* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) -* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) +* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) +* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) +* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) ## [0.6.27] - 2022-06-15 -* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) -* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) -* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) -* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) -* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) +* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) +* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) +* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) +* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) +* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) ## [0.6.26] - 2022-06-10 -* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) +* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) ## [0.6.25] - 2022-06-08 -* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) +* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) ## [0.6.24] - 2022-06-07 -* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) -* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) +* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) +* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) ## [0.6.23] - 2022-06-03 -* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) -* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) -* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) -* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) +* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) +* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) +* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) +* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) ## [0.6.22] - 2022-05-29 -* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) -* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) -* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) +* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) +* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) +* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) ## [0.6.21] - 2022-05-24 -* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) +* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) ## [0.6.20] - 2022-05-23 -* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) +* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) ## [0.6.19] - 2022-05-22 -* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) -* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) -* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) -* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) -* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) -* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) +* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) +* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) +* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) +* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) +* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) +* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) ## [0.6.18] - 2022-05-15 -* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) -* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) -* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) +* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) +* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) +* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) ## [0.6.15] - 2022-05-05 -* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) -* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) -* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) -* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) +* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) +* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) +* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) +* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) ## [0.6.14] - 2022-04-26 -* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) -* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) -* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) +* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) +* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) +* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) ## [0.6.13] - 2022-04-24 -* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) -* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) -* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) +* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) +* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) +* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) ## [0.6.12] - 2022-04-18 -* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) -* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) +* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) +* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) ## [0.6.11] - 2022-04-17 -* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) -* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) -* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) +* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) +* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) +* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) ## [0.6.8] - 2022-03-19 -* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) +* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) ## [0.6.0] - 2021-11-22 -* CLEAN: · Package.json +* CLEAN: · Package.json diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 57ea3d18ec9..6b8ae600949 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.302" +"0.6.304" From 98dad713fa9ab181a11a91ce340d5566c12fbbb8 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 23 Sep 2024 18:25:49 +0700 Subject: [PATCH 074/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 6b8ae600949..7438b7f1aed 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.304" +"0.6.305" From ecb980ede21637f1ccfbda393e8a7ad7028dce58 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 25 Sep 2024 12:26:07 +0700 Subject: [PATCH 075/149] Bump migration version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 7438b7f1aed..977bfad98d1 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.305" +"0.6.308" From fe541de5e78ca1682eeaad7b4412405b7d204f50 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 25 Sep 2024 21:24:54 +0700 Subject: [PATCH 076/149] Fix model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 977bfad98d1..6d6b145630d 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.308" +"0.6.310" From 338301f1a4ed835112818e436acc28ff88da9059 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 27 Sep 2024 14:26:34 +0700 Subject: [PATCH 077/149] Bump version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 6d6b145630d..0f2b1ff463a 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.310" +"0.6.312" From d03d53b0b7298cdf45ae2ca77b50a37525dfca8d Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 27 Sep 2024 19:46:25 +0700 Subject: [PATCH 078/149] Bump model version to check upgrade Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 0f2b1ff463a..d73a698be17 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.312" +"0.6.313" From 88fc1fe58ff68758ffe11441005e9e9651f0f2fc Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Tue, 1 Oct 2024 18:05:09 +0700 Subject: [PATCH 079/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index d73a698be17..c577f7cd198 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.313" +"0.6.314" From 10eabd1f1b39296bf7b18bfa85cf514823f4ee1e Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 2 Oct 2024 18:03:09 +0700 Subject: [PATCH 080/149] Bump model version to 315 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index c577f7cd198..6c18c1b46e6 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.314" +"0.6.315" From e9376c468e8a10e02e4f4d160583da8b3df532d0 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 3 Oct 2024 13:18:57 +0700 Subject: [PATCH 081/149] Bump model version Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 6c18c1b46e6..cc26d1c7c39 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.315" +"0.6.316" From 16de513b245e361516728640ac76ff7c90c57326 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 3 Oct 2024 13:41:11 +0700 Subject: [PATCH 082/149] Remove only from tests Signed-off-by: Andrey Sobolev --- tests/sanity/tests/planning/plan.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/sanity/tests/planning/plan.spec.ts b/tests/sanity/tests/planning/plan.spec.ts index b1014f984b7..c152cc25f73 100644 --- a/tests/sanity/tests/planning/plan.spec.ts +++ b/tests/sanity/tests/planning/plan.spec.ts @@ -291,7 +291,7 @@ test.describe('Planning ToDo tests', () => { }) }) - test.only('ToDo labels are exist in Tag list', async ({ page }) => { + test('ToDo labels are exist in Tag list', async ({ page }) => { const planningPage = new PlanningPage(page) const planningNavigationMenuPage = new PlanningNavigationMenuPage(page) From ed5fb922ec00a7b78d77f398ea3a54a6e1b16203 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 4 Oct 2024 00:38:20 +0700 Subject: [PATCH 083/149] v0.6.317 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index cc26d1c7c39..a58ed94cf09 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.316" +"0.6.317" From dd5fc6dcce8d165c18fd7e532468fb8cd366576a Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 7 Oct 2024 10:32:53 +0700 Subject: [PATCH 084/149] v0.6.318 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index a58ed94cf09..e6d085c18cb 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.317" +"0.6.318" From 3ee7201742bcdd3c28f8a37c2c5244dcefd46e0a Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 7 Oct 2024 16:02:09 +0700 Subject: [PATCH 085/149] v0.6.319 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index e6d085c18cb..6b19cec65ff 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.318" +"0.6.319" From 64cf19ffd2122d5a0de1d8d6545c359477820b69 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 9 Oct 2024 12:21:27 +0700 Subject: [PATCH 086/149] 0.6.320 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 6b19cec65ff..ef1abbe7218 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.319" +"0.6.320" From 755800171507cf583de6abbc0e7edd9b33dcfa4c Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Thu, 10 Oct 2024 21:23:09 +0700 Subject: [PATCH 087/149] v0.6.322 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index ef1abbe7218..3d3b827ee72 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.320" +"0.6.322" From 230c2f406e10014fdff4f412a3a66d95941cdf1b Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Fri, 11 Oct 2024 18:36:25 +0700 Subject: [PATCH 088/149] Update changelog Signed-off-by: Andrey Sobolev --- changelog.md | 2427 ++++++++++++++++++++++++++------------------------ 1 file changed, 1261 insertions(+), 1166 deletions(-) diff --git a/changelog.md b/changelog.md index 3afd5aadf8c..3e176e0bea9 100644 --- a/changelog.md +++ b/changelog.md @@ -2,2046 +2,2141 @@ Changelog. +## [0.6.322] - 2024-10-10 + +* 🐛 BUG FIXES: · Code block formatting in one line ([#6866](https://github.com/hcengineering/platform/issues/6866)) + +## [0.6.320] - 2024-10-09 + +* UBERF-8376: · Move indexer from server-core ([#6829](https://github.com/hcengineering/platform/issues/6829)) +* UBERF-8379: · Fix workspace creation and missing plugin configuration ([#6832](https://github.com/hcengineering/platform/issues/6832)) + +## [0.6.319] - 2024-10-07 + +* 🐛 BUG FIXES: · Disable auto code highlight ([#6824](https://github.com/hcengineering/platform/issues/6824)) +* UBERF-7863: · Fix duplicate review comment ([#6827](https://github.com/hcengineering/platform/issues/6827)) + +## [0.6.318] - 2024-10-07 + +* UBERF-8353: · Reduce number of asyncs ([#6806](https://github.com/hcengineering/platform/issues/6806)) +* UBERF-8368: · Fix review/reviewthread sync ([#6821](https://github.com/hcengineering/platform/issues/6821)) +* UBERF-8301: · Improve desktop app update UX ([#6808](https://github.com/hcengineering/platform/issues/6808)) +* UBERF-8357: · Remove node fetch from account and services ([#6812](https://github.com/hcengineering/platform/issues/6812)) + +## [0.6.317] - 2024-10-03 + +* 🐛 BUG FIXES: · More robust locators ([#6796](https://github.com/hcengineering/platform/issues/6796)) · More fixed locators in tests ([#6799](https://github.com/hcengineering/platform/issues/6799)) +* QFIX: · Empty where clause ([#6793](https://github.com/hcengineering/platform/issues/6793)) · Final account migration adjustments ([#6801](https://github.com/hcengineering/platform/issues/6801)) +* UBERF-8328: · Fail CI on docker push failure ([#6794](https://github.com/hcengineering/platform/issues/6794)) +* UBERF-8339: · Fix workspace selector sorting ([#6792](https://github.com/hcengineering/platform/issues/6792)) +* FIIX: · Disable failing planner test ([#6802](https://github.com/hcengineering/platform/issues/6802)) + +## [0.6.316] - 2024-10-03 + +* QFIX: · Account migration ([#6787](https://github.com/hcengineering/platform/issues/6787)) +* UBERF-8333: · Retry WS handshake ([#6786](https://github.com/hcengineering/platform/issues/6786)) + +## [0.6.315] - 2024-10-02 + +* UBERF-8324: · Fix null in external sync and todos ([#6777](https://github.com/hcengineering/platform/issues/6777)) +* UBERF-8330: · Smarter Mongo indices init for account ([#6783](https://github.com/hcengineering/platform/issues/6783)) +* EZQMS-1213: · Gets rid of tosorted ([#6775](https://github.com/hcengineering/platform/issues/6775)) + +## [0.6.314] - 2024-10-01 + +* 🐛 BUG FIXES: · More tooltips ([#6767](https://github.com/hcengineering/platform/issues/6767)) +* UBERF-8169: · Account on postgres ([#6745](https://github.com/hcengineering/platform/issues/6745)) · Move account DB tool ([#6772](https://github.com/hcengineering/platform/issues/6772)) +* UBERF-8310: · Optimize backup service ([#6763](https://github.com/hcengineering/platform/issues/6763)) +* UBERF-8313: · Fix select workspace sorting ([#6766](https://github.com/hcengineering/platform/issues/6766)) +* UBERF-8304: · Retry fetch when updating ws info ([#6757](https://github.com/hcengineering/platform/issues/6757)) + +## [0.6.313] - 2024-09-27 + +* UBERF-8302: · Fix lastVisit ([#6755](https://github.com/hcengineering/platform/issues/6755)) + +## [0.6.312] - 2024-09-27 + +* UBERF-8285: · Fix backup service lastVisit check ([#6738](https://github.com/hcengineering/platform/issues/6738)) +* UBERF-8288: · Fix archiving a channel ([#6750](https://github.com/hcengineering/platform/issues/6750)) +* UBERF-8294: · Do not upgrade stale workspaces ([#6748](https://github.com/hcengineering/platform/issues/6748)) + +## [0.6.311] - 2024-09-26 + +* 🐛 BUG FIXES: · Fallback to name avatar in case of img error ([#6729](https://github.com/hcengineering/platform/issues/6729)) +* UBERF-8277: · Fix blobs backup ([#6730](https://github.com/hcengineering/platform/issues/6730)) +* UBERF-8280: · Ping properly from server ([#6733](https://github.com/hcengineering/platform/issues/6733)) +* UBERF-8282: · Fix ws deps ([#6735](https://github.com/hcengineering/platform/issues/6735)) + +## [0.6.310] - 2024-09-25 + +* UBERF-8261: · Fix backup service ([#6725](https://github.com/hcengineering/platform/issues/6725)) + +## [0.6.309] - 2024-09-25 + +* 🚀 FEATURES: · Show lost files tool ([#6721](https://github.com/hcengineering/platform/issues/6721)) · Restore lost markup tool ([#6724](https://github.com/hcengineering/platform/issues/6724)) + +## [0.6.308] - 2024-09-25 + +* 🐛 BUG FIXES: · Attachment actions icon and image size ([#6710](https://github.com/hcengineering/platform/issues/6710)) +* UBERF-8259: · Do not store system model into DB ([#6716](https://github.com/hcengineering/platform/issues/6716)) + +## [0.6.307] - 2024-09-24 + +* 🐛 BUG FIXES: · Rush fast-format ([#6702](https://github.com/hcengineering/platform/issues/6702)) +* PLANNER: · Fixed DateEditor layout ([#6696](https://github.com/hcengineering/platform/issues/6696)) +* UBERF-8251: · Fix github re-authenticate ([#6704](https://github.com/hcengineering/platform/issues/6704)) + +## [0.6.306] - 2024-09-24 + +* 🐛 BUG FIXES: · Adjust image size in message attachments ([#6698](https://github.com/hcengineering/platform/issues/6698)) · Report invalid content errors to analytics ([#6699](https://github.com/hcengineering/platform/issues/6699)) · Remove workspace id from indexeddb document name ([#6700](https://github.com/hcengineering/platform/issues/6700)) · Ignore disabled workspaces in sync-files tool ([#6701](https://github.com/hcengineering/platform/issues/6701)) +* 🧪 TESTING: · Drive. basic tests ([#6655](https://github.com/hcengineering/platform/issues/6655)) + +## [0.6.305] - 2024-09-23 + +* 🐛 BUG FIXES: · Better handling png image size for scale < 2 ([#6688](https://github.com/hcengineering/platform/issues/6688)) +* UBERF-8226: · Fix backup service OOM ([#6683](https://github.com/hcengineering/platform/issues/6683)) +* UBERF-8210: · Allow only one upgrade ([#6684](https://github.com/hcengineering/platform/issues/6684)) + ## [0.6.304] - 2024-09-23 -* UBERF-8224: · Fix undefined rejection exception ([#6677](https://github.com/hcengineering/platform/issues/6677)) +* UBERF-8224: · Fix undefined rejection exception ([#6677](https://github.com/hcengineering/platform/issues/6677)) ## [0.6.303] - 2024-09-23 -* UBERF-8185: · Fix duplicate hierarchy clases ([#6660](https://github.com/hcengineering/platform/issues/6660)) +* UBERF-8185: · Fix duplicate hierarchy clases ([#6660](https://github.com/hcengineering/platform/issues/6660)) ## [0.6.302] - 2024-09-20 -* PLANNER: · Updated ToDos layout ([#6651](https://github.com/hcengineering/platform/issues/6651)) -* EQZMS-1175: · Improve copy UX when clipboard is not available ([#6657](https://github.com/hcengineering/platform/issues/6657)) -* UBERF-8195: · Support openid auth ([#6654](https://github.com/hcengineering/platform/issues/6654)) +* PLANNER: · Updated ToDos layout ([#6651](https://github.com/hcengineering/platform/issues/6651)) +* EQZMS-1175: · Improve copy UX when clipboard is not available ([#6657](https://github.com/hcengineering/platform/issues/6657)) +* UBERF-8195: · Support openid auth ([#6654](https://github.com/hcengineering/platform/issues/6654)) ## [0.6.301] - 2024-09-20 -* PLANNER: · Fixed sticking to events when resizing ([#6648](https://github.com/hcengineering/platform/issues/6648)) -* UBERF-8163: · Split ws into server + desktop backup support ([#6630](https://github.com/hcengineering/platform/issues/6630)) +* PLANNER: · Fixed sticking to events when resizing ([#6648](https://github.com/hcengineering/platform/issues/6648)) +* UBERF-8163: · Split ws into server + desktop backup support ([#6630](https://github.com/hcengineering/platform/issues/6630)) ## [0.6.300] - 2024-09-19 -* UBERF-6593: · Add document content tests ([#6594](https://github.com/hcengineering/platform/issues/6594)) +* UBERF-6593: · Add document content tests ([#6594](https://github.com/hcengineering/platform/issues/6594)) ## [0.6.299] - 2024-09-18 -* 🚀 FEATURES: · Improve links behavior in the editor ([#6612](https://github.com/hcengineering/platform/issues/6612)) -* 🐛 BUG FIXES: · Add codeblock commands to highlighted extension ([#6613](https://github.com/hcengineering/platform/issues/6613)) -* ⚙️ MISCELLANEOUS TASKS: · Update tiptap to v2.6.6 ([#6596](https://github.com/hcengineering/platform/issues/6596)) -* UBEFR-8162: · Fix default language ([#6621](https://github.com/hcengineering/platform/issues/6621)) +* 🚀 FEATURES: · Improve links behavior in the editor ([#6612](https://github.com/hcengineering/platform/issues/6612)) +* 🐛 BUG FIXES: · Add codeblock commands to highlighted extension ([#6613](https://github.com/hcengineering/platform/issues/6613)) +* ⚙️ MISCELLANEOUS TASKS: · Update tiptap to v2.6.6 ([#6596](https://github.com/hcengineering/platform/issues/6596)) +* UBEFR-8162: · Fix default language ([#6621](https://github.com/hcengineering/platform/issues/6621)) ## [0.6.298] - 2024-09-18 -* UBERF-8139: · Check server version when connecting from client ([#6608](https://github.com/hcengineering/platform/issues/6608)) -* UBERF-8150: · Update to fresh mongo ([#6603](https://github.com/hcengineering/platform/issues/6603)) +* UBERF-8139: · Check server version when connecting from client ([#6608](https://github.com/hcengineering/platform/issues/6608)) +* UBERF-8150: · Update to fresh mongo ([#6603](https://github.com/hcengineering/platform/issues/6603)) ## [0.6.297] - 2024-09-17 -* UBERF-8149: · Reset workspace attempts counter tool ([#6604](https://github.com/hcengineering/platform/issues/6604)) +* UBERF-8149: · Reset workspace attempts counter tool ([#6604](https://github.com/hcengineering/platform/issues/6604)) ## [0.6.296] - 2024-09-17 -* 🐛 BUG FIXES: · Get rid of NOTIFY_INBOX_ONLY env variable ([#6592](https://github.com/hcengineering/platform/issues/6592)) -* UBERF-8122: · Fix backup service +* 🐛 BUG FIXES: · Get rid of NOTIFY_INBOX_ONLY env variable ([#6592](https://github.com/hcengineering/platform/issues/6592)) +* UBERF-8122: · Fix backup service ## [0.6.295] - 2024-09-16 -* 🐛 BUG FIXES: · Proper order of versions in upgrade string ([#6567](https://github.com/hcengineering/platform/issues/6567)) · Check for deleted objects ([#6581](https://github.com/hcengineering/platform/issues/6581)) -* UBERF-8098: · Basic client metrics in UI ([#6556](https://github.com/hcengineering/platform/issues/6556)) -* UBERF-8120: · Fix high CPU usage in github service ([#6573](https://github.com/hcengineering/platform/issues/6573)) -* UBERF-8122: · Fix backup service ([#6577](https://github.com/hcengineering/platform/issues/6577)) +* 🐛 BUG FIXES: · Proper order of versions in upgrade string ([#6567](https://github.com/hcengineering/platform/issues/6567)) · Check for deleted objects ([#6581](https://github.com/hcengineering/platform/issues/6581)) +* UBERF-8098: · Basic client metrics in UI ([#6556](https://github.com/hcengineering/platform/issues/6556)) +* UBERF-8120: · Fix high CPU usage in github service ([#6573](https://github.com/hcengineering/platform/issues/6573)) +* UBERF-8122: · Fix backup service ([#6577](https://github.com/hcengineering/platform/issues/6577)) ## [0.6.294] - 2024-09-13 -* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) -* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) -* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) -* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) -* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) -* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) +* 🚀 FEATURES: · Hls video support ([#6542](https://github.com/hcengineering/platform/issues/6542)) +* 🐛 BUG FIXES: · Codeblock various fixes ([#6550](https://github.com/hcengineering/platform/issues/6550)) +* UBERF-8053: · Github fixes ([#6554](https://github.com/hcengineering/platform/issues/6554)) +* UBERF-8100: · Fix backup ([#6558](https://github.com/hcengineering/platform/issues/6558)) +* UBERF-8102: · Remove client timeout on broadcast ([#6560](https://github.com/hcengineering/platform/issues/6560)) +* UBERF-8095: · Fix server version ([#6553](https://github.com/hcengineering/platform/issues/6553)) ## [0.6.293] - 2024-09-12 -* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) -* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) -* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) +* UBERF-8071: · Fix workspace service parallel param ([#6540](https://github.com/hcengineering/platform/issues/6540)) +* UBERF-8083: · Optimize account by email search ([#6538](https://github.com/hcengineering/platform/issues/6538)) +* EZQMS-1193: · Fix issues with drafting a controlled doc version from effective ([#6535](https://github.com/hcengineering/platform/issues/6535)) ## [0.6.292] - 2024-09-11 -* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) -* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) -* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) -* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) +* UBERF-7989: · Do not close thread on close popup with ecs ([#6519](https://github.com/hcengineering/platform/issues/6519)) +* UBERF-8058: · Fix to allow create customers ([#6514](https://github.com/hcengineering/platform/issues/6514)) +* UBERF-8069: · Rework loadModel to make it faster ([#6523](https://github.com/hcengineering/platform/issues/6523)) +* UBERF-8068: · Rework space type delete UX ([#6525](https://github.com/hcengineering/platform/issues/6525)) ## [0.6.291] - 2024-09-10 -* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) +* UBERF-8060: · Fix user statuses and workspace selection ([#6512](https://github.com/hcengineering/platform/issues/6512)) ## [0.6.289] - 2024-09-10 -* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) -* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) -* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) -* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) -* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) -* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) -* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) -* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) -* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) -* UBERF-8053: · Disable re-check for milestones -* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) -* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) -* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) -* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) +* 🚀 FEATURES: · Codeblock syntax highlight ([#6505](https://github.com/hcengineering/platform/issues/6505)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Retry requests to collaborator in case of failure ([#6468](https://github.com/hcengineering/platform/issues/6468)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) · Remove prefixes from listStream method parameters ([#6480](https://github.com/hcengineering/platform/issues/6480)) · Implement better todos parsing ([#6497](https://github.com/hcengineering/platform/issues/6497)) · Better nested todos parsing ([#6499](https://github.com/hcengineering/platform/issues/6499)) +* UBERF-7684: · Workspace service ([#6460](https://github.com/hcengineering/platform/issues/6460)) +* UBERF-7915: · Support tg bot attachments ([#6471](https://github.com/hcengineering/platform/issues/6471)) +* UBERF-7922: · Split Server Storage to middlewares ([#6464](https://github.com/hcengineering/platform/issues/6464)) +* UBERF-8005: · Add tests to tracker projects, fix failed tests ([#6454](https://github.com/hcengineering/platform/issues/6454)) +* UBERF-8017: · Support updating workspace name and deleting workspace ([#6476](https://github.com/hcengineering/platform/issues/6476)) +* UBERF-8044: · Staging model version ([#6492](https://github.com/hcengineering/platform/issues/6492)) +* UBERF-8047: · Add tests to channels and chats ([#6496](https://github.com/hcengineering/platform/issues/6496)) +* UBERF-8052: · Allow easy profiling of transactor ([#6502](https://github.com/hcengineering/platform/issues/6502)) +* UBERF-8053: · Disable re-check for milestones +* EZQMS-1149: · Allow archiving effective doc ([#6489](https://github.com/hcengineering/platform/issues/6489)) +* EZQMS-1171: · Drop h4-h6 during import of controlled doc ([#6487](https://github.com/hcengineering/platform/issues/6487)) +* EZQMS-1185: · Fix delete document availability ([#6485](https://github.com/hcengineering/platform/issues/6485)) +* UBERF-7684: · Add workspace pod to docker build ([#6465](https://github.com/hcengineering/platform/issues/6465)) ## [s0.6.288b] - 2024-08-30 -* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) +* 🐛 BUG FIXES: · Copy template content when creating controlled document ([#6441](https://github.com/hcengineering/platform/issues/6441)) · Use workspace id in collaborator ([#6447](https://github.com/hcengineering/platform/issues/6447)) · URI encode datalake blob id and more workspace fixes ([#6449](https://github.com/hcengineering/platform/issues/6449)) ## [s0.6.288a] - 2024-08-29 -* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) +* 🐛 BUG FIXES: · Build and push docker containers for s-prefixed tags ([#6442](https://github.com/hcengineering/platform/issues/6442)) ## [s0.6.278] - 2024-08-29 -* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) -* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) -* UBERF-8053: · Disable re-check for milestones -* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) +* 🐛 BUG FIXES: · Improve codeblock wrapping ([#6440](https://github.com/hcengineering/platform/issues/6440)) +* UBERF-7985: · Fix private targets ([#6439](https://github.com/hcengineering/platform/issues/6439)) +* UBERF-8053: · Disable re-check for milestones +* QFIX: · Add fire and rocket smiley ([#6438](https://github.com/hcengineering/platform/issues/6438)) ## [0.6.288] - 2024-09-03 -* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) +* 🐛 BUG FIXES: · Pass actionPopup to action props ([#6467](https://github.com/hcengineering/platform/issues/6467)) · Get rid of removeAllObjects by prefix ([#6479](https://github.com/hcengineering/platform/issues/6479)) ## [0.6.286] - 2024-08-28 -* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) -* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) +* 🐛 BUG FIXES: · Wrap lines in codeblock ([#6406](https://github.com/hcengineering/platform/issues/6406)) +* UBERF-7959: · Fix async issues ([#6409](https://github.com/hcengineering/platform/issues/6409)) ## [0.6.285a] - 2024-08-27 -* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) +* 🐛 BUG FIXES: · Ignore ydoc migration errors ([#6402](https://github.com/hcengineering/platform/issues/6402)) ## [0.6.285] - 2024-08-27 -* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) -* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) -* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) -* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) +* 🚀 FEATURES: · Markup migration tool ([#6398](https://github.com/hcengineering/platform/issues/6398)) +* 🐛 BUG FIXES: · Migrate collaborative markup in activity ([#6400](https://github.com/hcengineering/platform/issues/6400)) +* UBERF-7944: · Support for not_planed close for issues ([#6396](https://github.com/hcengineering/platform/issues/6396)) +* UBERF-7946: · Remove bulk in mongo adapter ([#6395](https://github.com/hcengineering/platform/issues/6395)) ## [0.6.284a] - 2024-08-26 -* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) -* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) +* 🐛 BUG FIXES: · Parallel blob processing in tools an migration ([#6391](https://github.com/hcengineering/platform/issues/6391)) +* UBERF-7924: · Fix workspace variable in logs + reuse installation account ([#6376](https://github.com/hcengineering/platform/issues/6376)) ## [0.6.284] - 2024-08-23 -* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) -* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) +* 🐛 BUG FIXES: · Do not resolve srcset for urls ([#6367](https://github.com/hcengineering/platform/issues/6367)) · Add limit and retries to move files tool ([#6368](https://github.com/hcengineering/platform/issues/6368)) +* UBERF-7927: · Get rid of product id ([#6375](https://github.com/hcengineering/platform/issues/6375)) ## [0.6.283] - 2024-08-21 -* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) +* EZQMS-1166: · Revamp doc library sections model ([#6358](https://github.com/hcengineering/platform/issues/6358)) ## [0.6.281a] - 2024-08-21 -* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) +* 🐛 BUG FIXES: · Do not resolve storage provider in getUrl ([#6361](https://github.com/hcengineering/platform/issues/6361)) ## [0.6.281] - 2024-08-20 -* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) -* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) -* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* 🐛 BUG FIXES: · Does not send email confirmation when signup with otp ([#6292](https://github.com/hcengineering/platform/issues/6292)) · Build print and sign services for arm64 ([#6321](https://github.com/hcengineering/platform/issues/6321)) +* QFIX: · Change default filter for my docs in controlled documents ([#6290](https://github.com/hcengineering/platform/issues/6290)) · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7690: · Local mongo setup configuration ([#6335](https://github.com/hcengineering/platform/issues/6335)) · Performance fixes ([#6336](https://github.com/hcengineering/platform/issues/6336)) · Use query joiner for server/trigger requests ([#6339](https://github.com/hcengineering/platform/issues/6339)) · Skip space security for >=85% of spaces and do on result check ([#6338](https://github.com/hcengineering/platform/issues/6338)) · Operation log support + fixes ([#6337](https://github.com/hcengineering/platform/issues/6337)) · Trigger improvements ([#6340](https://github.com/hcengineering/platform/issues/6340)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* [PART-1]: · New analytics events ([#6319](https://github.com/hcengineering/platform/issues/6319)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.280a] - 2024-08-12 -* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) +* UBERF-7865: · Final fix ([#6316](https://github.com/hcengineering/platform/issues/6316)) ## [0.6.280] - 2024-08-11 -* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) -* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) -* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) +* UBERF-7836: · Fix github integeration ([#6313](https://github.com/hcengineering/platform/issues/6313)) +* UBERF-7865: · Fix wrong access to not created collection ([#6315](https://github.com/hcengineering/platform/issues/6315)) +* UBERF-7856: · Fix desktop publishing CI ([#6308](https://github.com/hcengineering/platform/issues/6308)) ## [0.6.279] - 2024-08-09 -* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) -* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) -* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) +* QFIX: · Fix duplicates in inbox from multiple accounts ([#6306](https://github.com/hcengineering/platform/issues/6306)) +* UBERF-7790: · Fix connection timeout issue ([#6301](https://github.com/hcengineering/platform/issues/6301)) +* UBERF-7854: · Fix live query $lookup update ([#6304](https://github.com/hcengineering/platform/issues/6304)) ## [0.6.277] - 2024-08-08 -* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) -* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) -* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) +* UBERF-7604: · Telegram notifications service ([#6182](https://github.com/hcengineering/platform/issues/6182)) +* EZQMS-1029: · Fix permissions check for creating project doc from context menu ([#6282](https://github.com/hcengineering/platform/issues/6282)) +* EZQMS-1160: · Fix slice type ([#6280](https://github.com/hcengineering/platform/issues/6280)) ## [0.6.276] - 2024-08-07 -* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) -* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) -* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) -* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) -* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) -* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) +* 🐛 BUG FIXES: · Rekoni service build ([#6255](https://github.com/hcengineering/platform/issues/6255)) +* UBERF-7604: · Preparation for telegram notifications ([#6123](https://github.com/hcengineering/platform/issues/6123)) +* UBERF-7717: · Reduce finds on members changed ([#6219](https://github.com/hcengineering/platform/issues/6219)) +* UBERF-7753: · Change auth approach for providers ([#6234](https://github.com/hcengineering/platform/issues/6234)) +* UBERF-7817: · Fix tag element query ([#6267](https://github.com/hcengineering/platform/issues/6267)) +* UBERF-7765: · Retry config load desktop ([#6272](https://github.com/hcengineering/platform/issues/6272)) · Only retry network errors when loading config for desktop app ([#6274](https://github.com/hcengineering/platform/issues/6274)) ## [0.6.274] - 2024-08-05 -* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) -* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) -* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) -* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) -* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) +* 🐛 BUG FIXES: · Properly update uppy state ([#6252](https://github.com/hcengineering/platform/issues/6252)) · Remove provider from preview config ([#6253](https://github.com/hcengineering/platform/issues/6253)) +* UBERF-7794: · Restore related issues control ([#6244](https://github.com/hcengineering/platform/issues/6244)) +* UBERF-7796: · Rework index creation logic ([#6246](https://github.com/hcengineering/platform/issues/6246)) +* UBERF-7800: · Space improvements ([#6250](https://github.com/hcengineering/platform/issues/6250)) +* UBERF-7764: · Improve space permissions query ([#6236](https://github.com/hcengineering/platform/issues/6236)) ## [0.6.271] - 2024-08-02 -* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) +* UBERF-7776: · Get rid of blobs in UI ([#6226](https://github.com/hcengineering/platform/issues/6226)) ## [0.6.271rc1] - 2024-08-01 -* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) -* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) -* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) -* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) -* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) -* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) +* 🐛 BUG FIXES: · Drive UX fixes ([#6213](https://github.com/hcengineering/platform/issues/6213)) +* ⚙️ MISCELLANEOUS TASKS: · Cross-platform docker build ([#6198](https://github.com/hcengineering/platform/issues/6198)) · Update hocuspocus version ([#6207](https://github.com/hcengineering/platform/issues/6207)) +* EZQMS-1145: · Fixes doc import tool ([#6204](https://github.com/hcengineering/platform/issues/6204)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7743: · Make check-clean non blocking ([#6195](https://github.com/hcengineering/platform/issues/6195)) +* UBERF-7749: · Use MONGO_OPTIONS properly ([#6200](https://github.com/hcengineering/platform/issues/6200)) +* UBERF-7755: · Fix image toolbar visibility ([#6208](https://github.com/hcengineering/platform/issues/6208)) ## [0.6.270] - 2024-07-30 -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) -* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* UBERF-7734: · Fix total with find with limit === 1 ([#6187](https://github.com/hcengineering/platform/issues/6187)) ## [0.6.269] - 2024-07-30 -* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) -* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) -* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) +* 🐛 BUG FIXES: · Add github to server pipeline ([#6170](https://github.com/hcengineering/platform/issues/6170)) +* UBERF-7016: · Hide channels without any activity long time ([#6176](https://github.com/hcengineering/platform/issues/6176)) +* UBERF-7721: · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) · Fixed event display ([#6175](https://github.com/hcengineering/platform/issues/6175)) ## [0.6.268] - 2024-07-29 -* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) -* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) +* UBERF-7698: · Fix backup · Fix backup ([#6168](https://github.com/hcengineering/platform/issues/6168)) +* UBERF-7705: · Maitenance warning for every transactor ([#6169](https://github.com/hcengineering/platform/issues/6169)) ## [0.6.267] - 2024-07-29 -* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) -* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) -* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) -* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) -* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) -* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) -* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) +* EZQMS-1069: · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) · Fix request model ([#6131](https://github.com/hcengineering/platform/issues/6131)) +* UBERF-7543: · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) · Add low level groupBy api and improve security space lookup ([#6126](https://github.com/hcengineering/platform/issues/6126)) +* UBERF-7579: · Text editor actions ([#6103](https://github.com/hcengineering/platform/issues/6103)) +* UBERF-7665: · Fix OOM on partial data ([#6134](https://github.com/hcengineering/platform/issues/6134)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) · Fix OOM in sharp ([#6138](https://github.com/hcengineering/platform/issues/6138)) +* UBERF-7675: · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) · Remove heading text action from compact editors ([#6143](https://github.com/hcengineering/platform/issues/6143)) +* UBERF-7682: · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) · Fix mongo cursor on backup ([#6145](https://github.com/hcengineering/platform/issues/6145)) +* UBERF-7692: · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) · Move FindAll slow print into mongo adapter ([#6152](https://github.com/hcengineering/platform/issues/6152)) ## [0.6.266] - 2024-07-24 -* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) -* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) -* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) -* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) -* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) -* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) -* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) +* EZQMS-1109: · Add signature details for reviews/approvals ([#6111](https://github.com/hcengineering/platform/issues/6111)) +* EZQMS-1140: · Controlled doc content display improvements ([#6110](https://github.com/hcengineering/platform/issues/6110)) +* QFIX: · Qms signature dialog login info in tests ([#6100](https://github.com/hcengineering/platform/issues/6100)) +* UBERF-7603: · Fix connect with timeout ([#6101](https://github.com/hcengineering/platform/issues/6101)) +* UBERF-7638: · Add scroll to latest message button ([#6119](https://github.com/hcengineering/platform/issues/6119)) +* EZQMS-1004: · Fix typo ([#6114](https://github.com/hcengineering/platform/issues/6114)) +* EZQMS-1121: · Fix deleted doc states ([#6112](https://github.com/hcengineering/platform/issues/6112)) ## [0.6.265] - 2024-07-19 -* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) -* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) -* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) -* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) -* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) -* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) +* 🐛 BUG FIXES: · Hide wiki history sidebar tab ([#6064](https://github.com/hcengineering/platform/issues/6064)) +* UBERF-7595: · Do not use /api/v1/version on connect ([#6075](https://github.com/hcengineering/platform/issues/6075)) +* UBERF-7597: · Get rid of formats in preview.ts ([#6077](https://github.com/hcengineering/platform/issues/6077)) +* UBERF-7600: · Reduce number of $in operators and fix account service is… ([#6080](https://github.com/hcengineering/platform/issues/6080)) +* UBERF-7603: · Support multiple transactors ([#6086](https://github.com/hcengineering/platform/issues/6086)) +* UBERF-7620: · Send broadcast on delay with combine ([#6094](https://github.com/hcengineering/platform/issues/6094)) ## [0.6.264] - 2024-07-12 -* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) -* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) -* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) -* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) +* UBERF-7495: · Global editor kit extensions ([#6057](https://github.com/hcengineering/platform/issues/6057)) +* UBERF-7513: · Improve notifications model to allow external notifications channels ([#6037](https://github.com/hcengineering/platform/issues/6037)) +* UBERF-7519: · Rework backup service ([#6050](https://github.com/hcengineering/platform/issues/6050)) +* UBERF-7583: · Fix workspace upgrade ([#6062](https://github.com/hcengineering/platform/issues/6062)) ## [0.6.263] - 2024-07-10 -* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) +* UBERF-7543: · Fix memory usage ([#6044](https://github.com/hcengineering/platform/issues/6044)) ## [0.6.262] - 2024-07-10 -* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) +* 🐛 BUG FIXES: · Track applied transactions in session op context ([#6029](https://github.com/hcengineering/platform/issues/6029)) ## [0.6.261] - 2024-07-09 -* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) -* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) -* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) -* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) +* 🐛 BUG FIXES: · Handle readonly in number presenter ([#6026](https://github.com/hcengineering/platform/issues/6026)) +* UBERF-7510: · Add logging and catch errors on cleanup ([#6003](https://github.com/hcengineering/platform/issues/6003)) +* UBERF-7520: · Use Bulk for index query updates ([#6012](https://github.com/hcengineering/platform/issues/6012)) +* UBERF-7532: · Bulk operations for triggers ([#6023](https://github.com/hcengineering/platform/issues/6023)) ## [0.6.260] - 2024-07-04 -* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) -* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) -* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) -* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) -* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) -* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) -* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) -* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) +* QFIX: · Revert missing pipeline configuration ([#5987](https://github.com/hcengineering/platform/issues/5987)) +* QFIX: · Use http for local and test brandings ([#5980](https://github.com/hcengineering/platform/issues/5980)) +* UBERF-7465: · Move pipeline into separate plugin ([#5978](https://github.com/hcengineering/platform/issues/5978)) +* UBERF-7474: · Some logging and reduce calls for query refresh ([#5973](https://github.com/hcengineering/platform/issues/5973)) +* UBERF-7489: · Fix various performance issues ([#5983](https://github.com/hcengineering/platform/issues/5983)) · Some more chat optimizations ([#5999](https://github.com/hcengineering/platform/issues/5999)) +* UBERF-7501: · Copy few blobs in parallel ([#5995](https://github.com/hcengineering/platform/issues/5995)) +* EZQMS-1057: · Fix images in branded workspaces ([#5979](https://github.com/hcengineering/platform/issues/5979)) +* UBERF-7434: · Show dowload progress ([#5944](https://github.com/hcengineering/platform/issues/5944)) ## [0.6.259] - 2024-06-28 -* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) -* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) +* UBERF-7428: · Fix memory issues ([#5940](https://github.com/hcengineering/platform/issues/5940)) +* UBERF-7389: · Instant transactions ([#5941](https://github.com/hcengineering/platform/issues/5941)) ## [0.6.258] - 2024-06-27 -* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) -* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) -* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) -* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) -* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) +* 🚀 FEATURES: · Add shortcut to create todo in documents ([#5827](https://github.com/hcengineering/platform/issues/5827)) +* UBERF-7411: · Allow to backup blobs with wrong size ([#5926](https://github.com/hcengineering/platform/issues/5926)) +* UBERF-7419: · Fix various sentry errors ([#5931](https://github.com/hcengineering/platform/issues/5931)) +* UBERF-7422: · Fix blob/stora ([#5933](https://github.com/hcengineering/platform/issues/5933)) +* UBERF-7425: · Fix some CF caching issues ([#5936](https://github.com/hcengineering/platform/issues/5936)) ## [0.6.257] - 2024-06-25 -* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) -* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) -* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) -* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) -* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) -* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) -* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) +* 🐛 BUG FIXES: · *(ui)* Allow input month with keystrokes ([#5785](https://github.com/hcengineering/platform/issues/5785)) +* UBERF-5564: · Rework groupping and support PersonAccount ([#5525](https://github.com/hcengineering/platform/issues/5525)) +* UBERF-7165: · Storage + Backup improvements ([#5913](https://github.com/hcengineering/platform/issues/5913)) +* UBERF-7330: · Improve text editor UX ([#5909](https://github.com/hcengineering/platform/issues/5909)) +* UBERF-7362: · Do not cache branding served from front ([#5889](https://github.com/hcengineering/platform/issues/5889)) +* EZQMS-1028: · Fix actions in tree element ([#5887](https://github.com/hcengineering/platform/issues/5887)) +* UBERF-7350: · Add more oauth logs ([#5879](https://github.com/hcengineering/platform/issues/5879)) ## [0.6.256] - 2024-06-20 -* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) -* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) -* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) -* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) +* 🐛 BUG FIXES: · Extra logging in documents content migration ([#5868](https://github.com/hcengineering/platform/issues/5868)) +* EZQMS-951: · Server branding ([#5858](https://github.com/hcengineering/platform/issues/5858)) +* UBERF-7327: · Chinese language selector ([#5862](https://github.com/hcengineering/platform/issues/5862)) +* UBERF-7342: · Add french lang selector ([#5873](https://github.com/hcengineering/platform/issues/5873)) ## [0.6.255] - 2024-06-18 -* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) -* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) -* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) -* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) -* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) -* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) -* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) -* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) -* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) +* UBERF-7126: · Content type based storage configuration ([#5781](https://github.com/hcengineering/platform/issues/5781)) +* UBERF-7239: · Support short/custom links in inbox/chat/planner ([#5815](https://github.com/hcengineering/platform/issues/5815)) +* UBERF-7286: · Backup retry ([#5830](https://github.com/hcengineering/platform/issues/5830)) +* UBERF-7297: · Allow to backup-restore from v0.6.239 ([#5837](https://github.com/hcengineering/platform/issues/5837)) · One more fix to backup-restore ([#5841](https://github.com/hcengineering/platform/issues/5841)) +* UBERF-7308: · Upgrade model improvements ([#5847](https://github.com/hcengineering/platform/issues/5847)) +* UBERF-7312: · Memory improvements ([#5849](https://github.com/hcengineering/platform/issues/5849)) +* EZQMS-1004: · Fix questions wording ([#5820](https://github.com/hcengineering/platform/issues/5820)) +* EZQMS-1023: · Remove old migrations from qms ([#5823](https://github.com/hcengineering/platform/issues/5823)) +* EZQMS-966: · Notifications fixes ([#5819](https://github.com/hcengineering/platform/issues/5819)) ## [0.6.254] - 2024-06-14 -* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) +* UBERF-7266: · Fix workspace rate limit ([#5812](https://github.com/hcengineering/platform/issues/5812)) ## [0.6.253] - 2024-06-13 -* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) -* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) -* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) +* UBERF-7247: · Fix queryFind for mixins on server ([#5803](https://github.com/hcengineering/platform/issues/5803)) +* EZQMS-972: · Fix custom space types for documents and products ([#5801](https://github.com/hcengineering/platform/issues/5801)) +* EZQMS-974: · Fix space type selector in document and product spaces ([#5802](https://github.com/hcengineering/platform/issues/5802)) ## [0.6.252] - 2024-06-12 -* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) -* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) -* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) -* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) +* EZQMS-1008: · Disable archived product editing ([#5794](https://github.com/hcengineering/platform/issues/5794)) +* EZQMS-976: · Exclude other types mixins ([#5795](https://github.com/hcengineering/platform/issues/5795)) +* EZQMS-981: · Adjust doc library wording ([#5791](https://github.com/hcengineering/platform/issues/5791)) +* UBERF-7206: · Adjustments and resources to support desktop screenshare ([#5790](https://github.com/hcengineering/platform/issues/5790)) ## [0.6.251] - 2024-06-11 -* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) -* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) -* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) +* 🐛 BUG FIXES: · Disable guest link action for selection ([#5776](https://github.com/hcengineering/platform/issues/5776)) +* ⚙️ MISCELLANEOUS TASKS: · Update preview.ts ([#5765](https://github.com/hcengineering/platform/issues/5765)) +* UBERF-7197: · Fix high cpu load ([#5761](https://github.com/hcengineering/platform/issues/5761)) ## [0.6.250] - 2024-06-07 -* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) -* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) +* UBERF-7077: · Fixed Separator ([#5743](https://github.com/hcengineering/platform/issues/5743)) +* UBERF-7181: · Fix GH PR statuses ([#5749](https://github.com/hcengineering/platform/issues/5749)) ## [0.6.249] - 2024-06-05 -* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) -* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) -* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) +* UBERF-7090: · Add QMS common components ([#5711](https://github.com/hcengineering/platform/issues/5711)) · Add QMS plugins ([#5716](https://github.com/hcengineering/platform/issues/5716)) · Add Office plugins ([#5725](https://github.com/hcengineering/platform/issues/5725)) +* UBERF-7126: · Fix blob previews ([#5723](https://github.com/hcengineering/platform/issues/5723)) · Support rich editor blob resolve ([#5727](https://github.com/hcengineering/platform/issues/5727)) +* EZQMS-910: · Fix workspace roles editing ([#5726](https://github.com/hcengineering/platform/issues/5726)) ## [0.6.248] - 2024-05-31 -* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) -* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) +* UBERF-7114: · Fix workspace from clone ([#5703](https://github.com/hcengineering/platform/issues/5703)) +* UBERF-7118: · Fix upgrade/refresh on reconnect ([#5704](https://github.com/hcengineering/platform/issues/5704)) ## [0.6.247] - 2024-05-30 -* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) -* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) -* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) -* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) -* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) -* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) -* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) -* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) -* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) -* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) +* 🐛 BUG FIXES: · Use concatLink for transactor URL ([#5659](https://github.com/hcengineering/platform/issues/5659)) · Migrate content for documents only ([#5699](https://github.com/hcengineering/platform/issues/5699)) +* QFIX: · Remove hardcoded platform url ([#5692](https://github.com/hcengineering/platform/issues/5692)) +* UBERF-6984: · Host-based branding ([#5657](https://github.com/hcengineering/platform/issues/5657)) +* UBERF-7011: · Switch to Ref ([#5661](https://github.com/hcengineering/platform/issues/5661)) +* UBERF-7062: · Fix backup memory usage and support missing blobs ([#5665](https://github.com/hcengineering/platform/issues/5665)) +* UBERF-7067: · Make chat group labels translations reactive ([#5688](https://github.com/hcengineering/platform/issues/5688)) +* UBERF-7105: · Use status colour when projectState is undefined ([#5697](https://github.com/hcengineering/platform/issues/5697)) +* UBERF-6639: · Fix create issue default status ([#5685](https://github.com/hcengineering/platform/issues/5685)) +* UBERF-7084: · Fix add new status to task type ([#5684](https://github.com/hcengineering/platform/issues/5684)) +* UBERF-7090: · Request enhancements ([#5695](https://github.com/hcengineering/platform/issues/5695)) ## [0.6.246] - 2024-05-23 -* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) -* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) +* 🐛 BUG FIXES: · Proper drive space header button logic ([#5642](https://github.com/hcengineering/platform/issues/5642)) · Download drive files via temporary link ([#5644](https://github.com/hcengineering/platform/issues/5644)) +* UBERF-7018: · Fix vacancies ([#5647](https://github.com/hcengineering/platform/issues/5647)) ## [0.6.245] - 2024-05-22 -* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) -* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) -* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) -* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) -* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) +* UBERF-6365: · Blob mongo storage initial support ([#5474](https://github.com/hcengineering/platform/issues/5474)) +* UBERF-6638: · Fix colours for statuses ([#5620](https://github.com/hcengineering/platform/issues/5620)) +* UBERF-6854: · S3 provider ([#5611](https://github.com/hcengineering/platform/issues/5611)) +* UBERF-6893: · Move index build into workspace usage. ([#5586](https://github.com/hcengineering/platform/issues/5586)) +* UBERF-6949: · Fix kanban options ([#5593](https://github.com/hcengineering/platform/issues/5593)) ## [0.6.243] - 2024-05-13 -* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) -* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) -* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) -* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) -* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) +* 🐛 BUG FIXES: · Hide actions for archived teamspaces ([#5580](https://github.com/hcengineering/platform/issues/5580)) +* UBERF-6829: · Group messages of the same type and user ([#5569](https://github.com/hcengineering/platform/issues/5569)) +* EZQMS-876: · Adjust role assignment editor ([#5583](https://github.com/hcengineering/platform/issues/5583)) +* EZQMS-883: · Allow email notifications for requests ([#5582](https://github.com/hcengineering/platform/issues/5582)) +* EZQMS-896: · Fix owners assignment for default spaces ([#5585](https://github.com/hcengineering/platform/issues/5585)) ## [0.6.242] - 2024-05-10 -* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) -* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) -* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) +* 🐛 BUG FIXES: · Add missing productId to getAccountInfo ([#5540](https://github.com/hcengineering/platform/issues/5540)) +* UBERF-6870: · Speedup server broadcast of derived transactions ([#5553](https://github.com/hcengineering/platform/issues/5553)) +* UBERF-6888: · Async triggers ([#5565](https://github.com/hcengineering/platform/issues/5565)) ## [0.6.241] - 2024-05-08 -* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) -* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) +* UBERF-6802: · Improve create chat message performance ([#5530](https://github.com/hcengineering/platform/issues/5530)) +* UBERF-6807: · Fix empty objects channels in chat ([#5533](https://github.com/hcengineering/platform/issues/5533)) ## [0.6.240] - 2024-05-06 -* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) -* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) -* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) -* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) -* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) -* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) -* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) -* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) +* 🐛 BUG FIXES: · Move to well known parent when no parent selected ([#5516](https://github.com/hcengineering/platform/issues/5516)) +* EZQMS-729: · Restrict spaces operations ([#5500](https://github.com/hcengineering/platform/issues/5500)) +* QFIX: · Connection should restore boolean query fields ([#5508](https://github.com/hcengineering/platform/issues/5508)) +* UBERF-6576: · Move default space/project/task types into static model ([#5423](https://github.com/hcengineering/platform/issues/5423)) +* UBERF-6778: · Add Support to uWebSocket.js library ([#5503](https://github.com/hcengineering/platform/issues/5503)) +* EZQMS-730: · Better check for roles when changing members ([#5527](https://github.com/hcengineering/platform/issues/5527)) +* EZQMS-798: · Fix role name update ([#5514](https://github.com/hcengineering/platform/issues/5514)) +* EZQMS-834: · Fix roles ids and names ([#5520](https://github.com/hcengineering/platform/issues/5520)) ## [0.6.239] - 2024-05-03 -* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) -* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) -* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) -* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) -* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) +* 🐛 BUG FIXES: · Show max width button in documents ([#5476](https://github.com/hcengineering/platform/issues/5476)) +* EZQMS-762: · Improve printing layout ([#5486](https://github.com/hcengineering/platform/issues/5486)) +* QFIX: · Elastic adapter index not found exception ([#5482](https://github.com/hcengineering/platform/issues/5482)) +* UBERF-6756: · Tracker performance fixes ([#5488](https://github.com/hcengineering/platform/issues/5488)) +* EZQMS-762: · Extract base content from toc popup ([#5489](https://github.com/hcengineering/platform/issues/5489)) ## [0.6.238] - 2024-04-26 -* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) -* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) -* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) -* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) -* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) +* UBERF-6676: · Chat local state ([#5461](https://github.com/hcengineering/platform/issues/5461)) +* UBERF-6677: · Add user online/offline status ([#5438](https://github.com/hcengineering/platform/issues/5438)) +* UBERF-6712: · Rework connection logic ([#5455](https://github.com/hcengineering/platform/issues/5455)) +* UBERF-6726: · Fix clone for huge files ([#5470](https://github.com/hcengineering/platform/issues/5470)) +* UBERF-6708: · Composite elastic doc key ([#5457](https://github.com/hcengineering/platform/issues/5457)) ## [0.6.237] - 2024-04-23 -* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) +* EZQMS-748: · Hide left menu by default, ensure placement, improve show/hide logic ([#5429](https://github.com/hcengineering/platform/issues/5429)) ## [0.6.236] - 2024-04-23 -* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) +* UBERF-6653: · Fix minor issue and add force-close ([#5418](https://github.com/hcengineering/platform/issues/5418)) ## [0.6.235a] - 2024-04-20 -* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) -* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) +* UBERF-6636: · Fix todos auto expand if collapsed ([#5406](https://github.com/hcengineering/platform/issues/5406)) +* UBERF-6643: · Fix few connection related exceptions ([#5412](https://github.com/hcengineering/platform/issues/5412)) · A bit more logging ([#5413](https://github.com/hcengineering/platform/issues/5413)) ## [0.6.235] - 2024-04-19 -* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) -* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) +* UBERF-6626: · More detailed info about maintenance ([#5400](https://github.com/hcengineering/platform/issues/5400)) +* UBERF-6633: · Fix model enabled tracking ([#5404](https://github.com/hcengineering/platform/issues/5404)) ## [0.6.234] - 2024-04-18 -* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) -* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) -* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) -* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) +* UBERF-5527: · Add context menu for activity and inbox ([#5373](https://github.com/hcengineering/platform/issues/5373)) +* UBERF-6205: · Add real archive for notifications ([#5385](https://github.com/hcengineering/platform/issues/5385)) +* UBERF-6490: · Rework backup tool ([#5386](https://github.com/hcengineering/platform/issues/5386)) +* UBERF-6598: · Perform upgrade all workspaces to new versions ([#5392](https://github.com/hcengineering/platform/issues/5392)) ## [0.6.233] - 2024-04-16 -* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) -* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) -* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) +* QFIX: · Always recreate space types ([#5371](https://github.com/hcengineering/platform/issues/5371)) +* UBERF-6464: · Update activity mentions display ([#5339](https://github.com/hcengineering/platform/issues/5339)) +* UBERF-6577: · Fix invite link with null mask ([#5372](https://github.com/hcengineering/platform/issues/5372)) ## [0.6.232] - 2024-04-16 -* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) -* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) -* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) -* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) -* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) -* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) -* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) +* 🐛 BUG FIXES: · Workspace creation issues ([#5362](https://github.com/hcengineering/platform/issues/5362)) +* UBERF-5686: · Fix copy link ([#5368](https://github.com/hcengineering/platform/issues/5368)) +* UBERF-5964: · Insert items menu in editor ([#5341](https://github.com/hcengineering/platform/issues/5341)) +* UBERF-6330: · Fix race conditions in UI ([#5184](https://github.com/hcengineering/platform/issues/5184)) +* UBERF-6557: · Clean old domains during clone of workspace to new place ([#5361](https://github.com/hcengineering/platform/issues/5361)) +* EZQMS-724: · Make roles related code more robust ([#5363](https://github.com/hcengineering/platform/issues/5363)) +* UBERF-6537: · Fix teamspace creation ([#5354](https://github.com/hcengineering/platform/issues/5354)) ## [0.6.231] - 2024-04-13 -* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) -* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) -* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) -* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) -* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) -* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) -* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) +* EZQMS-689: · Slightly improved typings for notification presenters ([#5312](https://github.com/hcengineering/platform/issues/5312)) +* UBERF-6469: · Fix slow index creation ([#5324](https://github.com/hcengineering/platform/issues/5324)) +* UBERF-6478: · Make icons more clear ([#5320](https://github.com/hcengineering/platform/issues/5320)) +* UBERF-6508: · Add user to doc collaborators on mention ([#5340](https://github.com/hcengineering/platform/issues/5340)) +* UBERF-6509: · Fix reading mention notifications ([#5323](https://github.com/hcengineering/platform/issues/5323)) +* UBERF-6523: · Allow to use zstd ([#5333](https://github.com/hcengineering/platform/issues/5333)) +* UBERF-6540: · Fix isIndexable and clean wrong indexed documents ([#5347](https://github.com/hcengineering/platform/issues/5347)) ## [0.6.230] - 2024-04-10 -* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) -* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) +* SILENT: · False for notifications ([#5284](https://github.com/hcengineering/platform/issues/5284)) +* UBERF-6469: · Rework workspace creation to more informative ([#5291](https://github.com/hcengineering/platform/issues/5291)) ## [0.6.229] - 2024-04-10 -* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) -* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) -* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) +* 🚀 FEATURES: · *(help)* Added find bug button for easy navigation ([#5214](https://github.com/hcengineering/platform/issues/5214)) +* QFIX: · Center media, improve matching ([#5267](https://github.com/hcengineering/platform/issues/5267)) +* UBERF-6353: · Extensible preview ([#5264](https://github.com/hcengineering/platform/issues/5264)) ## [0.6.228a] - 2024-04-09 -* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) -* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) +* UBERF-6426: · Fix stuck backup ([#5258](https://github.com/hcengineering/platform/issues/5258)) +* UBERF-6433: · Fix workspace creation from demo workspaces ([#5255](https://github.com/hcengineering/platform/issues/5255)) ## [0.6.228] - 2024-04-08 -* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) -* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) +* TSK-1682: · Introduced reusable `SectionEmpty` for numerous existing and upcoming cases ([#5220](https://github.com/hcengineering/platform/issues/5220)) +* UBERF-6313: · Improve backup/restore ([#5241](https://github.com/hcengineering/platform/issues/5241)) ## [0.6.227] - 2024-04-08 -* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) -* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) -* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) -* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) -* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) +* EZQMS-663: · Add permissions util ([#5189](https://github.com/hcengineering/platform/issues/5189)) +* QFIX: · Restore ats task types tool ([#5185](https://github.com/hcengineering/platform/issues/5185)) +* TSK-1682: · Slightly reorganized recruit files for future changes ([#5196](https://github.com/hcengineering/platform/issues/5196)) +* UBERF-6374: · Improve server logging and improve startup performance ([#5210](https://github.com/hcengineering/platform/issues/5210)) +* UBERF-6393: · Work on elastic fast backup/restore ([#5235](https://github.com/hcengineering/platform/issues/5235)) ## [0.6.226] - 2024-04-04 -* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) -* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) -* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) +* UBERF-6313: · Improve upgrade of workspace ([#5178](https://github.com/hcengineering/platform/issues/5178)) +* UBERF-6314: · Provide space if all of the items have same space ([#5171](https://github.com/hcengineering/platform/issues/5171)) +* UBERF-6318: · Fix server drop connection on connect ([#5174](https://github.com/hcengineering/platform/issues/5174)) ## [0.6.225] - 2024-04-03 -* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) -* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) -* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) -* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) +* UBERF-6296: · Fix elastic queries ([#5155](https://github.com/hcengineering/platform/issues/5155)) +* UBERF-6300: · Not cache for index.html's ([#5159](https://github.com/hcengineering/platform/issues/5159)) +* UBERF-6310: · Fix context passing ([#5167](https://github.com/hcengineering/platform/issues/5167)) +* UBERF-6255: · Minor guest and pdf viewer adjustments ([#5164](https://github.com/hcengineering/platform/issues/5164)) ## [0.6.224] - 2024-04-02 -* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) +* QFIX: · Wrong minio config parameter ([#5151](https://github.com/hcengineering/platform/issues/5151)) ## [0.6.223] - 2024-04-02 -* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) -* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) -* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) -* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) +* UBERF-6161: · Storage configuration ([#5109](https://github.com/hcengineering/platform/issues/5109)) +* UBERF-6263: · Fix mongo client unexpected close ([#5129](https://github.com/hcengineering/platform/issues/5129)) +* UBERF-6265: · Fix account creation from account service ([#5132](https://github.com/hcengineering/platform/issues/5132)) +* UBERF-6267: · Fix few platform troubles ([#5142](https://github.com/hcengineering/platform/issues/5142)) ## [0.6.222] - 2024-04-01 -* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) -* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) -* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) +* 🚀 FEATURES: · Preview media attachments ([#5102](https://github.com/hcengineering/platform/issues/5102)) +* UBERF-6226: · Updated LOVE layout, VideoPopup. ([#5100](https://github.com/hcengineering/platform/issues/5100)) +* UBERF-6242: · More proper manage mongo connections ([#5118](https://github.com/hcengineering/platform/issues/5118)) ## [0.6.221] - 2024-03-29 -* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) -* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) -* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) +* QFIX: · Consistent space/project/task type mixi ids ([#5089](https://github.com/hcengineering/platform/issues/5089)) +* EZQMS-663: · Add more info to permissions store, fix tree element actions ([#5090](https://github.com/hcengineering/platform/issues/5090)) +* UBERF-6224: · Restore missing task types ([#5094](https://github.com/hcengineering/platform/issues/5094)) ## [0.6.220] - 2024-03-28 -* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) +* QFIX: · Invert delete object permission ([#5085](https://github.com/hcengineering/platform/issues/5085)) ## [0.6.219] - 2024-03-28 -* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) -* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) -* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) -* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) -* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) +* EZQMS-612: · Quick fix to let `TypedSpace` instances have non-configured roles (`undefined`) ([#5083](https://github.com/hcengineering/platform/issues/5083)) +* EZQMS-665: · Minor inbox styles fix ([#5065](https://github.com/hcengineering/platform/issues/5065)) +* UBERF-6001: · Roles management ([#4994](https://github.com/hcengineering/platform/issues/4994)) +* UBERF-6202: · Use only one mongo pull per configuration ([#5073](https://github.com/hcengineering/platform/issues/5073)) +* UBERF-6209: · Add reactivity ([#5078](https://github.com/hcengineering/platform/issues/5078)) ## [0.6.218] - 2024-03-27 -* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) -* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) -* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) -* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) +* 🚀 FEATURES: · *(test)* Updated Due date filter test ([#5057](https://github.com/hcengineering/platform/issues/5057)) +* UBERF-6094: · Preparing bot ([#5061](https://github.com/hcengineering/platform/issues/5061)) +* UBERF-6180: · Fix account issues ([#5063](https://github.com/hcengineering/platform/issues/5063)) +* UBERF-6194: · CLI for rename account ([#5067](https://github.com/hcengineering/platform/issues/5067)) ## [0.6.216] - 2024-03-25 -* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) -* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) -* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) -* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) -* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) -* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) +* 🚀 FEATURES: · *(planner)* Drag-n-drop ([#5031](https://github.com/hcengineering/platform/issues/5031)) · *(planner)* Save accordion state ([#5042](https://github.com/hcengineering/platform/issues/5042)) · *(planner)* Remove large view mode ([#5043](https://github.com/hcengineering/platform/issues/5043)) +* 🐛 BUG FIXES: · `Panel` glitches on opening ([#5033](https://github.com/hcengineering/platform/issues/5033)) +* QFIX: · Few check from sentry and disable due date test ([#5050](https://github.com/hcengineering/platform/issues/5050)) +* UBERF-6124: · Rework inbox view ([#5046](https://github.com/hcengineering/platform/issues/5046)) +* UBERF-6126: · Storage adapter ([#5035](https://github.com/hcengineering/platform/issues/5035)) +* UBERF-6150: · Improve backup logic ([#5041](https://github.com/hcengineering/platform/issues/5041)) ## [0.6.215] - 2024-03-21 -* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) -* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) +* EZQMS-602: · Moved `Rank` type to core (utilities stay in its own package) ([#5019](https://github.com/hcengineering/platform/issues/5019)) +* UBERF-6121: · Fix front service caching ([#5029](https://github.com/hcengineering/platform/issues/5029)) ## [0.6.214] - 2024-03-19 -* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) -* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) -* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) -* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) -* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) +* 🚀 FEATURES: · *(planner)* Add action for toggle button ([#4986](https://github.com/hcengineering/platform/issues/4986)) · *(test)* Working on the migration planner tests ([#5002](https://github.com/hcengineering/platform/issues/5002)) · *(planner)* Some ui improvements ([#4992](https://github.com/hcengineering/platform/issues/4992)) · *(planner)* New layout for attached todos ([#4995](https://github.com/hcengineering/platform/issues/4995)) · *(planner)* New slots, fixes and improvements ([#4961](https://github.com/hcengineering/platform/issues/4961)) +* EZQMS-642: · Extended `navigate()` signature to support History replacement ([#4979](https://github.com/hcengineering/platform/issues/4979)) +* UBERF-6053: · Do not crash on isDerived ([#4998](https://github.com/hcengineering/platform/issues/4998)) +* UBERF-6058: · Fix cache control for front service ([#5000](https://github.com/hcengineering/platform/issues/5000)) +* UBERF-6066: · Fix component manager state ([#5009](https://github.com/hcengineering/platform/issues/5009)) ## [0.6.213] - 2024-03-15 -* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) -* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) +* 🐛 BUG FIXES: · Default project icon ([#4984](https://github.com/hcengineering/platform/issues/4984)) +* UBERF-6042: · Fix front service ([#4991](https://github.com/hcengineering/platform/issues/4991)) ## [0.6.212] - 2024-03-15 -* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) -* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) -* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) -* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) -* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) -* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) +* 🚀 FEATURES: · *(test)* Updated Document public link revoke test ([#4955](https://github.com/hcengineering/platform/issues/4955)) +* 🐛 BUG FIXES: · Missed invite icon ([#4962](https://github.com/hcengineering/platform/issues/4962)) +* UBERF-5933: · Add 404 handling in case of resource direct requests ([#4983](https://github.com/hcengineering/platform/issues/4983)) +* UBERF-5986: · Upgrade fixes ([#4957](https://github.com/hcengineering/platform/issues/4957)) +* UBERF-6000: · Fix statuses filtering and icons ([#4966](https://github.com/hcengineering/platform/issues/4966)) +* UBERF-6014: · Fix $faset usage ([#4971](https://github.com/hcengineering/platform/issues/4971)) ## [0.6.211] - 2024-03-13 -* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) +* UBERF-5982: · Fix tracker select all action ([#4950](https://github.com/hcengineering/platform/issues/4950)) ## [0.6.210a] - 2024-03-13 -* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) -* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) +* 🐛 BUG FIXES: · *(planner)* Frozen slots when switching between todos ([#4944](https://github.com/hcengineering/platform/issues/4944)) +* TESTS-221: · Feat(tests): done Document public link revoke test ([#4940](https://github.com/hcengineering/platform/issues/4940)) ## [0.6.210] - 2024-03-13 -* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) -* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) -* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) -* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) -* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) -* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) -* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) -* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) -* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) -* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) +* 🚀 FEATURES: · *(planner)* New priority layout, update item layout ([#4896](https://github.com/hcengineering/platform/issues/4896)) · *(test)* Updated Due Date test ([#4925](https://github.com/hcengineering/platform/issues/4925)) +* EZQMS-459: · Hoisted `showNotify` calculation to `ActivityNotificationPresenter` ([#4937](https://github.com/hcengineering/platform/issues/4937)) +* EZQMS-649: · Moved some common utilities from Uberflow to Platform ([#4927](https://github.com/hcengineering/platform/issues/4927)) +* TESTS-102: · Feat(tests): done Label filter test ([#4885](https://github.com/hcengineering/platform/issues/4885)) +* TESTS-216: · Feat(tests): done Public link generate test ([#4915](https://github.com/hcengineering/platform/issues/4915)) +* TESTS-217: · Feat(test): done Public link Revoke test ([#4926](https://github.com/hcengineering/platform/issues/4926)) +* TESTS-236: · Feat(tests): done Create workspace with LastToken in the localStorage test ([#4939](https://github.com/hcengineering/platform/issues/4939)) +* TESTS-94: · Feat(tests): done Due date filter test ([#4891](https://github.com/hcengineering/platform/issues/4891)) +* UBERF-5825: · Fix github issues ([#4924](https://github.com/hcengineering/platform/issues/4924)) +* UBERF-5932: · Fix account upgrade ([#4912](https://github.com/hcengineering/platform/issues/4912)) ## [0.6.209] - 2024-03-08 -* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) -* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) -* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) -* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) -* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) -* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) -* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) -* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) -* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) -* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) -* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) +* 🚀 FEATURES: · *(planner)* Improve and reuse `Chip` ([#4854](https://github.com/hcengineering/platform/issues/4854)) +* 🐛 BUG FIXES: · *(todo)* Checkbox focus and spinner ([#4890](https://github.com/hcengineering/platform/issues/4890)) · *(todo)* Broken context actions ([#4889](https://github.com/hcengineering/platform/issues/4889)) +* EZQMS-377: · Add file attachments extension to text editor ([#4284](https://github.com/hcengineering/platform/issues/4284)) +* EZQMS-562: · Introduced reusable `NotificationToast` component ([#4873](https://github.com/hcengineering/platform/issues/4873)) +* EZQMS-602: · Moved Rank to its own package ([#4845](https://github.com/hcengineering/platform/issues/4845)) +* TESTS-100: · Feat(tests): done Milestone filter test ([#4872](https://github.com/hcengineering/platform/issues/4872)) +* TESTS-101: · Feat(tests): done Modified by filter test ([#4871](https://github.com/hcengineering/platform/issues/4871)) +* TESTS-103: · Feat(tests): done Title filter test ([#4863](https://github.com/hcengineering/platform/issues/4863)) +* UBERF-5811: · Rework backlinks ([#4887](https://github.com/hcengineering/platform/issues/4887)) +* UBERF-5827: · Add collaborative description for companies ([#4851](https://github.com/hcengineering/platform/issues/4851)) +* UBERF-5886: · Fix todo reorder on click ([#4904](https://github.com/hcengineering/platform/issues/4904)) ## [0.6.208] - 2024-03-04 -* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) -* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) -* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) -* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) +* 🚀 FEATURES: · New todo checkbox ([#4841](https://github.com/hcengineering/platform/issues/4841)) · *(tests)* TESTS-93 updated Created date filter test ([#4862](https://github.com/hcengineering/platform/issues/4862)) · *(tests)* Updated Created date filter test ([#4868](https://github.com/hcengineering/platform/issues/4868)) +* 🐛 BUG FIXES: · Create event popup improvements ([#4850](https://github.com/hcengineering/platform/issues/4850)) +* TESTS-212: · Feat(tests): done Add comment by popup test ([#4817](https://github.com/hcengineering/platform/issues/4817)) +* UBERF-5870: · Fix cache control and some minor enhancements ([#4869](https://github.com/hcengineering/platform/issues/4869)) ## [0.6.207] - 2024-03-01 -* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) +* UBERF-5812: · Fix allow to delete based on all my accounts ([#4823](https://github.com/hcengineering/platform/issues/4823)) ## [0.6.206] - 2024-03-01 -* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) -* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) +* 🚀 FEATURES: · *(tests)* Added documents tests ([#4843](https://github.com/hcengineering/platform/issues/4843)) +* UBERF-5712: · Fix jumping when scroll in bottom and add auto scroll to new content ([#4830](https://github.com/hcengineering/platform/issues/4830)) ## [0.6.205] - 2024-02-29 -* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) -* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) -* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) -* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) -* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) -* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) -* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) -* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) -* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) -* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) -* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) -* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) -* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) -* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) -* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) +* 🚀 FEATURES: · *(tests)* Added execute deploy in any status ([#4767](https://github.com/hcengineering/platform/issues/4767)) +* TESTS-196: · Feat(test): done Remove relation be editing issue details test ([#4755](https://github.com/hcengineering/platform/issues/4755)) +* UBER-1239: · Fix missing notifications for mentions from doc ([#4820](https://github.com/hcengineering/platform/issues/4820)) +* UBERF-5394: · Create component for new search input ([#4777](https://github.com/hcengineering/platform/issues/4777)) +* UBERF-5604: · Avoid extra calls on read notifications ([#4781](https://github.com/hcengineering/platform/issues/4781)) +* UBERF-5621: · Add full date tooltip ([#4783](https://github.com/hcengineering/platform/issues/4783)) +* UBERF-5626: · Set autofocus end on message edit ([#4784](https://github.com/hcengineering/platform/issues/4784)) +* UBERF-5630: · Fix inactive employee status in activity ([#4782](https://github.com/hcengineering/platform/issues/4782)) +* UBERF-5650: · Do not send mention notification if user already notified ([#4821](https://github.com/hcengineering/platform/issues/4821)) +* UBERF-5675: · Fix activity and notifications for colelction update ([#4819](https://github.com/hcengineering/platform/issues/4819)) +* UBERF-5718: · Allow to find one from existing queries ([#4776](https://github.com/hcengineering/platform/issues/4776)) +* UBERF-5733: · Remove invalid lookup update ([#4779](https://github.com/hcengineering/platform/issues/4779)) +* UBERF-5734: · Fix guest mode display of server generated links ([#4790](https://github.com/hcengineering/platform/issues/4790)) +* UBERF-5744: · Fix exception on server ([#4787](https://github.com/hcengineering/platform/issues/4787)) +* UBERF-5795: · Improve logging capabilities ([#4813](https://github.com/hcengineering/platform/issues/4813)) ## [0.6.204] - 2024-02-26 -* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) +* TESTS-193: · TESTS-194: feat(tests): working on the tests ([#4739](https://github.com/hcengineering/platform/issues/4739)) ## [0.6.203] - 2024-02-25 -* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) +* UBERF-5511: · Fix query and include ibm plex mono ([#4764](https://github.com/hcengineering/platform/issues/4764)) ## [0.6.202] - 2024-02-23 -* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) -* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) -* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) -* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) -* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) -* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) -* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) +* 🚀 FEATURES: · *(tests)* TESTS-47 done Mark as blocked by test ([#4737](https://github.com/hcengineering/platform/issues/4737)) +* UBER-958: · Fix query updates ([#4742](https://github.com/hcengineering/platform/issues/4742)) +* UBERF-5594: · Render mentions before object is loaded ([#4738](https://github.com/hcengineering/platform/issues/4738)) +* UBERF-5595: · Hide link preview for chat ([#4752](https://github.com/hcengineering/platform/issues/4752)) · Set up attachments sizes ([#4746](https://github.com/hcengineering/platform/issues/4746)) +* UBERF-5628: · Fix unexpected Reference object in Activity on mentions in description ([#4753](https://github.com/hcengineering/platform/issues/4753)) +* UBERF-5673: · Esbuild transpile ([#4748](https://github.com/hcengineering/platform/issues/4748)) +* UBERF-5694: · Attempt to fix build cache ([#4757](https://github.com/hcengineering/platform/issues/4757)) ## [0.6.201] - 2024-02-20 -* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) -* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) +* TESTS-182: · Feat(tests): done Create sub-issue from template test ([#4711](https://github.com/hcengineering/platform/issues/4711)) +* UBER-1227: · Fix members duplicates ([#4721](https://github.com/hcengineering/platform/issues/4721)) ## [0.6.200] - 2024-02-19 -* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) -* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) -* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) -* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) +* TESTS-192: · Feat(tests): done Add comment with image attachment test ([#4687](https://github.com/hcengineering/platform/issues/4687)) +* UBER-708: · Github related fixes ([#4704](https://github.com/hcengineering/platform/issues/4704)) +* UBERF-5472: · Add pagination for channels/direct ([#4706](https://github.com/hcengineering/platform/issues/4706)) +* UBERF-5586: · Improve loading of reactions and saved messages ([#4694](https://github.com/hcengineering/platform/issues/4694)) ## [0.6.198] - 2024-02-16 -* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) -* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) -* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) -* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) -* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) -* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) +* 🚀 FEATURES: · *(tests)* Updated reports and prepare server step ([#4659](https://github.com/hcengineering/platform/issues/4659)) +* QFIX: · Create project type ([#4685](https://github.com/hcengineering/platform/issues/4685)) +* UBERF-5548: · Use esbuild with webpack ([#4657](https://github.com/hcengineering/platform/issues/4657)) +* UBERF-5570: · Fix avatars ([#4679](https://github.com/hcengineering/platform/issues/4679)) +* UBERF-5575: · Fix workspace join ([#4684](https://github.com/hcengineering/platform/issues/4684)) +* UBERF-5551: · Configurable click propagation from edit box ([#4674](https://github.com/hcengineering/platform/issues/4674)) ## [0.6.197] - 2024-02-15 -* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) -* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) -* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) +* UBERF-5526: · Fix scroll to new messages ([#4651](https://github.com/hcengineering/platform/issues/4651)) +* UBERF-5532: · Fix recruit comments typo ([#4648](https://github.com/hcengineering/platform/issues/4648)) +* UBERF-5538: · Fix server queryFind with mixins ([#4653](https://github.com/hcengineering/platform/issues/4653)) ## [0.6.196] - 2024-02-14 -* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) -* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) -* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) -* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) -* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) -* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) +* EZQMS-563: · Moved `ActionWithAvailability` helper type and functions from `questions` to `view` ([#4611](https://github.com/hcengineering/platform/issues/4611)) +* UBERF-4319: · Fix performance issues ([#4631](https://github.com/hcengineering/platform/issues/4631)) +* UBERF-5467: · Remove hidden notifications and use Lazy on inbox ([#4632](https://github.com/hcengineering/platform/issues/4632)) +* UBERF-5476: · Fix archive in inbox ([#4618](https://github.com/hcengineering/platform/issues/4618)) +* UBERF-5485: · Fix versions in bundled resources ([#4625](https://github.com/hcengineering/platform/issues/4625)) +* UBERF-5495: · Load all messages for inbox with one query ([#4628](https://github.com/hcengineering/platform/issues/4628)) ## [0.6.195] - 2024-02-13 -* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) -* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) -* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) -* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) -* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) -* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) -* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) +* TESTS-167: · Feat(tests): done Check that the issue backlink test ([#4596](https://github.com/hcengineering/platform/issues/4596)) +* TESTS-179: · Feat(tests): done Check the changed description activity test ([#4598](https://github.com/hcengineering/platform/issues/4598)) +* UBEF-4319: · Few more performance fixes ([#4613](https://github.com/hcengineering/platform/issues/4613)) +* UBERF-4319: · Fix create issue performance ([#4608](https://github.com/hcengineering/platform/issues/4608)) +* UBERF-5323: · Fix new messages marker ([#4614](https://github.com/hcengineering/platform/issues/4614)) +* UBERF-5324: · Allow cmd-k for editable content ([#4601](https://github.com/hcengineering/platform/issues/4601)) +* UBERF-5438: · Fix edit issue attributes keys ([#4602](https://github.com/hcengineering/platform/issues/4602)) ## [0.6.194] - 2024-02-09 -* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) -* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) -* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) +* 🚀 FEATURES: · *(tests)* TESTS-166 done Check Contact activity backlink test ([#4585](https://github.com/hcengineering/platform/issues/4585)) +* UBERF-5408: · Fix inline images in comments ([#4591](https://github.com/hcengineering/platform/issues/4591)) +* UBERF-5418: · Fix status editing ([#4590](https://github.com/hcengineering/platform/issues/4590)) ## [0.6.193] - 2024-02-08 -* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) -* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) -* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) -* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) -* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) -* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) -* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) +* 🚀 FEATURES: · *(test)* Updated Move to project test ([#4582](https://github.com/hcengineering/platform/issues/4582)) +* TESTS-164: · Feat(tests): done mentioned in the issue test ([#4575](https://github.com/hcengineering/platform/issues/4575)) +* UBERF-4867: · Fix issues mentions display ([#4580](https://github.com/hcengineering/platform/issues/4580)) +* UBERF-5325: · Disable send message during attachment upload ([#4583](https://github.com/hcengineering/platform/issues/4583)) +* UBERF-5326: · Fix extra scroll and higlight when thread opened ([#4579](https://github.com/hcengineering/platform/issues/4579)) +* UBERF-5382: · Allow to disable component edit for some cases ([#4574](https://github.com/hcengineering/platform/issues/4574)) +* UBERF-5393: · Fix backlink for thread ([#4578](https://github.com/hcengineering/platform/issues/4578)) ## [0.6.192] - 2024-02-07 -* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) -* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) -* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) -* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) -* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) -* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) -* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) -* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) -* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) -* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) -* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) +* 🚀 FEATURES: · *(tests)* Updated Create duplicate issues test ([#4542](https://github.com/hcengineering/platform/issues/4542)) · *(tests)* Updated close issue selector ([#4551](https://github.com/hcengineering/platform/issues/4551)) · *(tests)* TESTS-171 done Check validation steps test ([#4558](https://github.com/hcengineering/platform/issues/4558)) +* 🐛 BUG FIXES: · Tags view action button layout ([#4514](https://github.com/hcengineering/platform/issues/4514)) +* EZQMS-531: · Prop to disable Save As and Save buttons in `FilterBar` ([#4560](https://github.com/hcengineering/platform/issues/4560)) +* TESTS-169: · Feat(tests): done Create a workspace with a custom name test ([#4541](https://github.com/hcengineering/platform/issues/4541)) +* UBERF-4319: · Trigger Server queries ([#4550](https://github.com/hcengineering/platform/issues/4550)) +* UBERF-5289: · Fix getting parent doc for some cases for indexing ([#4549](https://github.com/hcengineering/platform/issues/4549)) +* UBERF-5315: · Update chat ([#4572](https://github.com/hcengineering/platform/issues/4572)) +* UBERF-5321: · Fix workspace CLI upgrade ([#4534](https://github.com/hcengineering/platform/issues/4534)) +* UBERF-5348: · Fix new status creation ([#4567](https://github.com/hcengineering/platform/issues/4567)) +* UBERF-5350: · Fix workspace name create issue ([#4555](https://github.com/hcengineering/platform/issues/4555)) +* UBERF-5364: · Fix targeted broadcast on server ([#4565](https://github.com/hcengineering/platform/issues/4565)) ## [0.6.191] - 2024-02-05 -* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) -* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) -* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) +* 🐛 BUG FIXES: · Broken checkbox behavior ([#4509](https://github.com/hcengineering/platform/issues/4509)) · Popup glitches caused by long calculations ([#4511](https://github.com/hcengineering/platform/issues/4511)) +* UBERF-5017: · Show correct collaborators diff and dont send notification for collaborators changer ([#4529](https://github.com/hcengineering/platform/issues/4529)) +* UBERF-5304: · Fix init workspace ([#4524](https://github.com/hcengineering/platform/issues/4524)) ## [0.6.190] - 2024-02-03 -* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) +* UBERF-5280: · Fix backup service ([#4506](https://github.com/hcengineering/platform/issues/4506)) ## [0.6.188] - 2024-02-02 -* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) -* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) -* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) -* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) -* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) -* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) -* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) -* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) -* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) -* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) -* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) -* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) +* 🚀 FEATURES: · *(tests)* Updated filter between tests ([#4488](https://github.com/hcengineering/platform/issues/4488)) +* EZQMS-467: · Fixed group for `Open in new tab` action ([#4481](https://github.com/hcengineering/platform/issues/4481)) +* UBER-1160: · Open vacancy panel when it’s opened from applicant ([#4473](https://github.com/hcengineering/platform/issues/4473)) +* UBER-944: · Action for opening in new tab ([#4447](https://github.com/hcengineering/platform/issues/4447)) +* UBERF-4319: · Performance changes ([#4474](https://github.com/hcengineering/platform/issues/4474)) · Improve performance ([#4501](https://github.com/hcengineering/platform/issues/4501)) +* UBERF-4983: · Update chat ui ([#4483](https://github.com/hcengineering/platform/issues/4483)) +* UBERF-5020: · Fix reply to thread ([#4502](https://github.com/hcengineering/platform/issues/4502)) +* UBERF-5140: · Any workspace names ([#4489](https://github.com/hcengineering/platform/issues/4489)) +* UBERF-5232: · Fix wrong activity message title ([#4498](https://github.com/hcengineering/platform/issues/4498)) +* UBERF-5243: · Add default size, make icons size consistent ([#4494](https://github.com/hcengineering/platform/issues/4494)) +* UBERF-5265: · Fix workspace creation ([#4499](https://github.com/hcengineering/platform/issues/4499)) +* UBERF-5275: · Fix collaborator editing ([#4505](https://github.com/hcengineering/platform/issues/4505)) ## [0.6.187] - 2024-01-30 -* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) -* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) -* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) -* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) -* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) +* TESTS-159: · Feat(tests): done Create issue with several attachment tests ([#4464](https://github.com/hcengineering/platform/issues/4464)) +* UBER-1005: · Array> support as custom attribute ([#4471](https://github.com/hcengineering/platform/issues/4471)) +* UBER-1198: · Upgrade to mongo 7 ([#4472](https://github.com/hcengineering/platform/issues/4472)) +* UBERF-4631: · Fix issue when link preview in activity displayed as #undefined ([#4435](https://github.com/hcengineering/platform/issues/4435)) +* EZQMS-537: · Make thread header hidable ([#4458](https://github.com/hcengineering/platform/issues/4458)) ## [0.6.186] - 2024-01-25 -* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) -* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) -* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) -* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) +* 🚀 FEATURES: · *(tests)* Updated duplicate issues test ([#4450](https://github.com/hcengineering/platform/issues/4450)) +* EZQMS-461: · Add generics for `ModeSelector` and `SpecialView` ([#4437](https://github.com/hcengineering/platform/issues/4437)) · Better typings for `ModeSelector` ([#4451](https://github.com/hcengineering/platform/issues/4451)) +* UBERF-4970: · Fix component update ([#4455](https://github.com/hcengineering/platform/issues/4455)) +* UBERF-5083: · Fix project delete ([#4446](https://github.com/hcengineering/platform/issues/4446)) ## [0.6.185] - 2024-01-25 -* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) +* EZQMS-538: · Allow command contributions to dev tool ([#4440](https://github.com/hcengineering/platform/issues/4440)) ## [0.6.184] - 2024-01-24 -* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) -* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) +* 🚀 FEATURES: · *(tests)* Skipped Set parent issue test ([#4427](https://github.com/hcengineering/platform/issues/4427)) +* EZQMS-527: · Introduced `ActionButton` component ([#4412](https://github.com/hcengineering/platform/issues/4412)) · Consistent defaults for `ActionButton` ([#4421](https://github.com/hcengineering/platform/issues/4421)) ## [0.6.183] - 2024-01-23 -* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) -* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) -* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) +* UBERF-5018: · Search improvements/Indexing fix ([#4403](https://github.com/hcengineering/platform/issues/4403)) +* UBERF-5024: · Add reactions control to inbox ([#4414](https://github.com/hcengineering/platform/issues/4414)) +* UBERF-5042: · Fix exception in list view ([#4419](https://github.com/hcengineering/platform/issues/4419)) ## [0.6.182] - 2024-01-22 -* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) -* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) -* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) +* EZQMS-527: · Expose `EmployeeArrayEditor` from `contact-resources` ([#4411](https://github.com/hcengineering/platform/issues/4411)) +* UBERF-5012: · Remove extra key (avoid reloading after notifications deleting) ([#4399](https://github.com/hcengineering/platform/issues/4399)) · Use flat message view if doc has only one notification ([#4410](https://github.com/hcengineering/platform/issues/4410)) +* UBERF-5023: · Make flat view default ([#4409](https://github.com/hcengineering/platform/issues/4409)) ## [0.6.181a] - 2024-01-20 -* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) -* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) +* 🚀 FEATURES: · *(test)* Updated flaky tests ([#4393](https://github.com/hcengineering/platform/issues/4393)) +* QFIX: · Remove unused deps ([#4394](https://github.com/hcengineering/platform/issues/4394)) ## [0.6.181] - 2024-01-19 -* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) -* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) -* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) +* EZQMS-457: · Added optional ModeSelector to SpecialView ([#4381](https://github.com/hcengineering/platform/issues/4381)) +* EZQMS-529: · Added support for primary/positive/negative kinds for CheckBox and RadioButton ([#4384](https://github.com/hcengineering/platform/issues/4384)) · Added support for `grow` and new `align` display options in `Table` ([#4389](https://github.com/hcengineering/platform/issues/4389)) +* UBERF-5000: · Handle derived tx for security context update ([#4391](https://github.com/hcengineering/platform/issues/4391)) ## [0.6.180] - 2024-01-18 -* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) -* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) +* QFIX: · Return ActivityMessageHeader, since it is used by github ([#4377](https://github.com/hcengineering/platform/issues/4377)) +* UBERF-4361: · Update inbox ui ([#4376](https://github.com/hcengineering/platform/issues/4376)) ## [0.6.179] - 2024-01-17 -* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) -* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) -* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) -* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) +* 🚀 FEATURES: · *(tests)* Updated flaky tests ([#4367](https://github.com/hcengineering/platform/issues/4367)) +* EZQMS-470: · Add server side tiptap extension for node uuid ([#4358](https://github.com/hcengineering/platform/issues/4358)) +* UBER-1188: · Fix exception during login/logout ([#4364](https://github.com/hcengineering/platform/issues/4364)) +* UBERF-4957: · Fix status colors ([#4369](https://github.com/hcengineering/platform/issues/4369)) ## [0.6.178] - 2024-01-16 -* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) -* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) -* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) -* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) -* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) -* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) -* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) +* 🚀 FEATURES: · *(tests)* Update Merge contacts test ([#4339](https://github.com/hcengineering/platform/issues/4339)) +* 🐛 BUG FIXES: · *(tests)* Disabled failed tests ([#4331](https://github.com/hcengineering/platform/issues/4331)) +* QFIX: · Change activity onhover ([#4336](https://github.com/hcengineering/platform/issues/4336)) +* UBER-1187: · AnyType field support ([#4343](https://github.com/hcengineering/platform/issues/4343)) +* UBERF-4360: · Rewrite chat ([#4265](https://github.com/hcengineering/platform/issues/4265)) +* UBERF-4868: · Disable draft saving for comment editing ([#4332](https://github.com/hcengineering/platform/issues/4332)) +* UBERF-4928: · Indexing fixes ([#4357](https://github.com/hcengineering/platform/issues/4357)) ## [0.6.177] - 2024-01-08 -* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) -* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) +* UBER-1185: · Fix TT migration issues ([#4320](https://github.com/hcengineering/platform/issues/4320)) +* UBERF-4870: · Fixed attribute creation ([#4325](https://github.com/hcengineering/platform/issues/4325)) ## [0.6.175] - 2024-01-05 -* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) +* 🚀 FEATURES: · *(tests)* Updated tests ([#4296](https://github.com/hcengineering/platform/issues/4296)) ## [0.6.174a] - 2023-12-29 -* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) +* UBERF-4799: · Fix migration tasktype doubling ([#4289](https://github.com/hcengineering/platform/issues/4289)) ## [0.6.173] - 2023-12-28 -* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) -* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) -* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) -* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) -* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) -* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) -* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) -* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) -* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) -* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) -* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) -* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) -* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) -* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) +* 🚀 FEATURES: · *(tests)* TESTS-15 done Create a new Company test ([#4242](https://github.com/hcengineering/platform/issues/4242)) · *(tests)* Updated flaky tests ([#4244](https://github.com/hcengineering/platform/issues/4244)) · *(tests)* TESTS-21 done Match to vacancy test ([#4268](https://github.com/hcengineering/platform/issues/4268)) +* EZQMS-430: · Update change document owner popup ([#4278](https://github.com/hcengineering/platform/issues/4278)) +* TESTS-16: · Feat(tests): done Edit a Company test ([#4243](https://github.com/hcengineering/platform/issues/4243)) +* TESTS-17: · Feat(tests): done Delete a Company test ([#4252](https://github.com/hcengineering/platform/issues/4252)) +* TESTS-20: · Feat(tests): done Archive a Vacancy test ([#4254](https://github.com/hcengineering/platform/issues/4254)) +* TESTS-23: · Feat(tests): done Export vacancies tests ([#4253](https://github.com/hcengineering/platform/issues/4253)) +* TESTS-51: · Feat(tests): done Delete a component test ([#4234](https://github.com/hcengineering/platform/issues/4234)) +* TSK-1668: · Side changes from Surveys ([#4271](https://github.com/hcengineering/platform/issues/4271)) +* UBER-1178: · Rework indexing fields ([#4261](https://github.com/hcengineering/platform/issues/4261)) +* UBERF-4716: · Activity info message ([#4241](https://github.com/hcengineering/platform/issues/4241)) +* UBERF-4729: · Fix front service ([#4260](https://github.com/hcengineering/platform/issues/4260)) +* UBERF-4738: · Fix attachments preview ([#4259](https://github.com/hcengineering/platform/issues/4259)) +* EZQMS-449: · Wrap initial collaborator content loading with try-catch ([#4256](https://github.com/hcengineering/platform/issues/4256)) +* EZQMS-452: · Fix issue presenter ([#4263](https://github.com/hcengineering/platform/issues/4263)) ## [0.6.172] - 2023-12-21 -* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) -* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) -* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) -* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) -* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) +* 🚀 FEATURES: · *(tests)* TESTS-48 done Create duplicate issues test ([#4225](https://github.com/hcengineering/platform/issues/4225)) · *(tests)* TESTS-40 done Delete an issue test ([#4233](https://github.com/hcengineering/platform/issues/4233)) +* TESTS-50: · Feat(tests): done Edit a component test ([#4232](https://github.com/hcengineering/platform/issues/4232)) +* UBERF-4692: · Remove activity messages on doc remove ([#4227](https://github.com/hcengineering/platform/issues/4227)) +* UBERF-4707: · Fix activity messages updating ([#4238](https://github.com/hcengineering/platform/issues/4238)) +* QFIX: · Update DropdownLabels for showing dropdown icon ([#4230](https://github.com/hcengineering/platform/issues/4230)) ## [0.6.171] - 2023-12-20 -* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) -* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) -* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) -* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) -* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) -* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) -* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) -* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) -* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) -* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) -* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) -* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) -* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) -* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) -* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) -* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) -* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) +* 🚀 FEATURES: · *(tests)* TESTS-54 done Edit a Milestone test ([#4175](https://github.com/hcengineering/platform/issues/4175)) · *(tests)* TESTS-55 done Delete a Milestone test ([#4184](https://github.com/hcengineering/platform/issues/4184)) · *(tests)* Updated tests ([#4185](https://github.com/hcengineering/platform/issues/4185)) · *(tests)* Updated sanity-ws dump and tests ([#4202](https://github.com/hcengineering/platform/issues/4202)) · *(tests)* TESTS-45 done Move to project test ([#4203](https://github.com/hcengineering/platform/issues/4203)) · *(tests)* Updated tests ([#4209](https://github.com/hcengineering/platform/issues/4209)) · *(tests)* Updated Edit a sub-issue test ([#4210](https://github.com/hcengineering/platform/issues/4210)) · *(tests)* Updated move to project tests ([#4214](https://github.com/hcengineering/platform/issues/4214)) · *(tests)* TESTS-81 done Comment stored test ([#4216](https://github.com/hcengineering/platform/issues/4216)) · *(tests)* Updated flaky tests ([#4218](https://github.com/hcengineering/platform/issues/4218)) · *(tests)* TESTS-106 ([#4217](https://github.com/hcengineering/platform/issues/4217)) · *(tests)* TESTS-41 done Delete a sub-issue test ([#4223](https://github.com/hcengineering/platform/issues/4223)) · *(tests)* Updated tests ([#4224](https://github.com/hcengineering/platform/issues/4224)) +* EZQMS-440: · Fix quality events ([#4183](https://github.com/hcengineering/platform/issues/4183)) +* TESTS-42: · Feat(tests): done Edit Sub-Issue test ([#4191](https://github.com/hcengineering/platform/issues/4191)) +* TESTS-44: · Feat(tests): the Set parent issue test ([#4158](https://github.com/hcengineering/platform/issues/4158)) +* TESTS-46: · Feat(tests): done New related issue test ([#4192](https://github.com/hcengineering/platform/issues/4192)) +* TESTS-59: · Feat(tests): done Create an Issue from template test ([#4212](https://github.com/hcengineering/platform/issues/4212)) +* TESTS-98: · Feat(tests): done Created by filter test ([#4161](https://github.com/hcengineering/platform/issues/4161)) +* TESTS-99: · Feat(tests): done Component filter test ([#4162](https://github.com/hcengineering/platform/issues/4162)) +* TSK-1668: · Survey plugin ([#4174](https://github.com/hcengineering/platform/issues/4174)) +* UBER-1179: · Fix comments saving ([#4205](https://github.com/hcengineering/platform/issues/4205)) +* UBER-1182: · Fix github task types support ([#4215](https://github.com/hcengineering/platform/issues/4215)) · Fix task type categories ([#4222](https://github.com/hcengineering/platform/issues/4222)) +* UBERF-4248: · Task type ([#4042](https://github.com/hcengineering/platform/issues/4042)) +* UBERF-4432: · Better notifications for Chunter ([#4165](https://github.com/hcengineering/platform/issues/4165)) +* UBERF-4610: · Fix checkbox behaviour ([#4173](https://github.com/hcengineering/platform/issues/4173)) +* UBERF-4620: · Fix show less triangle ([#4182](https://github.com/hcengineering/platform/issues/4182)) +* UBERF-4632: · Refactor activity classes structure ([#4190](https://github.com/hcengineering/platform/issues/4190)) +* UBERF-4649: · Fix query projection/cache issue ([#4200](https://github.com/hcengineering/platform/issues/4200)) ## [0.6.170] - 2023-12-07 -* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) -* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) -* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) -* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) +* TESTS-26: · Feat(tests): done Archive Project tests ([#4157](https://github.com/hcengineering/platform/issues/4157)) +* TESTS-97: · Feat(tests): done the Priority filter test ([#4156](https://github.com/hcengineering/platform/issues/4156)) +* UBERF-4451: · Fixed how resolved default location is applied on initial routing ([#4159](https://github.com/hcengineering/platform/issues/4159)) +* UBERF-4526: · Elastic bulk error on re-indexing ([#4155](https://github.com/hcengineering/platform/issues/4155)) ## [0.6.169] - 2023-12-06 -* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) -* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) -* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) -* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) +* 🚀 FEATURES: · *(tests)* Updated sanity-ws dump ([#4149](https://github.com/hcengineering/platform/issues/4149)) · *(tests)* TESTS-95 done Status filter test ([#4150](https://github.com/hcengineering/platform/issues/4150)) +* TESTS-25: · Feat(tests): done Edit project tests ([#4138](https://github.com/hcengineering/platform/issues/4138)) +* UBERF-4477: · Fixed positioning of `AddSavedView` popup ([#4148](https://github.com/hcengineering/platform/issues/4148)) +* UBERF-4560: · Filter out spaces that are archived for kanban ([#4147](https://github.com/hcengineering/platform/issues/4147)) ## [0.6.168] - 2023-12-05 -* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) +* UBERF-4555: · Fix elastic backup/restore ([#4144](https://github.com/hcengineering/platform/issues/4144)) ## [0.6.167] - 2023-12-05 -* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) -* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) -* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) -* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) +* 🚀 FEATURES: · *(tests)* Updated issues.spec.ts test ([#4136](https://github.com/hcengineering/platform/issues/4136)) +* TESTS-24: · Feat(tests): done Create project test ([#4126](https://github.com/hcengineering/platform/issues/4126)) +* UBER-1144: · Fixed estimation time representation used when creating issue and issue template ([#4139](https://github.com/hcengineering/platform/issues/4139)) +* UBERF-4470: · Make SetLabels action available on a single focused issue ([#4140](https://github.com/hcengineering/platform/issues/4140)) ## [0.6.166] - 2023-12-04 -* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) -* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) +* EZQMS-394: · Update diff viewer lint button colors ([#4115](https://github.com/hcengineering/platform/issues/4115)) +* UBERF-4527: · Extra logging for client ([#4133](https://github.com/hcengineering/platform/issues/4133)) ## [0.6.165] - 2023-12-02 -* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) -* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) -* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) +* 🚀 FEATURES: · *(tests)* TESTS-58 dont test delete template ([#4125](https://github.com/hcengineering/platform/issues/4125)) +* UBER-1086: · Fixed Elastic scroll contexts overflow issue, added tests for Elastic ([#4124](https://github.com/hcengineering/platform/issues/4124)) +* UBERF-4514: · Option for order of activity, pinned first in CommentPopup ([#4122](https://github.com/hcengineering/platform/issues/4122)) ## [0.6.164] - 2023-12-01 -* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) -* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) -* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) -* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) -* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) +* 🚀 FEATURES: · *(tests)* Done TESTS-93 ([#4110](https://github.com/hcengineering/platform/issues/4110)) +* EZQMS-403: · Displatch value update from EditBox ([#4114](https://github.com/hcengineering/platform/issues/4114)) +* EZQMS-407: · Add Panel post utils slot ([#4116](https://github.com/hcengineering/platform/issues/4116)) +* UBER-1083: · Use hours and minutes to present less than a day durations ([#4111](https://github.com/hcengineering/platform/issues/4111)) +* UBERF-4493: · Mentions. When there is a lot of Applicants it's really difficult to mention employee ([#4119](https://github.com/hcengineering/platform/issues/4119)) ## [0.6.163] - 2023-11-29 -* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) -* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) -* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) -* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) -* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) +* TESTS: · Feat(tests): updated flaky tests ([#4106](https://github.com/hcengineering/platform/issues/4106)) +* UBER-1006: · Support Ref for Vacancies ([#4104](https://github.com/hcengineering/platform/issues/4104)) +* UBERF-4405: · Empty Vacancies' members ([#4105](https://github.com/hcengineering/platform/issues/4105)) +* UBERF-4478: · Set modifiedOn on server for collections tx ([#4103](https://github.com/hcengineering/platform/issues/4103)) +* UBERF-4486: · Fix mention and spotlight categories ([#4108](https://github.com/hcengineering/platform/issues/4108)) ## [0.6.162] - 2023-11-29 -* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) -* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) -* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) -* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) -* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) -* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) +* 🚀 FEATURES: · *(tests)* Updated create-vacancy test ([#4091](https://github.com/hcengineering/platform/issues/4091)) +* EZQMS-398: · Fix StringDiffViewer ([#4089](https://github.com/hcengineering/platform/issues/4089)) +* TESTS-92: · Feat(tests): done Tracker filters tests - Modified date ([#4094](https://github.com/hcengineering/platform/issues/4094)) +* UBERF-4238: · Fix calendar utils ([#4092](https://github.com/hcengineering/platform/issues/4092)) +* UBERF-4428: · Add option to disable indexing for a class ([#4090](https://github.com/hcengineering/platform/issues/4090)) +* UBERF-4446: · Move search from text editor ([#4093](https://github.com/hcengineering/platform/issues/4093)) ## [0.6.161] - 2023-11-28 -* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) -* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) -* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) -* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) -* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) -* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) -* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) -* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) +* EZQMS-398: · Update CollaborationDiffViewer ([#4075](https://github.com/hcengineering/platform/issues/4075)) · Add StringDiffViewer ([#4085](https://github.com/hcengineering/platform/issues/4085)) +* QFIX: · Fix asterisk usage in forms ([#4080](https://github.com/hcengineering/platform/issues/4080)) +* TESTS-56: · Feat(tests): done Create a Template test ([#4063](https://github.com/hcengineering/platform/issues/4063)) +* TESTS-57: · Feat(tests): done Edit a Template test ([#4079](https://github.com/hcengineering/platform/issues/4079)) +* TESTS-88: · Feat(tests): done Add comment from several users test ([#4054](https://github.com/hcengineering/platform/issues/4054)) +* UBERF-4165: · Add search to actions popup ([#4057](https://github.com/hcengineering/platform/issues/4057)) +* UBERF-4413: · Kanban with huge data sets ([#4076](https://github.com/hcengineering/platform/issues/4076)) +* UBERF-4420: · Bump fieldStateId ([#4071](https://github.com/hcengineering/platform/issues/4071)) ## [0.6.160] - 2023-11-27 -* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) -* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) +* EZQMS-393: · Add CollaboratorEditor prop to hide popups ([#4051](https://github.com/hcengineering/platform/issues/4051)) +* TESTS-89: · Feat(tests): working on First user change assignee, second user should see assigned issue test ([#4046](https://github.com/hcengineering/platform/issues/4046)) ## [0.6.159] - 2023-11-24 -* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) -* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) -* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) +* UBER-945: · Pinning for comments ([#4050](https://github.com/hcengineering/platform/issues/4050)) +* UBERF-4384: · Update space from attributes ([#4049](https://github.com/hcengineering/platform/issues/4049)) +* UBERF-4388: · Few performance related fixes ([#4053](https://github.com/hcengineering/platform/issues/4053)) ## [0.6.158] - 2023-11-23 -* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) -* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) -* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) -* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) -* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) -* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) -* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) +* EZQMS-368: · Fix exit text editor node uuid extension node ([#4044](https://github.com/hcengineering/platform/issues/4044)) +* TESTS-85: · Feat(tests): added issues.spec.ts test ([#4025](https://github.com/hcengineering/platform/issues/4025)) +* TESTS-87: · Feat(tests): done Issues status can be changed by another users test ([#4036](https://github.com/hcengineering/platform/issues/4036)) +* UBER-1167: · Revert All/Active/Backlog for issues ([#4047](https://github.com/hcengineering/platform/issues/4047)) +* UBER-636: · Fix from&to for NewMessage ([#4043](https://github.com/hcengineering/platform/issues/4043)) +* UBERF-4302: · Added footer to Calendar ([#4033](https://github.com/hcengineering/platform/issues/4033)) +* UBERF-4325: · Boost titles ([#4023](https://github.com/hcengineering/platform/issues/4023)) ## [0.6.157] - 2023-11-21 -* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) -* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) -* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) -* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) -* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) -* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) -* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) +* EZQMS-342: · Add text editor configurable active highlighted node ([#4019](https://github.com/hcengineering/platform/issues/4019)) +* TESTS-71: · Feat(tests): updated allure parent suite ([#4010](https://github.com/hcengineering/platform/issues/4010)) +* UBER-1074: · Svelte 4 ([#4014](https://github.com/hcengineering/platform/issues/4014)) +* UBER-911: · Mentions without second input and tabs ([#3798](https://github.com/hcengineering/platform/issues/3798)) +* UBERF-4229: · Fix createAttachments runtime error ([#3960](https://github.com/hcengineering/platform/issues/3960)) +* UBERF-4324: · While indexing is still in progress we see undefined ([#4017](https://github.com/hcengineering/platform/issues/4017)) +* UBERF-4348: · Mentions. Fix render props types and component props types ([#4022](https://github.com/hcengineering/platform/issues/4022)) ## [0.6.156] - 2023-11-15 -* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) -* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) -* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) -* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) -* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) -* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) +* 🚀 FEATURES: · *(tests)* Updated tracker.loading.spec.ts test ([#3989](https://github.com/hcengineering/platform/issues/3989)) +* QFIX: · Swapping actions between buttons ([#3990](https://github.com/hcengineering/platform/issues/3990)) +* UBER-1164: · Clickable panel on the desktop app ([#3988](https://github.com/hcengineering/platform/issues/3988)) +* UBERF-4216: · Fix query for cases with mixins ([#3981](https://github.com/hcengineering/platform/issues/3981)) +* UBERF-4287: · Fix Indexer peak memory usage ([#3993](https://github.com/hcengineering/platform/issues/3993)) +* UBERF-4289: · Allow to configure user agent ([#3995](https://github.com/hcengineering/platform/issues/3995)) ## [0.6.155a] - 2023-11-14 -* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) -* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) +* 🚀 FEATURES: · *(ci)* Updated Deploy report to Github Pages flow step ([#3984](https://github.com/hcengineering/platform/issues/3984)) +* UBERF-4267: · Fix mergeQuery, provide a test case for it ([#3985](https://github.com/hcengineering/platform/issues/3985)) ## [0.6.155] - 2023-11-14 -* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) -* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) -* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) -* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) +* 🚀 FEATURES: · *(tests)* Added allure report for tests ([#3944](https://github.com/hcengineering/platform/issues/3944)) +* UBERF-4161: · Few inbox fixes ([#3976](https://github.com/hcengineering/platform/issues/3976)) +* UBERF-4205: · Updated Panel header layout, custom aside ([#3974](https://github.com/hcengineering/platform/issues/3974)) +* UBERF-4263: · Restore Back and Close button, fixed selectedAside ([#3983](https://github.com/hcengineering/platform/issues/3983)) ## [0.6.154a] - 2023-11-10 -* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) +* UBER-942: · Few skill fixes ([#3971](https://github.com/hcengineering/platform/issues/3971)) ## [0.6.154] - 2023-11-10 -* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) -* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) -* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) +* EZQMS-360: · Platform changes for document comments highlight sync ([#3965](https://github.com/hcengineering/platform/issues/3965)) +* UBERF-4136: · Fix global actions ([#3961](https://github.com/hcengineering/platform/issues/3961)) +* UBERF-4195: · Fix query after applying viewOptions ([#3942](https://github.com/hcengineering/platform/issues/3942)) ## [0.6.153] - 2023-11-08 -* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) +* UBERF-4136: · New issues from command palette ([#3956](https://github.com/hcengineering/platform/issues/3956)) ## [0.6.152] - 2023-11-07 -* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) -* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) -* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) -* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) -* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) +* UBER-1127: · Updated status bar layout ([#3940](https://github.com/hcengineering/platform/issues/3940)) +* UBER-1141: · Fixed Comments popup layout ([#3946](https://github.com/hcengineering/platform/issues/3946)) +* UBER-1159: · Fixed horizontal scrolling in Scroller ([#3945](https://github.com/hcengineering/platform/issues/3945)) +* UBER-1161: · Remove async to correctly handle query change ([#3951](https://github.com/hcengineering/platform/issues/3951)) +* UBER-942: · Rework skill optimization ([#3941](https://github.com/hcengineering/platform/issues/3941)) ## [0.6.151] - 2023-11-03 -* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) -* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) -* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) +* EZQMS-350: · Fix reactions in threads ([#3935](https://github.com/hcengineering/platform/issues/3935)) +* UBER-1143: · Additional skill parsing, increase timeout for filter ([#3933](https://github.com/hcengineering/platform/issues/3933)) +* UBER-1157: · Some dependant fixes ([#3936](https://github.com/hcengineering/platform/issues/3936)) ## [0.6.150] - 2023-11-01 -* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) -* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) -* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) -* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) -* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) -* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) -* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) -* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) -* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) +* 🚀 FEATURES: · *(tests)* TESTS-39 done edit issue test ([#3918](https://github.com/hcengineering/platform/issues/3918)) +* QMS: · Fix collaborator editor loading ([#3920](https://github.com/hcengineering/platform/issues/3920)) +* UBER-1116: · Saving sidebar changes ([#3919](https://github.com/hcengineering/platform/issues/3919)) +* UBER-1137: · Prevent changes of spaces while kanban drag-and-drop ([#3928](https://github.com/hcengineering/platform/issues/3928)) +* UBER-1143: · Setting for skill import, redirect to talents from skillsView ([#3925](https://github.com/hcengineering/platform/issues/3925)) +* UBER-1149: · Events in team planing fixes ([#3922](https://github.com/hcengineering/platform/issues/3922)) +* UBERF-18: · Add reactions for comments ([#3899](https://github.com/hcengineering/platform/issues/3899)) +* UBERF-4132: · Fix unexpected delete of documents in query ([#3921](https://github.com/hcengineering/platform/issues/3921)) +* EZQMS-334: · More configurations for radio button and radio group ([#3917](https://github.com/hcengineering/platform/issues/3917)) ## [0.6.149] - 2023-10-30 -* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) -* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) -* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) -* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) -* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) -* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) -* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) +* 🚀 FEATURES: · *(tests)* TESTS-43 added the Create an issue with all params test ([#3905](https://github.com/hcengineering/platform/issues/3905)) +* 🐛 BUG FIXES: · *(tests)* Updated the today selector for calendar ([#3908](https://github.com/hcengineering/platform/issues/3908)) · *(tests)* Updated the today selector for issues page ([#3911](https://github.com/hcengineering/platform/issues/3911)) +* EZQMS-327: · Move inline comments to platform popups ([#3909](https://github.com/hcengineering/platform/issues/3909)) +* EZQMS-333: · Customizable RadioButton label ([#3900](https://github.com/hcengineering/platform/issues/3900)) +* TESTS-18: · Feat(tests): added edit vacancy test ([#3901](https://github.com/hcengineering/platform/issues/3901)) +* UBER-1101: · Updated Separator (Float mode), fixed Scroller visibility ([#3902](https://github.com/hcengineering/platform/issues/3902)) +* UBER-1146: · Fix scrolling in emojis popup ([#3912](https://github.com/hcengineering/platform/issues/3912)) ## [0.6.148] - 2023-10-26 -* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) -* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) -* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) +* UBER-1027: · Don't update issue space in kanban view ([#3895](https://github.com/hcengineering/platform/issues/3895)) +* UBER-634: · Focus on SelectPopup ([#3897](https://github.com/hcengineering/platform/issues/3897)) +* UBER-898: · Assignee rules and general rules fix ([#3894](https://github.com/hcengineering/platform/issues/3894)) ## [0.6.147] - 2023-10-26 -* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) -* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) -* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) -* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) -* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) -* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) -* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) -* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) -* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) -* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) -* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) -* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) -* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) +* 🚀 FEATURES: · *(tests)* Added Change & Save all States test ([#3863](https://github.com/hcengineering/platform/issues/3863)) · *(tests)* TESTS-10 added the Delete the Talent test ([#3883](https://github.com/hcengineering/platform/issues/3883)) +* EZQMS-306: · Add extensions for chunter message version ([#3882](https://github.com/hcengineering/platform/issues/3882)) +* TESTS-22: · Feat(tests): done test Merge Contacts ([#3891](https://github.com/hcengineering/platform/issues/3891)) +* TESTS-9: · Feat(tests): added edit Talent test ([#3871](https://github.com/hcengineering/platform/issues/3871)) +* UBER-1088: · ListItem fix. ([#3872](https://github.com/hcengineering/platform/issues/3872)) +* UBER-1097: · Remove second status editor amd fix done state selection in new Applicant popup ([#3869](https://github.com/hcengineering/platform/issues/3869)) +* UBER-1099,-1100: · Milestone fixes. ([#3873](https://github.com/hcengineering/platform/issues/3873)) +* UBER-1106,-1108: · Update navigator and button layout ([#3870](https://github.com/hcengineering/platform/issues/3870)) +* UBER-1128: · Fix to many requests from query ([#3888](https://github.com/hcengineering/platform/issues/3888)) +* UBER-1129: · Fix list support attached documents properly ([#3889](https://github.com/hcengineering/platform/issues/3889)) +* UBER-937: · Extensibility changes ([#3874](https://github.com/hcengineering/platform/issues/3874)) +* UBER-942: · Fix-skills script ([#3876](https://github.com/hcengineering/platform/issues/3876)) +* EZQMS-331: · Fix disabled button icon style ([#3881](https://github.com/hcengineering/platform/issues/3881)) ## [0.6.146] - 2023-10-23 -* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) +* 🚀 FEATURES: · *(tests)* Added delete application test ([#3859](https://github.com/hcengineering/platform/issues/3859)) ## [0.6.145] - 2023-10-19 -* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) -* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) -* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) -* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) -* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) -* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) -* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) +* 🚀 FEATURES: · *(tests)* Added page-object model example. Refactor login test to page-object model. Added a new test channel.spec.ts ([#3847](https://github.com/hcengineering/platform/issues/3847)) · *(recruiting)* Working on update recruit tests and adding Edit Application test ([#3851](https://github.com/hcengineering/platform/issues/3851)) +* EZQMS-278: · Update comments popups ([#3849](https://github.com/hcengineering/platform/issues/3849)) · Adjust view inline comments UI ([#3855](https://github.com/hcengineering/platform/issues/3855)) +* EZQMS-291: · Fix documents node selections issues ([#3845](https://github.com/hcengineering/platform/issues/3845)) +* UBER-1085: · Improve upgrade tool ([#3852](https://github.com/hcengineering/platform/issues/3852)) +* UBER-1091: · Fix attach button ([#3854](https://github.com/hcengineering/platform/issues/3854)) +* UBER-921: · Improve full text search ([#3848](https://github.com/hcengineering/platform/issues/3848)) +* UBERF-31: · Fix comment edit ([#3853](https://github.com/hcengineering/platform/issues/3853)) ## [0.6.144] - 2023-10-16 -* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) -* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) +* TEXTEDITOR: · Refactor attachments ([#3833](https://github.com/hcengineering/platform/issues/3833)) +* UBER-1052: · Fix remainings ([#3844](https://github.com/hcengineering/platform/issues/3844)) ## [0.6.142] - 2023-10-13 -* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) -* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) +* UBER-1039: · Codeblock style fixes. ([#3829](https://github.com/hcengineering/platform/issues/3829)) +* UBERF-3997: · Fix Tab navigation in text editors ([#3832](https://github.com/hcengineering/platform/issues/3832)) ## [0.6.141] - 2023-10-11 -* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) -* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) +* UBER-1038: · Fix flicking during issue creation ([#3826](https://github.com/hcengineering/platform/issues/3826)) +* UBER-953: · Fix related issues ([#3821](https://github.com/hcengineering/platform/issues/3821)) ## [0.6.140] - 2023-10-10 -* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) -* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) +* QMS: · Update inline comments extensions ([#3814](https://github.com/hcengineering/platform/issues/3814)) +* UBER-984: · UI fixes, Panel auto resize ([#3818](https://github.com/hcengineering/platform/issues/3818)) ## [0.6.139a] - 2023-10-09 -* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) +* UBER-955: · Added Separator component ([#3804](https://github.com/hcengineering/platform/issues/3804)) ## [0.6.138] - 2023-10-06 -* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) -* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) +* QFIX: · Child info could be empty ([#3785](https://github.com/hcengineering/platform/issues/3785)) +* UBER-987: · Fix emojis in the middle of something (URLs) ([#3790](https://github.com/hcengineering/platform/issues/3790)) ## [0.6.137] - 2023-10-03 -* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) -* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) -* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) +* EZQMS-279: · Remove .ProseMirror global css ([#3772](https://github.com/hcengineering/platform/issues/3772)) +* UBER-974: · Fix saved views and mode in filters ([#3780](https://github.com/hcengineering/platform/issues/3780)) +* UBER-977: · A remaining time ([#3783](https://github.com/hcengineering/platform/issues/3783)) ## [0.6.136] - 2023-10-02 -* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) -* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) +* UBER-963: · Related issues ([#3773](https://github.com/hcengineering/platform/issues/3773)) +* UBERF-17: · Missing smiles auto-conversion in rich texts :) ([#3771](https://github.com/hcengineering/platform/issues/3771)) ## [0.6.135] - 2023-10-01 -* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) -* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) -* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) +* EZQMS-266: · Commenting on document ([#3759](https://github.com/hcengineering/platform/issues/3759)) +* UBER-920: · Fixed drag and drop in Calendar ([#3767](https://github.com/hcengineering/platform/issues/3767)) +* UBER-939: · Speedup table/kanban ([#3764](https://github.com/hcengineering/platform/issues/3764)) ## [0.6.134] - 2023-09-29 -* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) -* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) -* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) +* CALENDAR: · Resize and move event ([#3750](https://github.com/hcengineering/platform/issues/3750)) +* UBER-845: · Add NotificationPresenter to send rich text notifications ([#3729](https://github.com/hcengineering/platform/issues/3729)) +* UBER-924: · Fix file upload progress ([#3757](https://github.com/hcengineering/platform/issues/3757)) ## [0.6.133] - 2023-09-27 -* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) -* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) -* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) -* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) +* UBER-902: · Fix transactions ([#3748](https://github.com/hcengineering/platform/issues/3748)) +* UBER-914: · Map to mixin after findAll ([#3745](https://github.com/hcengineering/platform/issues/3745)) +* UBER-916: · Navigation from issue to mentioned issue break description ([#3746](https://github.com/hcengineering/platform/issues/3746)) +* UBER-923: · Fix milestone category selector ([#3747](https://github.com/hcengineering/platform/issues/3747)) ## [0.6.132] - 2023-09-26 -* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) -* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) +* QFIX: · Migration ([#3734](https://github.com/hcengineering/platform/issues/3734)) +* UBER-888: · Fixed dragging of the WorkItem ([#3735](https://github.com/hcengineering/platform/issues/3735)) ## [0.6.131] - 2023-09-22 -* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) -* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) -* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) +* UBER-486: · Updated people avatars. ([#3720](https://github.com/hcengineering/platform/issues/3720)) · Replaced avatar colors ([#3724](https://github.com/hcengineering/platform/issues/3724)) +* UBER-799: · Allow extensions to tracker for github ([#3727](https://github.com/hcengineering/platform/issues/3727)) +* UBER-888: · Fixed dragging of the WorkItem ([#3730](https://github.com/hcengineering/platform/issues/3730)) ## [0.6.130] - 2023-09-20 -* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) +* UBER-881: · Fix labels list view numbers ([#3721](https://github.com/hcengineering/platform/issues/3721)) ## [0.6.129] - 2023-09-20 -* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) +* UBER-885: · Value filter fix ([#3719](https://github.com/hcengineering/platform/issues/3719)) ## [0.6.128] - 2023-09-19 -* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) +* UBER-885: · Fix Object filter ([#3716](https://github.com/hcengineering/platform/issues/3716)) ## [0.6.127] - 2023-09-19 -* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) +* UBER-882: · Fixed popup ([#3713](https://github.com/hcengineering/platform/issues/3713)) ## [0.6.126] - 2023-09-18 -* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) -* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) -* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) -* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) -* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) -* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) -* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) -* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) -* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) -* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) -* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) -* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) -* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) +* UBER-784: · Updated WorkItemPresenter ([#3710](https://github.com/hcengineering/platform/issues/3710)) +* UBER-796: · Fixed AttachmentActions ([#3709](https://github.com/hcengineering/platform/issues/3709)) +* UBER-834: · Improve list speed ([#3692](https://github.com/hcengineering/platform/issues/3692)) +* UBER-839: · Request the category if it's not in lookup ([#3679](https://github.com/hcengineering/platform/issues/3679)) +* UBER-841: · Allowed to position work item to half hour ([#3707](https://github.com/hcengineering/platform/issues/3707)) +* UBER-851: · Fix titles in ListView ([#3678](https://github.com/hcengineering/platform/issues/3678)) +* UBER-852: · Owner should only see a list of spaces ([#3677](https://github.com/hcengineering/platform/issues/3677)) +* UBER-854: · More proper upgrade notification ([#3694](https://github.com/hcengineering/platform/issues/3694)) +* UBER-863: · Fix employee filter ([#3682](https://github.com/hcengineering/platform/issues/3682)) +* UBER-869: · Fixed mentions in Activity. Fixed messages in Inbox. ([#3695](https://github.com/hcengineering/platform/issues/3695)) +* UBER-871: · Allow to hide/show archived and done in vacancies list ([#3701](https://github.com/hcengineering/platform/issues/3701)) +* UBER-872: · StyleTextEditor: No update when change text in another text ([#3698](https://github.com/hcengineering/platform/issues/3698)) +* UBERF-81: · Replacing the label ([#3708](https://github.com/hcengineering/platform/issues/3708)) ## [0.6.125] - 2023-09-11 -* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) +* UBER-828: · Fix slow value filter ([#3676](https://github.com/hcengineering/platform/issues/3676)) ## [0.6.124] - 2023-09-08 -* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) -* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) -* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) -* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) -* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) -* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) -* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) -* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) -* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) -* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) +* 🐛 BUG FIXES: · Trim cookie string before extracting values ([#3652](https://github.com/hcengineering/platform/issues/3652)) +* ACTIVITY: · Remove inline from presenters. DoneStatesPopup fix. ([#3664](https://github.com/hcengineering/platform/issues/3664)) +* UBER-564: · Add sound notification and settings ([#3655](https://github.com/hcengineering/platform/issues/3655)) +* UBER-674: · The calendar starts from the current time. Calendar fixes. ([#3671](https://github.com/hcengineering/platform/issues/3671)) +* UBER-795: · Updated layout of pop-ups. There is always a Back in the Panel. ([#3644](https://github.com/hcengineering/platform/issues/3644)) · Replacing the Panel with a Dialog, fix circle button in Kanban. ([#3659](https://github.com/hcengineering/platform/issues/3659)) +* UBER-807: · Multiple github repositories fixes ([#3646](https://github.com/hcengineering/platform/issues/3646)) · Allow to customize create issue dialog ([#3669](https://github.com/hcengineering/platform/issues/3669)) +* UBER-832: · Fixed DatePresenter ([#3653](https://github.com/hcengineering/platform/issues/3653)) +* UBER-838: · Signout button for inactive accounts ([#3662](https://github.com/hcengineering/platform/issues/3662)) +* UBERF-55: · Change editor toolbar behavior and update icons ([#3645](https://github.com/hcengineering/platform/issues/3645)) +* UBERF-60: · Update styles and presenters. ([#3651](https://github.com/hcengineering/platform/issues/3651)) · Updated Rich editor and Activity styles. ([#3661](https://github.com/hcengineering/platform/issues/3661)) · Updated inline presenters. ([#3663](https://github.com/hcengineering/platform/issues/3663)) ## [0.6.123] - 2023-08-30 -* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) -* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) +* UBER-675: · Updated layout of Radio and Circle button ([#3638](https://github.com/hcengineering/platform/issues/3638)) +* UBER-816: · Fix mentions ([#3641](https://github.com/hcengineering/platform/issues/3641)) ## [0.6.122] - 2023-08-25 -* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) -* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) -* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) -* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) -* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) -* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) -* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) +* EZQMS-106: · Add elastic search by refs support ([#3629](https://github.com/hcengineering/platform/issues/3629)) +* UBER-675: · Updated pop-ups and components layout ([#3631](https://github.com/hcengineering/platform/issues/3631)) +* UBER-770: · Add custom enum and ref attributes for grouping ([#3622](https://github.com/hcengineering/platform/issues/3622)) +* UBER-797: · Fix popup menu runtime error ([#3627](https://github.com/hcengineering/platform/issues/3627)) +* UBER-802: · Support underline formatting ([#3636](https://github.com/hcengineering/platform/issues/3636)) +* UBER-803: · Fix slow filter ([#3634](https://github.com/hcengineering/platform/issues/3634)) +* UBER-805: · Remove location from grouping ([#3635](https://github.com/hcengineering/platform/issues/3635)) ## [0.6.121] - 2023-08-24 -* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) -* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) -* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) +* UBER-667: · UI fixes, displaying All day, time editor. ([#3619](https://github.com/hcengineering/platform/issues/3619)) +* UBER-762: · Fix editor popup menu behavior ([#3617](https://github.com/hcengineering/platform/issues/3617)) +* UBER-772: · Require having employee mixin to allow Staff mixin ([#3618](https://github.com/hcengineering/platform/issues/3618)) ## [0.6.120a] - 2023-08-22 -* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) +* 🐛 BUG FIXES: · Telegram window not opening ([#3615](https://github.com/hcengineering/platform/issues/3615)) ## [0.6.120] - 2023-08-22 -* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) +* UBER-773: · Fix List search anv Vacancy view ([#3614](https://github.com/hcengineering/platform/issues/3614)) ## [0.6.119] - 2023-08-19 -* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) -* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) -* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) -* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) +* UBER-600: · Fix label, fix colours for boolean presenter ([#3608](https://github.com/hcengineering/platform/issues/3608)) +* UBER-726: · Ask to update if manual update is required ([#3602](https://github.com/hcengineering/platform/issues/3602)) +* UBER-749: · Fix no label for unassigned ([#3603](https://github.com/hcengineering/platform/issues/3603)) +* UBER-771: · Use cookie instead of token for images ([#3607](https://github.com/hcengineering/platform/issues/3607)) ## [0.6.118] - 2023-08-17 -* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) -* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) -* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) -* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) -* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) -* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) +* TEAM: · Planning UI fixes ([#3599](https://github.com/hcengineering/platform/issues/3599)) +* UBER-479: · Add List view for Vacancies ([#3595](https://github.com/hcengineering/platform/issues/3595)) +* UBER-500: · Confusing Show More button in table ([#3590](https://github.com/hcengineering/platform/issues/3590)) +* UBER-743: · Provide person instead of id as prop ([#3592](https://github.com/hcengineering/platform/issues/3592)) +* UBER-747: · Fix readonly field ([#3593](https://github.com/hcengineering/platform/issues/3593)) +* UBER-759: · Prevent mutations of original object ([#3596](https://github.com/hcengineering/platform/issues/3596)) ## [0.6.117] - 2023-08-14 -* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) +* EZQMS-236: · QE templates >> Have the ability to make a section mandatory ([#3581](https://github.com/hcengineering/platform/issues/3581)) ## [0.6.116] - 2023-08-10 -* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) -* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) -* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) -* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) +* EZQMS-152: · Some object selector dropdown items are cut ([#3558](https://github.com/hcengineering/platform/issues/3558)) +* FIX: · Grammatical and stylistic errors ([#3552](https://github.com/hcengineering/platform/issues/3552)) +* UBER-720: · Rework list view to multiple requests ([#3578](https://github.com/hcengineering/platform/issues/3578)) +* EZQMS-245: · Allow configurable languages per deployments ([#3579](https://github.com/hcengineering/platform/issues/3579)) ## [0.6.115] - 2023-08-08 -* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) -* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) +* UBER-653: · Open template folder that is enabled ([#3573](https://github.com/hcengineering/platform/issues/3573)) +* UBER-710: · Fix preference notifications ([#3574](https://github.com/hcengineering/platform/issues/3574)) ## [0.6.114] - 2023-08-07 -* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) -* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) +* UBER-619: · StatusPopup for creating/renaming ([#3536](https://github.com/hcengineering/platform/issues/3536)) +* UBER-665: · Rename EmployeeAccount->PersonAccount ([#3550](https://github.com/hcengineering/platform/issues/3550)) ## [0.6.113] - 2023-08-03 -* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) -* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) -* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) -* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) +* UBER-532: · Copy issue URL works wrong ([#3529](https://github.com/hcengineering/platform/issues/3529)) +* UBER-628: · Allow reordering when sort is set to manual in the same group ([#3553](https://github.com/hcengineering/platform/issues/3553)) +* UBER-648: · Convert project identifier to upper case ([#3546](https://github.com/hcengineering/platform/issues/3546)) +* UBER-677: · Use State for Leads' status (like applicants do) ([#3554](https://github.com/hcengineering/platform/issues/3554)) ## [0.6.112b] - 2023-08-01 -* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) -* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) +* UBER-646: · Clear the class when view is changed to prevent using old one ([#3541](https://github.com/hcengineering/platform/issues/3541)) +* EZQMS-241: · Account for parent classes configurations in list view ([#3537](https://github.com/hcengineering/platform/issues/3537)) ## [0.6.112a] - 2023-07-31 -* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) +* UBER-641: · Fixed DatePopup. ([#3535](https://github.com/hcengineering/platform/issues/3535)) ## [0.6.112] - 2023-07-29 -* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) -* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) -* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) -* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) -* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) -* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) -* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) -* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) -* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) -* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) -* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) -* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) -* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) -* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) -* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) +* 🐛 BUG FIXES: · Do not shrink expand/collapse icon in tree ([#3517](https://github.com/hcengineering/platform/issues/3517)) +* ATS-13: · Support multiple docs for copying ([#3526](https://github.com/hcengineering/platform/issues/3526)) · Copy ID action ([#3533](https://github.com/hcengineering/platform/issues/3533)) +* CALENDAR: · Fixed the display of the past days (events) ([#3527](https://github.com/hcengineering/platform/issues/3527)) +* QFIX: · Translate ezqms email confirmation letter to english ([#3532](https://github.com/hcengineering/platform/issues/3532)) +* TSK-1574: · Accurate time reports count ([#3509](https://github.com/hcengineering/platform/issues/3509)) +* UBER-427: · Disable third-nested filters ([#3502](https://github.com/hcengineering/platform/issues/3502)) +* UBER-550: · Clean milestone when moving to another project ([#3498](https://github.com/hcengineering/platform/issues/3498)) +* UBER-558: · Filter out overrides for action popup ([#3499](https://github.com/hcengineering/platform/issues/3499)) +* UBER-575: · Allow per class list view ([#3524](https://github.com/hcengineering/platform/issues/3524)) +* UBER-593: · Hyperlink editor ([#3506](https://github.com/hcengineering/platform/issues/3506)) +* UBER-601: · Fixed accentuation of ObjectPresenter ([#3507](https://github.com/hcengineering/platform/issues/3507)) +* UBER-609: · Fix inbox notification/view for telegram and gmail messages ([#3518](https://github.com/hcengineering/platform/issues/3518)) +* UBER-614: · Fix submenu popups on scrolling ([#3530](https://github.com/hcengineering/platform/issues/3530)) +* UBER-621: · Display field validation rule hint ([#3521](https://github.com/hcengineering/platform/issues/3521)) +* UBER-642: · Use system theme as the default value for application theme ([#3534](https://github.com/hcengineering/platform/issues/3534)) ## [0.6.111] - 2023-07-13 -* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) -* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) -* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) +* ATS-9: · Update states once template updates ([#3496](https://github.com/hcengineering/platform/issues/3496)) +* TSK-336: · Mobile UI adaptation ([#3492](https://github.com/hcengineering/platform/issues/3492)) +* UBER-524: · Cleaned CSS, UI fixes. ([#3491](https://github.com/hcengineering/platform/issues/3491)) ## [0.6.110] - 2023-07-08 -* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) -* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) -* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) -* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) -* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) -* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) -* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) -* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) -* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) -* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) -* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) -* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) -* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) -* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) -* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) -* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) -* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) -* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) -* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) -* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) -* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) -* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) -* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) +* UBER-142: · Update buttons. Cleaning CSS. ([#3482](https://github.com/hcengineering/platform/issues/3482)) +* UBER-298: · Add readonly users option to the UserBoxItems component ([#3481](https://github.com/hcengineering/platform/issues/3481)) +* UBER-413: · Allow extensible navigator model ([#3477](https://github.com/hcengineering/platform/issues/3477)) +* UBER-428: · Displaying tooltips with a delay ([#3442](https://github.com/hcengineering/platform/issues/3442)) +* UBER-462: · Prevent creating existing enum value and disable the button in that case ([#3465](https://github.com/hcengineering/platform/issues/3465)) +* UBER-472: · Don't update when it's not needed ([#3460](https://github.com/hcengineering/platform/issues/3460)) +* UBER-473: · Show icon for department ([#3472](https://github.com/hcengineering/platform/issues/3472)) +* UBER-477: · Uberflow dependencies ([#3440](https://github.com/hcengineering/platform/issues/3440)) +* UBER-498: · Replace component shortcut ([#3441](https://github.com/hcengineering/platform/issues/3441)) +* UBER-504: · Correct display of optional presenters ([#3452](https://github.com/hcengineering/platform/issues/3452)) · Fix presenters on ListItem. Add DeviceSizes. ([#3463](https://github.com/hcengineering/platform/issues/3463)) +* UBER-505: · Fix resolve errors in console ([#3449](https://github.com/hcengineering/platform/issues/3449)) +* UBER-509: · Do not update list of unread right after reading ([#3461](https://github.com/hcengineering/platform/issues/3461)) +* UBER-513: · Fix desktop app navigation ([#3459](https://github.com/hcengineering/platform/issues/3459)) +* UBER-520: · Fix images drag & drop ([#3453](https://github.com/hcengineering/platform/issues/3453)) +* UBER-525: · Fixed popup logic placement for top ([#3448](https://github.com/hcengineering/platform/issues/3448)) +* UBER-528: · Fix desktop navigation ([#3450](https://github.com/hcengineering/platform/issues/3450)) +* UBER-536: · Fix test stability ([#3466](https://github.com/hcengineering/platform/issues/3466)) +* UBER-537: · Review support in inbox ([#3471](https://github.com/hcengineering/platform/issues/3471)) +* UBER-538: · Update ListView layout. Subissues, related issues. ([#3467](https://github.com/hcengineering/platform/issues/3467)) · Fixed ListView and KanbanView. ([#3475](https://github.com/hcengineering/platform/issues/3475)) +* UBER-554: · Show messages with error and allow resending ([#3488](https://github.com/hcengineering/platform/issues/3488)) +* UBER-560: · Filter out current transaction and get mixin ([#3480](https://github.com/hcengineering/platform/issues/3480)) +* UBER-572: · Fixed overflow for emoji. ([#3485](https://github.com/hcengineering/platform/issues/3485)) +* UBER-573,-574: · Updated button styles, fixed ListView ([#3484](https://github.com/hcengineering/platform/issues/3484)) ## [0.6.109] - 2023-06-16 -* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) -* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) -* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) -* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) -* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) -* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) -* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) +* UBER-424: · Description not saving fix ([#3434](https://github.com/hcengineering/platform/issues/3434)) +* UBER-450: · Update MentionList. ([#3431](https://github.com/hcengineering/platform/issues/3431)) +* UBER-480: · Fix ValueFilter for space-like objects ([#3428](https://github.com/hcengineering/platform/issues/3428)) +* UBER-482: · Fix 'backspace' in inbox for some objects ([#3437](https://github.com/hcengineering/platform/issues/3437)) +* UBER-485: · Implement icons. ([#3433](https://github.com/hcengineering/platform/issues/3433)) +* UBER-488: · Update selected priority on issue switch ([#3436](https://github.com/hcengineering/platform/issues/3436)) +* UBER-496: · Fix few issues ([#3439](https://github.com/hcengineering/platform/issues/3439)) ## [0.6.108] - 2023-06-12 -* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) -* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) -* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) -* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) -* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) +* UBER-417: · Replace AddSavedView with select popup, allow renaming ([#3423](https://github.com/hcengineering/platform/issues/3423)) +* UBER-430: · Remove old migrations ([#3398](https://github.com/hcengineering/platform/issues/3398)) +* UBER-471: · Fixed maintenance warining. ([#3424](https://github.com/hcengineering/platform/issues/3424)) +* UBER-476: · Duplicate comment fix ([#3425](https://github.com/hcengineering/platform/issues/3425)) +* UBER-478: · Fix issue presenter concurrency ([#3426](https://github.com/hcengineering/platform/issues/3426)) ## [0.6.107] - 2023-06-09 -* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) -* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) -* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) +* UBER-458: · Fix submenu ([#3416](https://github.com/hcengineering/platform/issues/3416)) +* UBER-459: · Remove whereSelected line in dropdowns. ([#3417](https://github.com/hcengineering/platform/issues/3417)) +* UBER-460: · Fix admin view ([#3420](https://github.com/hcengineering/platform/issues/3420)) ## [0.6.106] - 2023-06-08 -* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) -* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) -* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) -* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) -* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) -* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) -* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) -* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) -* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) +* UBER-158: · New popup dialog ([#3409](https://github.com/hcengineering/platform/issues/3409)) +* UBER-425: · Tooltup/popup fixes ([#3404](https://github.com/hcengineering/platform/issues/3404)) +* UBER-433: · Allow tabs within bullets. ([#3399](https://github.com/hcengineering/platform/issues/3399)) +* UBER-438: · Use tracker as default for new users/workspaces ([#3403](https://github.com/hcengineering/platform/issues/3403)) +* UBER-439: · Fix plurals in russian ([#3412](https://github.com/hcengineering/platform/issues/3412)) +* UBER-440: · Fix link error message ([#3406](https://github.com/hcengineering/platform/issues/3406)) +* UBER-441,-443: · Disable fade in Scroller, change color for link and bg for Diff ([#3405](https://github.com/hcengineering/platform/issues/3405)) +* UBER-442,-452: · Fixed login/signup layout, link, mention and backtick. ([#3408](https://github.com/hcengineering/platform/issues/3408)) +* UBER-453: · Update favicons. ([#3414](https://github.com/hcengineering/platform/issues/3414)) ## [0.6.104] - 2023-06-07 -* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) +* UBER-421: · Fixed attachment/comment icons ([#3392](https://github.com/hcengineering/platform/issues/3392)) ## [0.6.103] - 2023-06-07 -* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) -* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) +* UBER-395: · Allow to drop images into description ([#3382](https://github.com/hcengineering/platform/issues/3382)) +* UBER-418: · Fix object popup a bit ([#3377](https://github.com/hcengineering/platform/issues/3377)) ## [0.6.102] - 2023-06-06 -* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) -* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) -* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) -* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) -* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) -* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) -* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) -* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) +* UBER-252: · Mode int URL in MyLeads/MyApplications ([#3347](https://github.com/hcengineering/platform/issues/3347)) +* UBER-371: · Retina images for login page ([#3351](https://github.com/hcengineering/platform/issues/3351)) +* UBER-373: · Fix blurry avatars and other images ([#3353](https://github.com/hcengineering/platform/issues/3353)) +* UBER-377: · Fix login ([#3358](https://github.com/hcengineering/platform/issues/3358)) +* UBER-380: · Change icon ([#3364](https://github.com/hcengineering/platform/issues/3364)) +* UBER-383: · Fix null/undefined for URI and numbers ([#3359](https://github.com/hcengineering/platform/issues/3359)) +* UBER-394: · Update tiptap plugins ([#3368](https://github.com/hcengineering/platform/issues/3368)) +* UBER-397: · Fix panel activity ([#3370](https://github.com/hcengineering/platform/issues/3370)) ## [0.6.101] - 2023-06-05 -* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) -* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) -* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) -* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) -* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) -* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) +* UBER-263: · Use person after creation ([#3304](https://github.com/hcengineering/platform/issues/3304)) +* UBER-276: · New messages and Has messages option for filter ([#3326](https://github.com/hcengineering/platform/issues/3326)) +* UBER-318: · Allow to configure default language ([#3342](https://github.com/hcengineering/platform/issues/3342)) +* UBER-358: · Fix icons ([#3338](https://github.com/hcengineering/platform/issues/3338)) +* UBER-364: · Adapt updated UI ([#3348](https://github.com/hcengineering/platform/issues/3348)) +* UBER-369: · Do not show number of comments if 0 ([#3349](https://github.com/hcengineering/platform/issues/3349)) ## [0.6.100] - 2023-06-02 -* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) -* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) -* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) -* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) -* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) -* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) -* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) -* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) -* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) -* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) +* UBER-137: · Fix application search ([#3309](https://github.com/hcengineering/platform/issues/3309)) +* UBER-170: · Navigation for contacts ([#3323](https://github.com/hcengineering/platform/issues/3323)) +* UBER-172: · Fill contact template fields if only one selected ([#3299](https://github.com/hcengineering/platform/issues/3299)) +* UBER-304: · Fixed Navigator ([#3312](https://github.com/hcengineering/platform/issues/3312)) +* UBER-307,-308,-310,-311,-312: · Fixed activity in Inbox ([#3298](https://github.com/hcengineering/platform/issues/3298)) +* UBER-327: · Sub issues/Related issues allow to create from category header ([#3317](https://github.com/hcengineering/platform/issues/3317)) +* UBER-328: · Fixed display in labels. Updated SelectWorkspaceMenu, AccountPopup. ([#3314](https://github.com/hcengineering/platform/issues/3314)) +* UBER-331: · Fix live query update ([#3305](https://github.com/hcengineering/platform/issues/3305)) +* UBER-338: · Added AppSwitcher popup. ([#3329](https://github.com/hcengineering/platform/issues/3329)) +* UBER-345: · Fixed Inbox. ([#3325](https://github.com/hcengineering/platform/issues/3325)) ## [0.6.99] - 2023-05-30 -* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) -* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) -* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) -* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) -* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) -* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) -* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) -* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) -* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) -* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) -* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) -* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) -* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) +* UBER-199,-217,-232: · Fixed header in ListView, EditMember, ViewOptions ([#3273](https://github.com/hcengineering/platform/issues/3273)) +* UBER-267: · Fix created selection ([#3269](https://github.com/hcengineering/platform/issues/3269)) +* UBER-270: · Enable color more wide ([#3279](https://github.com/hcengineering/platform/issues/3279)) +* UBER-271: · Fix filters ([#3293](https://github.com/hcengineering/platform/issues/3293)) +* UBER-274,-287,-288,-294: · Fixed tooltip, ActionsPopup, ListHeader, activity. ([#3282](https://github.com/hcengineering/platform/issues/3282)) +* UBER-278: · Add Yes-No to popup, refactor ([#3289](https://github.com/hcengineering/platform/issues/3289)) +* UBER-279: · Total qfix ([#3281](https://github.com/hcengineering/platform/issues/3281)) +* UBER-289: · Prevent empty changes to go into transactions. ([#3277](https://github.com/hcengineering/platform/issues/3277)) +* UBER-295: · Fix blur'y popups ([#3278](https://github.com/hcengineering/platform/issues/3278)) +* UBER-296: · Fix create application color selector ([#3280](https://github.com/hcengineering/platform/issues/3280)) +* UBER-317: · Fix issue ([#3285](https://github.com/hcengineering/platform/issues/3285)) +* UBER-319: · Fix vacancy editing ([#3290](https://github.com/hcengineering/platform/issues/3290)) +* UBER-320: · Fix companies filter ([#3292](https://github.com/hcengineering/platform/issues/3292)) ## [0.6.98a] - 2023-05-28 -* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) -* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) +* UBER-268: · List views ([#3270](https://github.com/hcengineering/platform/issues/3270)) +* UBER-269: · Fix mini toggle ([#3271](https://github.com/hcengineering/platform/issues/3271)) ## [0.6.98] - 2023-05-27 -* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) -* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) -* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) -* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) -* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) -* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) -* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) -* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) +* UBER-187: · Inline attachments ([#3264](https://github.com/hcengineering/platform/issues/3264)) +* UBER-218: · Fix createOn -> createdOn ([#3266](https://github.com/hcengineering/platform/issues/3266)) +* UBER-238: · Colors should not use alpha channel ([#3255](https://github.com/hcengineering/platform/issues/3255)) +* UBER-265: · Updated application icons ([#3263](https://github.com/hcengineering/platform/issues/3263)) +* UBER-266: · Fix mongo exceptions ([#3267](https://github.com/hcengineering/platform/issues/3267)) +* UBER-267: · Fix Users popup ([#3268](https://github.com/hcengineering/platform/issues/3268)) +* UBER-53: · My Leads view ([#3259](https://github.com/hcengineering/platform/issues/3259)) +* UBER-64,-231,-229: · Updated CreateProject and SelectAvatar layouts, fixed bugs ([#3253](https://github.com/hcengineering/platform/issues/3253)) ## [0.6.97] - 2023-05-24 -* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) -* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) -* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) -* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) -* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) -* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) -* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) -* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) -* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) -* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) -* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) -* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) -* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) -* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) +* TSK-1523: · Fixed IssuePreview ([#3231](https://github.com/hcengineering/platform/issues/3231)) +* TSK-1525: · Fixed VacancyPresenter ([#3237](https://github.com/hcengineering/platform/issues/3237)) +* UBER-134: · Back references ([#3233](https://github.com/hcengineering/platform/issues/3233)) +* UBER-135/TSK-1430: · Allow changing image in PDFViewer through arrow-keys (keyboard) ([#3186](https://github.com/hcengineering/platform/issues/3186)) +* UBER-148: · My Applications in recruit ([#3235](https://github.com/hcengineering/platform/issues/3235)) +* UBER-159: · Popup dialog for deleting with message if not enough permissions ([#3224](https://github.com/hcengineering/platform/issues/3224)) +* UBER-182: · Fix status object filter ([#3250](https://github.com/hcengineering/platform/issues/3250)) +* UBER-194,-166,-185: · Add application icons, fixed Inbox list and mobile layout ([#3229](https://github.com/hcengineering/platform/issues/3229)) +* UBER-205: · More info to Kanban card (due date, assignee, Lead number) ([#3251](https://github.com/hcengineering/platform/issues/3251)) +* UBER-206: · Redefined color palettes ([#3243](https://github.com/hcengineering/platform/issues/3243)) +* UBER-219: · Updated CreateIssue layout ([#3244](https://github.com/hcengineering/platform/issues/3244)) +* UBER-47: · Attributes for base class (ex. contacts in lead's customers) ([#3241](https://github.com/hcengineering/platform/issues/3241)) +* UBER-49: · Custom fields in CreateLead ([#3249](https://github.com/hcengineering/platform/issues/3249)) +* UBER-50: · Remove funnel browser ([#3236](https://github.com/hcengineering/platform/issues/3236)) ## [0.6.96] - 2023-05-21 -* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) -* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) -* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) -* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) -* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) -* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) -* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) -* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) -* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) -* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) -* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) -* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) -* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) -* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) -* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) -* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) -* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) -* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) -* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) -* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) -* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) -* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) +* TSK-1257: · Split owner name to first and last name fields ([#3156](https://github.com/hcengineering/platform/issues/3156)) +* TSK-1402: · Fix default assignee when creating issues ([#3159](https://github.com/hcengineering/platform/issues/3159)) +* TSK-1469,-1470: · Added SelectAvatars, UserBoxItems components ([#3176](https://github.com/hcengineering/platform/issues/3176)) +* TSK-1489: · Fixed Components, Milestones, IssueTemplates layout ([#3220](https://github.com/hcengineering/platform/issues/3220)) +* TSK-1500: · Enable compression by default ([#3177](https://github.com/hcengineering/platform/issues/3177)) +* TSK-760: · Fix scroll issue for mac ([#3173](https://github.com/hcengineering/platform/issues/3173)) +* UBER-122: · Fix invalid time report shown ([#3191](https://github.com/hcengineering/platform/issues/3191)) +* UBER-130: · Fix expand/collapse on multiple levels ([#3198](https://github.com/hcengineering/platform/issues/3198)) +* UBER-136: · Fix Exception with custom attributes ([#3195](https://github.com/hcengineering/platform/issues/3195)) +* UBER-144: · Fixed showHeader ([#3214](https://github.com/hcengineering/platform/issues/3214)) +* UBER-174: · Introduce createOn every there ([#3222](https://github.com/hcengineering/platform/issues/3222)) +* UBER-177: · Fixed Filter pop-ups ([#3225](https://github.com/hcengineering/platform/issues/3225)) +* UBER-48: · Custom fields for organization in leads ([#3203](https://github.com/hcengineering/platform/issues/3203)) +* UBER-54: · Attempt to Expand/collapse issue fix ([#3183](https://github.com/hcengineering/platform/issues/3183)) +* UBER-56: · Check if title is hidden for Candidate (Talent) in Kanban and Application. Fix Talent card width in Application ([#3196](https://github.com/hcengineering/platform/issues/3196)) +* UBER-62: · Maintenance warnings ([#3210](https://github.com/hcengineering/platform/issues/3210)) +* UBER-76: · Trigger search after timeout ([#3193](https://github.com/hcengineering/platform/issues/3193)) +* UBER-81: · Fix move project ([#3182](https://github.com/hcengineering/platform/issues/3182)) +* UBER-83: · Add BrowserStack notice into readme ([#3178](https://github.com/hcengineering/platform/issues/3178)) +* UBER-87: · Add new icons ([#3188](https://github.com/hcengineering/platform/issues/3188)) +* USER-145: · Fixed FixedColumn ([#3216](https://github.com/hcengineering/platform/issues/3216)) +* USER-79: · Fixed the sidebar in the Panel. Update IssuePreview layout. ([#3201](https://github.com/hcengineering/platform/issues/3201)) ## [0.6.95] - 2023-05-12 -* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) -* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) -* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) -* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) -* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) -* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) -* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) -* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) -* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) -* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) -* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) +* TSK-1324: · Update popups and colors ([#3152](https://github.com/hcengineering/platform/issues/3152)) +* TSK-1387: · Count cancelled sub-issues as completed ([#3158](https://github.com/hcengineering/platform/issues/3158)) +* TSK-1418: · Make issue notification width smaller ([#3160](https://github.com/hcengineering/platform/issues/3160)) +* TSK-1429: · Rework dueDate to ignore overdue in applicants, kanban and right panel ([#3169](https://github.com/hcengineering/platform/issues/3169)) +* TSK-1432: · Fix popup closing ([#3170](https://github.com/hcengineering/platform/issues/3170)) +* TSK-1436: · Change deleting spaces to removing, add action to move all non-valid requests to correct spaces ([#3149](https://github.com/hcengineering/platform/issues/3149)) +* TSK-1451: · Fix focus issues + jump workaround ([#3167](https://github.com/hcengineering/platform/issues/3167)) +* TSK-1452: · Revert sprint statistics display ([#3142](https://github.com/hcengineering/platform/issues/3142)) +* TSK-1454: · Added varieties to the TabList ([#3161](https://github.com/hcengineering/platform/issues/3161)) +* TSK-1459: · Update Panel layout ([#3163](https://github.com/hcengineering/platform/issues/3163)) +* TSK-742: · Use partial binary protocol with ability on/off ([#3153](https://github.com/hcengineering/platform/issues/3153)) ## [0.6.94] - 2023-05-04 -* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) -* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) -* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) -* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) -* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) +* TSK-1098: · My issues list ([#3137](https://github.com/hcengineering/platform/issues/3137)) +* TSK-1236: · Trigger to remove members when deleting department. Fix for already broken departments ([#3120](https://github.com/hcengineering/platform/issues/3120)) +* TSK-1257: · Add sorting by create time ([#3138](https://github.com/hcengineering/platform/issues/3138)) +* TSK-1409: · Bump. client resources 0.6.16 ([#3134](https://github.com/hcengineering/platform/issues/3134)) +* TSK-831: · Edit issue fixes ([#3140](https://github.com/hcengineering/platform/issues/3140)) ## [0.6.93] - 2023-05-04 -* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) -* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) -* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) -* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) -* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) -* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) -* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) +* TSK-1251: · My issues action. Hotkeys to lower case ([#3122](https://github.com/hcengineering/platform/issues/3122)) +* TSK-1337: · Ui fixes. ([#3133](https://github.com/hcengineering/platform/issues/3133)) +* TSK-1394,-1407,-1412,-1417,-1422,-1423: · Minor fixes. Fixed Scroller. ([#3124](https://github.com/hcengineering/platform/issues/3124)) +* TSK-1400: · Show 0 in total (time spend reports) ([#3127](https://github.com/hcengineering/platform/issues/3127)) +* TSK-1414: · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) · Fix exceptions in Kanban ([#3119](https://github.com/hcengineering/platform/issues/3119)) ([#3123](https://github.com/hcengineering/platform/issues/3123)) +* TSK-1419: · Show greyed requests on holidays and weekends ([#3121](https://github.com/hcengineering/platform/issues/3121)) +* TSK-1431,-1440: · Update AttachmentPresenter. Replace colors, minor fixes. ([#3131](https://github.com/hcengineering/platform/issues/3131)) ## [0.6.92] - 2023-05-02 -* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) -* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) -* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) -* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) -* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) -* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) -* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) -* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) +* TSK-1166: · Sprint editor action ([#3110](https://github.com/hcengineering/platform/issues/3110)) +* TSK-1206: · Drag-drop statuses between categories ([#3112](https://github.com/hcengineering/platform/issues/3112)) +* TSK-1324: · Update kanban layout ([#3118](https://github.com/hcengineering/platform/issues/3118)) +* TSK-1339: · Resize tooltip for dueDate and ignore overdue in done/cancelled ([#3113](https://github.com/hcengineering/platform/issues/3113)) +* TSK-1393: · Fix status findAll requests extra data ([#3105](https://github.com/hcengineering/platform/issues/3105)) +* TSK-1405: · Fix hover selection ([#3109](https://github.com/hcengineering/platform/issues/3109)) +* TSK-1406: · Correct Configuration defaults ([#3107](https://github.com/hcengineering/platform/issues/3107)) +* TSK-1410,-1408,-1392,-1389,-1386,-1377: · Minor fixes. Update IssueNotification layout. ([#3117](https://github.com/hcengineering/platform/issues/3117)) ## [0.6.91a] - 2023-04-27 -* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) -* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) -* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) +* TSK-1339: · Show dueDate for cancelled/done issues ([#3091](https://github.com/hcengineering/platform/issues/3091)) +* TSK-1378: · Qfix for exception ([#3097](https://github.com/hcengineering/platform/issues/3097)) +* TSK-1381: · Show preview and Table mouse hover selection ([#3098](https://github.com/hcengineering/platform/issues/3098)) ## [0.6.91] - 2023-04-27 -* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) -* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) -* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) -* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) -* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) -* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) -* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) -* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) -* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) -* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) -* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) -* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) -* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) -* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) -* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) +* TSK-1009: · Configurable platform ([#3055](https://github.com/hcengineering/platform/issues/3055)) +* TSK-1066: · Don't allow creating requests if already exists for set days ([#3053](https://github.com/hcengineering/platform/issues/3053)) +* TSK-1068: · Update department for Staff via side panel ([#3073](https://github.com/hcengineering/platform/issues/3073)) +* TSK-1098: · All issues related fixes ([#3079](https://github.com/hcengineering/platform/issues/3079)) +* TSK-1113: · Add issueUrl to notification for sub-issues ([#3057](https://github.com/hcengineering/platform/issues/3057)) +* TSK-1114: · Fix default issue status ([#3044](https://github.com/hcengineering/platform/issues/3044)) +* TSK-1248: · Revert changes and add check for unset field ([#3054](https://github.com/hcengineering/platform/issues/3054)) +* TSK-1311: · Add editors for String and Number ([#3056](https://github.com/hcengineering/platform/issues/3056)) +* TSK-1312: · Refit tooltip after loading components inside it ([#3083](https://github.com/hcengineering/platform/issues/3083)) +* TSK-1314: · Fix slow Kanban open ([#3052](https://github.com/hcengineering/platform/issues/3052)) +* TSK-1323: · Fix colors for list ([#3069](https://github.com/hcengineering/platform/issues/3069)) +* TSK-1342: · Reduce number of transfer data and improve Kanban initial render speed ([#3078](https://github.com/hcengineering/platform/issues/3078)) +* TSK-1353: · Update ListView headers. Replaced colors in settings. ([#3086](https://github.com/hcengineering/platform/issues/3086)) +* TSK-1375: · Sub issue selector icons ([#3089](https://github.com/hcengineering/platform/issues/3089)) +* TSK-571: · Fix keyboard list navigation ([#3085](https://github.com/hcengineering/platform/issues/3085)) ## [0.6.90] - 2023-04-23 -* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) +* TSK-1243: · Add scroller to project's components list ([#3045](https://github.com/hcengineering/platform/issues/3045)) ## [0.6.89] - 2023-04-21 -* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) -* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) -* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) -* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) +* TSK-1047: · Fix showing requests after moving staff to another department ([#3029](https://github.com/hcengineering/platform/issues/3029)) +* TSK-1064: · Fix export csv in hr ([#3032](https://github.com/hcengineering/platform/issues/3032)) +* TSK-1237: · Improve full text indexer ([#3025](https://github.com/hcengineering/platform/issues/3025)) +* TSK-1274: · Fix Kanban live updates ([#3024](https://github.com/hcengineering/platform/issues/3024)) ## [0.6.88] - 2023-04-19 -* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) -* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) -* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) +* TSK-1248: · Sort null last for dates ([#3021](https://github.com/hcengineering/platform/issues/3021)) +* TSK-1252: · Dispatch update event for attribute bar ([#3017](https://github.com/hcengineering/platform/issues/3017)) +* TSK-964: · Fit popup when component is loaded. Redo cases when popup doesn't fit due to small window sizes ([#3022](https://github.com/hcengineering/platform/issues/3022)) ## [0.6.87] - 2023-04-19 -* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) -* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) -* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) +* TSK-1158: · Remove component from sprint. Remove logic for changing component on sprint change ([#2998](https://github.com/hcengineering/platform/issues/2998)) +* TSK-1248: · Fix dueDate sorting order ([#3013](https://github.com/hcengineering/platform/issues/3013)) +* TSK-808: · Ignore initial validation when autofilled for login form ([#3012](https://github.com/hcengineering/platform/issues/3012)) ## [0.6.86] - 2023-04-17 -* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) -* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) -* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) +* TSK-1213: · Allow to clean archived vacancies with content ([#2999](https://github.com/hcengineering/platform/issues/2999)) +* TSK-1216: · Fix bitrix import ([#3005](https://github.com/hcengineering/platform/issues/3005)) +* TSK-753: · Open user's department in schedule by default ([#3001](https://github.com/hcengineering/platform/issues/3001)) ## [0.6.85] - 2023-04-17 -* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) -* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) +* TSK-1032: · Add confirmation dialog for projects, fix sprint deleting and allow deleting for Owner or creator only ([#2964](https://github.com/hcengineering/platform/issues/2964)) +* TSK-1201: · Fix bitrix migration and too to clean removed transactions ([#2995](https://github.com/hcengineering/platform/issues/2995)) ## [0.6.84] - 2023-04-16 -* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) +* TSK-1200: · Fix Applications with wrong state ([#2992](https://github.com/hcengineering/platform/issues/2992)) ## [0.6.83] - 2023-04-14 -* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) -* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) -* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) +* TSK-1062: · Work on Employee and EmployeeAccount migration ([#2986](https://github.com/hcengineering/platform/issues/2986)) +* TSK-1189: · Fix showing all available categories ([#2987](https://github.com/hcengineering/platform/issues/2987)) +* TSK-1194: · Fix filter ([#2990](https://github.com/hcengineering/platform/issues/2990)) ## [0.6.82] - 2023-04-13 -* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) -* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) -* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) -* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) +* TSK-1152: · Fix connections mess ([#2969](https://github.com/hcengineering/platform/issues/2969)) +* TSK-1153: · Fix server model load exceptions ([#2967](https://github.com/hcengineering/platform/issues/2967)) +* TSK-1154: · Statuses table support ([#2974](https://github.com/hcengineering/platform/issues/2974)) +* TSK-1170: · Fix transactions retrieval to speedup of workspace open ([#2976](https://github.com/hcengineering/platform/issues/2976)) ## [0.6.81] - 2023-04-12 -* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) -* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) -* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) -* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) -* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) -* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) +* TSK-1012: · Change text names for Organizations to Companies ([#2963](https://github.com/hcengineering/platform/issues/2963)) +* TSK-1086: · Fix merge ([#2961](https://github.com/hcengineering/platform/issues/2961)) +* TSK-1141: · Fix bitrix fields ([#2956](https://github.com/hcengineering/platform/issues/2956)) +* TSK-1146: · Support initial content text for collaborator doc ([#2960](https://github.com/hcengineering/platform/issues/2960)) +* TSK-1148: · Mixin button for Vacancy and NPE fixes ([#2965](https://github.com/hcengineering/platform/issues/2965)) +* TSK-1150: · Rollback svelte ([#2966](https://github.com/hcengineering/platform/issues/2966)) ## [0.6.80a] - 2023-04-12 -* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) +* TSK-1089: · Proper Recruit Archive ([#2952](https://github.com/hcengineering/platform/issues/2952)) ## [0.6.80] - 2023-04-11 -* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) -* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) -* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) -* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) -* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) +* TSK-1040: · Support editable for DraggableList ([#2932](https://github.com/hcengineering/platform/issues/2932)) +* TSK-1072: · Fix Created by ([#2948](https://github.com/hcengineering/platform/issues/2948)) +* TSK-1092: · Fix reconnect for Safari ([#2929](https://github.com/hcengineering/platform/issues/2929)) +* TSK-1093: · Fix Application doneState showing ([#2927](https://github.com/hcengineering/platform/issues/2927)) +* TSK-1106: · Update to latest packages ([#2943](https://github.com/hcengineering/platform/issues/2943)) ## [0.6.79] - 2023-04-07 -* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) -* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) -* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) -* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) -* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) -* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) -* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) -* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) -* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) -* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) +* TSK-1007: · Add comments in talent editor ([#2922](https://github.com/hcengineering/platform/issues/2922)) +* TSK-1013: · Add position field to Employee ([#2874](https://github.com/hcengineering/platform/issues/2874)) +* TSK-1015: · Bitrix Create Vacancy/Application ([#2913](https://github.com/hcengineering/platform/issues/2913)) +* TSK-1038: · Fix comments presenter ([#2896](https://github.com/hcengineering/platform/issues/2896)) +* TSK-1062: · Fix merge properly ([#2919](https://github.com/hcengineering/platform/issues/2919)) +* TSK-1065: · Check model version ([#2916](https://github.com/hcengineering/platform/issues/2916)) +* TSK-1088: · Show Kanban counters ([#2924](https://github.com/hcengineering/platform/issues/2924)) +* TSK-943: · General Status support ([#2842](https://github.com/hcengineering/platform/issues/2842)) +* TSK-990: · Remove Back button in settings ([#2875](https://github.com/hcengineering/platform/issues/2875)) +* TSK-1040: · Support draft for DraggableList ([#2898](https://github.com/hcengineering/platform/issues/2898)) ## [0.6.78] - 2023-04-03 -* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) -* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) +* TSK-1010: · Change color for New Customer button ([#2870](https://github.com/hcengineering/platform/issues/2870)) +* TSK-950: · Remove value from filter if the object doesn't exist ([#2852](https://github.com/hcengineering/platform/issues/2852)) ## [0.6.77] - 2023-03-31 -* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) -* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) -* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) -* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) -* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) -* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) -* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) -* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) -* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) -* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) -* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) -* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) -* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) +* TSK-839: · Fix localization strings ([#2833](https://github.com/hcengineering/platform/issues/2833)) +* TSK-903: · Do not allow saving if set to private with no members ([#2854](https://github.com/hcengineering/platform/issues/2854)) +* TSK-916: · Fix attribute errors in console ([#2839](https://github.com/hcengineering/platform/issues/2839)) +* TSK-942: · Add hours to current time ([#2837](https://github.com/hcengineering/platform/issues/2837)) +* TSK-955: · Fix status display ([#2840](https://github.com/hcengineering/platform/issues/2840)) +* TSK-960: · Move for issues ([#2846](https://github.com/hcengineering/platform/issues/2846)) +* TSK-963: · Show avatar on comments ([#2857](https://github.com/hcengineering/platform/issues/2857)) +* TSK-976: · Hide preview action ([#2847](https://github.com/hcengineering/platform/issues/2847)) +* TSK-983: · Fix Cache control for index pages ([#2850](https://github.com/hcengineering/platform/issues/2850)) +* TSK-987: · Show filter with 0 value ([#2855](https://github.com/hcengineering/platform/issues/2855)) +* TSK-988: · Sticky first column in hr calendar ([#2867](https://github.com/hcengineering/platform/issues/2867)) +* TSK-989: · Transparent requests (PTO, extra, etc.) when not in department or it's descendants ([#2861](https://github.com/hcengineering/platform/issues/2861)) +* TSK-992: · Fix column name in Companies ([#2860](https://github.com/hcengineering/platform/issues/2860)) ## [0.6.76a] - 2023-03-24 -* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) -* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) +* TSK-897: · Allow team-leads and managers to edit descendant departments ([#2825](https://github.com/hcengineering/platform/issues/2825)) +* TSK-941: · Fix incorrect rewriting space after selecting in SpaceSelect ([#2827](https://github.com/hcengineering/platform/issues/2827)) ## [0.6.76] - 2023-03-24 -* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) -* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) -* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) -* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) -* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) -* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) -* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) -* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) -* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) -* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) -* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) -* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) -* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) +* TSK-745: · Do not allow changing previous months events (Requests and public holidays) ([#2796](https://github.com/hcengineering/platform/issues/2796)) +* TSK-811: · Fix for undefined when saving platform last location ([#2790](https://github.com/hcengineering/platform/issues/2790)) +* TSK-813: · Fix input width and remove divider for time report popup ([#2794](https://github.com/hcengineering/platform/issues/2794)) +* TSK-825: · Client proper reconnection ([#2797](https://github.com/hcengineering/platform/issues/2797)) +* TSK-831: · Edit Title and Description inline ([#2788](https://github.com/hcengineering/platform/issues/2788)) +* TSK-858: · Send picture without text as comment for issues ([#2793](https://github.com/hcengineering/platform/issues/2793)) +* TSK-885: · Fix invalid deps ([#2777](https://github.com/hcengineering/platform/issues/2777)) +* TSK-912: · Notifications on removing the request ([#2806](https://github.com/hcengineering/platform/issues/2806)) +* TSK-915: · Tracker status ([#2802](https://github.com/hcengineering/platform/issues/2802)) +* TSK-920: · Rename CreatedBy field ([#2807](https://github.com/hcengineering/platform/issues/2807)) +* TSK-924: · Follow proper order for Tracker Kanban ([#2815](https://github.com/hcengineering/platform/issues/2815)) +* TSK-934: · Redirect to last location on opening main page ([#2817](https://github.com/hcengineering/platform/issues/2817)) +* TSK-937: · Fix tooltip for employee ([#2822](https://github.com/hcengineering/platform/issues/2822)) ## [0.6.75b] - 2023-03-21 -* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) -* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) +* TSK-894: · Fix template creation and apply ([#2785](https://github.com/hcengineering/platform/issues/2785)) +* TSK-895: · Allow to mention only active employees ([#2786](https://github.com/hcengineering/platform/issues/2786)) ## [0.6.75a] - 2023-03-21 -* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) -* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) +* TSK-877: · Show only Candidates for Application creation dialog ([#2784](https://github.com/hcengineering/platform/issues/2784)) +* TSK-889: · Fix hang and displayName search for Employee ([#2783](https://github.com/hcengineering/platform/issues/2783)) ## [0.6.75] - 2023-03-21 -* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) -* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) -* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) -* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) -* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) -* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) -* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) +* TSK-811: · Show last workspace location after switching/opening workspace ([#2776](https://github.com/hcengineering/platform/issues/2776)) +* TSK-813: · Remove WorkDayLength and change time reports to hours ([#2763](https://github.com/hcengineering/platform/issues/2763)) +* TSK-859: · Replacing icons. TSK-883: Pop-up for viewing images. ([#2782](https://github.com/hcengineering/platform/issues/2782)) +* TSK-871: · Fix overtime display ([#2769](https://github.com/hcengineering/platform/issues/2769)) +* TSK-879: · Fix empty assignee selection ([#2774](https://github.com/hcengineering/platform/issues/2774)) +* TSK-890: · Fix component icons ([#2778](https://github.com/hcengineering/platform/issues/2778)) +* TSK-891: · Fix UI Tests instability ([#2780](https://github.com/hcengineering/platform/issues/2780)) ## [0.6.74] - 2023-03-17 -* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) -* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) +* TSK-812: · Opening images in the center. Minor design corrections. ([#2755](https://github.com/hcengineering/platform/issues/2755)) +* TSK-857: · Create company button ([#2762](https://github.com/hcengineering/platform/issues/2762)) ## [0.6.73a] - 2023-03-16 -* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) -* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) -* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) -* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) +* TSK-568: · User-friendly message on join for expired links ([#2752](https://github.com/hcengineering/platform/issues/2752)) +* TSK-802: · Save token to array ([#2754](https://github.com/hcengineering/platform/issues/2754)) +* TSK-807: · Query only active Employees ([#2753](https://github.com/hcengineering/platform/issues/2753)) +* TSK-849: · Show labels in list ([#2749](https://github.com/hcengineering/platform/issues/2749)) ## [0.6.73] - 2023-03-16 -* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) -* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) -* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) -* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) -* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) -* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) +* TSK-791: · Handle department's public holidays + add stats for it ([#2735](https://github.com/hcengineering/platform/issues/2735)) +* TSK-827: · Rename Process to Pattern ([#2740](https://github.com/hcengineering/platform/issues/2740)) +* TSK-837: · Fix backup OOM ([#2732](https://github.com/hcengineering/platform/issues/2732)) +* TSK-838: · Created by ([#2742](https://github.com/hcengineering/platform/issues/2742)) +* TSK-842: · Fix resume recognition functionality ([#2736](https://github.com/hcengineering/platform/issues/2736)) +* TSL-840: · Fixed the display of Filtered views ([#2743](https://github.com/hcengineering/platform/issues/2743)) ## [0.6.72a] - 2023-03-13 -* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) +* TSK-803: · Fix load speed ([#2728](https://github.com/hcengineering/platform/issues/2728)) ## [0.6.69b] - 2023-03-02 -* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) -* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) +* TSK-761: · Team default assignee ([#2706](https://github.com/hcengineering/platform/issues/2706)) +* TSK-769: · Fix channel editor ([#2704](https://github.com/hcengineering/platform/issues/2704)) ## [0.6.69] - 2023-03-01 -* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) -* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) -* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) -* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) +* TSK-517: · Show 'Last Modified' instead of 'Date' for attachments ([#2696](https://github.com/hcengineering/platform/issues/2696)) +* TSK-713: · Notifications for DM ([#2695](https://github.com/hcengineering/platform/issues/2695)) +* TSK-728: · Server reconnect support ([#2689](https://github.com/hcengineering/platform/issues/2689)) +* TSK-734: · Fix Bitrix email import ([#2700](https://github.com/hcengineering/platform/issues/2700)) ## [0.6.68] - 2023-02-22 -* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) -* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) +* EZQ-49: · Update collaborator ([#2677](https://github.com/hcengineering/platform/issues/2677)) +* TSK-544: · Search by issue number and description ([#2675](https://github.com/hcengineering/platform/issues/2675)) ## [0.6.67] - 2023-02-20 -* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) -* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) -* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) -* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) -* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) +* TSK-467: · Throw error when used for AttachedDoc ([#2649](https://github.com/hcengineering/platform/issues/2649)) +* TSK-637: · Add login and recovery action ([#2654](https://github.com/hcengineering/platform/issues/2654)) +* TSK-678: · Update First/Last names ([#2652](https://github.com/hcengineering/platform/issues/2652)) +* TSK-679: · Add Whatsapp ([#2651](https://github.com/hcengineering/platform/issues/2651)) +* TSK-685: · Prioritise selection when focus exists ([#2648](https://github.com/hcengineering/platform/issues/2648)) ## [0.6.65] - 2023-02-10 -* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) +* TSK-651: · Fix Team editing ([#2611](https://github.com/hcengineering/platform/issues/2611)) ## [0.6.64] - 2023-02-08 -* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) -* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) -* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) +* TSK-413: · Implement scrum recording ([#2550](https://github.com/hcengineering/platform/issues/2550)) +* TSK-570: · Fix RelatedIssues ([#2596](https://github.com/hcengineering/platform/issues/2596)) +* TSK-608: · Move Vacancy support. ([#2597](https://github.com/hcengineering/platform/issues/2597)) ## [0.6.61] - 2023-01-30 -* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) -* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) +* TSK-476: · Bitrix import fixes ([#2548](https://github.com/hcengineering/platform/issues/2548)) +* TSK-569: · Fix MarkupPresenter, ShowMore ([#2553](https://github.com/hcengineering/platform/issues/2553)) ## [0.6.57] - 2023-01-24 -* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) +* TSK-553: · Fix padding in assignee popup ([#2531](https://github.com/hcengineering/platform/issues/2531)) ## [0.6.55] - 2023-01-20 -* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) +* TSK-360: · Assignee selection enhancements ([#2509](https://github.com/hcengineering/platform/issues/2509)) ## [0.6.53a] - 2022-12-30 -* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) +* TSK-507: · Assignee box Direction line is hidden to early ([#2485](https://github.com/hcengineering/platform/issues/2485)) ## [0.6.52] - 2022-12-22 -* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) +* TSK-485: · Calendar Year/Month summary ([#2465](https://github.com/hcengineering/platform/issues/2465)) ## [0.6.51] - 2022-12-21 -* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) +* TSK-473: · Added tracker layout sanity tests ([#2452](https://github.com/hcengineering/platform/issues/2452)) ## [0.6.50] - 2022-12-16 -* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) +* TSK-487: · Resume draft stuck in Resume state ([#2443](https://github.com/hcengineering/platform/issues/2443)) ## [0.6.49] - 2022-12-15 -* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) -* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) -* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) +* TSK-344: · Draft for new Candidate/Person etc ([#2432](https://github.com/hcengineering/platform/issues/2432)) +* TSK-425: · Supported team settings ([#2406](https://github.com/hcengineering/platform/issues/2406)) +* TSK-461: · Refactor Tracker/Remember Issues ([#2425](https://github.com/hcengineering/platform/issues/2425)) ## [0.6.48] - 2022-12-07 -* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) -* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) +* TSK-343: · Remember unfinished comment per document ([#2400](https://github.com/hcengineering/platform/issues/2400)) +* TSK-458: · Create of sub-issue not show Issue created notification ([#2419](https://github.com/hcengineering/platform/issues/2419)) ## [0.6.47] - 2022-12-02 -* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) +* TSK-419: · Update workspaces while open menu ([#2413](https://github.com/hcengineering/platform/issues/2413)) ## [0.6.46] - 2022-11-29 -* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) +* ACTIVITY: · Filters ([#2395](https://github.com/hcengineering/platform/issues/2395)) ## [0.6.45] - 2022-11-24 -* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) -* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) -* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) -* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) +* TSK-397: · Fixed time report round ([#2389](https://github.com/hcengineering/platform/issues/2389)) +* TSK-418: · Added working day option ([#2393](https://github.com/hcengineering/platform/issues/2393)) +* TSK-421: · Improve Core testing and coverage ([#2387](https://github.com/hcengineering/platform/issues/2387)) +* TSK-435: · Fix create issue edit focus lost. ([#2396](https://github.com/hcengineering/platform/issues/2396)) ## [0.6.44] - 2022-11-22 -* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) -* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) -* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) +* HR: · Update Schedule layout. Fix tooltip and popup. ([#2388](https://github.com/hcengineering/platform/issues/2388)) +* TSK-399: · Allow to delete sprints ([#2386](https://github.com/hcengineering/platform/issues/2386)) +* TSK-420: · Fixed time report placeholders ([#2390](https://github.com/hcengineering/platform/issues/2390)) ## [0.6.41] - 2022-11-12 -* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) -* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) +* TSK-363: · Fixed multiple no sprint category ([#2352](https://github.com/hcengineering/platform/issues/2352)) +* TSK-364: · Fixed filter updates for collapse issues state ([#2355](https://github.com/hcengineering/platform/issues/2355)) ## [0.6.40] - 2022-11-02 -* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) -* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) +* TSK-212: · Add notification on issue created ([#2325](https://github.com/hcengineering/platform/issues/2325)) +* TSK-342: · Add resume issue function ([#2332](https://github.com/hcengineering/platform/issues/2332)) ## [0.6.34] - 2022-08-25 -* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) +* TRACKER: · Enlarged headers ([#2259](https://github.com/hcengineering/platform/issues/2259)) ## [0.6.33a] - 2022-08-22 -* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) +* HR: · When hovering over a cell, the day is highlighted. ([#2253](https://github.com/hcengineering/platform/issues/2253)) ## [0.6.31] - 2022-07-19 -* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) +* TSK-268: · Supported expandable for issue list ([#2222](https://github.com/hcengineering/platform/issues/2222)) ## [0.6.30c] - 2022-07-10 -* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) +* TRACKER: · Fix issue status colors in the kanban view ([#2231](https://github.com/hcengineering/platform/issues/2231)) · Refactor ViewOptions ([#2228](https://github.com/hcengineering/platform/issues/2228)) ## [0.6.30b] - 2022-07-07 -* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) -* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) +* BOARD: · Fix show popup actions ([#2211](https://github.com/hcengineering/platform/issues/2211)) +* TRACKER: · Fix colors for issue status icons ([#2203](https://github.com/hcengineering/platform/issues/2203)) · Fix kanban query ([#2204](https://github.com/hcengineering/platform/issues/2204)) · Updated status icons ([#2215](https://github.com/hcengineering/platform/issues/2215)) · Labels on the card. ([#2221](https://github.com/hcengineering/platform/issues/2221)) · Hide inbox / views ([#2224](https://github.com/hcengineering/platform/issues/2224)) ## [0.6.30a] - 2022-07-04 -* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) -* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) +* HR: · Update schedule layout ([#2202](https://github.com/hcengineering/platform/issues/2202)) +* USERBOX: · Clean up selected for user box on value change ([#2199](https://github.com/hcengineering/platform/issues/2199)) ## [0.6.30] - 2022-07-02 -* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) -* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) -* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) -* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) -* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) +* AUTOMATION: · Disable UI ([#2158](https://github.com/hcengineering/platform/issues/2158)) +* BOARD: · Remove server plugin ([#2159](https://github.com/hcengineering/platform/issues/2159)) +* EDITBOX: · Fixed size calculation ([#2181](https://github.com/hcengineering/platform/issues/2181)) +* HR: · Update values on blur ([#2161](https://github.com/hcengineering/platform/issues/2161)) +* TRACKER: · Fix extra refresh ([#2160](https://github.com/hcengineering/platform/issues/2160)) · Add relation ([#2174](https://github.com/hcengineering/platform/issues/2174)) · Workflow statuses ([#2171](https://github.com/hcengineering/platform/issues/2171)) · Add issues up/down navigator ([#2188](https://github.com/hcengineering/platform/issues/2188)) ## [0.6.29b] - 2022-06-27 -* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) +* CHUNTER: · Open message links without reload ([#2124](https://github.com/hcengineering/platform/issues/2124)) ## [0.6.29a] - 2022-06-27 -* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) +* TRACKER: · Parent issues name ([#2136](https://github.com/hcengineering/platform/issues/2136)) · Sync project with parent ([#2137](https://github.com/hcengineering/platform/issues/2137)) ## [0.6.29] - 2022-06-25 -* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) -* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) -* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) -* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) +* ACTIVITY: · Fix comments display ([#2143](https://github.com/hcengineering/platform/issues/2143)) +* AUTOMATION: · Initial support ([#2134](https://github.com/hcengineering/platform/issues/2134)) +* TRACKER: · Issues search ([#2129](https://github.com/hcengineering/platform/issues/2129)) · Introduce Roadmap ([#2139](https://github.com/hcengineering/platform/issues/2139)) +* UI: · Refactor ([#2127](https://github.com/hcengineering/platform/issues/2127)) ## [0.6.28] - 2022-06-20 -* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) -* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) -* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) +* BOARD: · Fix header ([#2098](https://github.com/hcengineering/platform/issues/2098)) +* CHUNTER: · Copy link to message ([#2078](https://github.com/hcengineering/platform/issues/2078)) +* TRACKER: · Fix status editor ([#2097](https://github.com/hcengineering/platform/issues/2097)) ## [0.6.27] - 2022-06-15 -* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) -* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) -* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) -* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) -* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) +* CHUNTER: · Add button for link formatting ([#2063](https://github.com/hcengineering/platform/issues/2063)) +* TSK-112: · Fix workbench switch ([#2074](https://github.com/hcengineering/platform/issues/2074)) +* TSK-81: · Disable State delete action ([#2076](https://github.com/hcengineering/platform/issues/2076)) +* TAGS: · Fix collection editor ([#2080](https://github.com/hcengineering/platform/issues/2080)) · Add inline editor ([#2081](https://github.com/hcengineering/platform/issues/2081)) +* TRACKER: · Add priority to sub-issues ([#2054](https://github.com/hcengineering/platform/issues/2054)) ## [0.6.26] - 2022-06-10 -* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) +* BOARD: · Fix tags/labels for board table view ([#2045](https://github.com/hcengineering/platform/issues/2045)) · Fix attribute views for tags ([#2046](https://github.com/hcengineering/platform/issues/2046)) · Update popups style ([#2043](https://github.com/hcengineering/platform/issues/2043)) · Add labels view ([#2047](https://github.com/hcengineering/platform/issues/2047)) ## [0.6.25] - 2022-06-08 -* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) +* TRACKER: · Added Projects to the card ([#2023](https://github.com/hcengineering/platform/issues/2023)) · Updating cards in Kanban ([#2032](https://github.com/hcengineering/platform/issues/2032)) · Add "Show Sub-issues" toggle into issue list ([#2033](https://github.com/hcengineering/platform/issues/2033)) ## [0.6.24] - 2022-06-07 -* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) -* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) +* PANEL: · Remove full size. Fix popup. ([#2007](https://github.com/hcengineering/platform/issues/2007)) +* TRACKER: · Add project issue list view ([#2012](https://github.com/hcengineering/platform/issues/2012)) ## [0.6.23] - 2022-06-03 -* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) -* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) -* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) -* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) +* BOARD: · Update server-plugin for task to subscribe to updates on create & update ([#1925](https://github.com/hcengineering/platform/issues/1925)) +* FLITERBAR: · Remove save button ([#1937](https://github.com/hcengineering/platform/issues/1937)) +* SCROLLER: · Added autohide. Fixed track height when displaying table and colors. ([#1964](https://github.com/hcengineering/platform/issues/1964)) +* TRACKER: · Change "Issue" type to "AttachedDoc" ([#1875](https://github.com/hcengineering/platform/issues/1875)) · Add Sub-issues list ([#1989](https://github.com/hcengineering/platform/issues/1989)) · Fix console errors in the Issue Editor ([#2001](https://github.com/hcengineering/platform/issues/2001)) ## [0.6.22] - 2022-05-29 -* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) -* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) -* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) +* BOARD: · Update actions ([#1859](https://github.com/hcengineering/platform/issues/1859)) · Fix cover presenter ([#1872](https://github.com/hcengineering/platform/issues/1872)) · Checklist item dnd support ([#1873](https://github.com/hcengineering/platform/issues/1873)) +* HR: · Issue fixes ([#1891](https://github.com/hcengineering/platform/issues/1891)) +* TRACKER: · Add "Parent Issue" control to the "Edit Issue" dialog ([#1857](https://github.com/hcengineering/platform/issues/1857)) ## [0.6.21] - 2022-05-24 -* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) +* CONTACTS: · Type Filter ([#1855](https://github.com/hcengineering/platform/issues/1855)) ## [0.6.20] - 2022-05-23 -* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) +* BOARD: · Update card ([#1826](https://github.com/hcengineering/platform/issues/1826)) ## [0.6.19] - 2022-05-22 -* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) -* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) -* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) -* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) -* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) -* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) +* BOARD: · Add TableView ([#1760](https://github.com/hcengineering/platform/issues/1760)) · Use Standard actions ([#1766](https://github.com/hcengineering/platform/issues/1766)) · Add checklists info ([#1772](https://github.com/hcengineering/platform/issues/1772)) · Add checklist assignee ([#1778](https://github.com/hcengineering/platform/issues/1778)) · Add convert checklist to card action ([#1805](https://github.com/hcengineering/platform/issues/1805)) +* CHUNTER: · Convert direct message to private channel ([#1752](https://github.com/hcengineering/platform/issues/1752)) · Open dm on creation if already exists ([#1773](https://github.com/hcengineering/platform/issues/1773)) · Formatting ([#1804](https://github.com/hcengineering/platform/issues/1804)) +* EDITISSUE: · Fix "Due date" button style. ([#1824](https://github.com/hcengineering/platform/issues/1824)) +* HR: · Fixes to Vacancy/Application creation ([#1753](https://github.com/hcengineering/platform/issues/1753)) +* TELEGRAM: · Latest messages below. Update AttachmentPreview layout. ([#1768](https://github.com/hcengineering/platform/issues/1768)) +* TRACKER: · Project - Project selector ([#1740](https://github.com/hcengineering/platform/issues/1740)) · Split "edit issue" dialog to preview / edit ([#1731](https://github.com/hcengineering/platform/issues/1731)) · Project - Editors ([#1779](https://github.com/hcengineering/platform/issues/1779)) · Project - Project status buttons ([#1793](https://github.com/hcengineering/platform/issues/1793)) · Add context menu to the "EditIssue" dialog ([#1788](https://github.com/hcengineering/platform/issues/1788)) · "Edit Issue" dialog adjustments ([#1810](https://github.com/hcengineering/platform/issues/1810)) ## [0.6.18] - 2022-05-15 -* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) -* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) -* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) +* BOARD: · Initial checklist support ([#1672](https://github.com/hcengineering/platform/issues/1672)) · Refactor AddPanel with TextAreaEditor ([#1720](https://github.com/hcengineering/platform/issues/1720)) · Fix copy from message · Fix push/pull activity ([#1718](https://github.com/hcengineering/platform/issues/1718)) +* CHUNTER: · User status ([#1608](https://github.com/hcengineering/platform/issues/1608)) ([#1692](https://github.com/hcengineering/platform/issues/1692)) +* TRACKER: · Issue filters - additional features ([#1708](https://github.com/hcengineering/platform/issues/1708)) ## [0.6.15] - 2022-05-05 -* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) -* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) -* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) -* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) +* BOARD: · Remove stale left panel items ([#1574](https://github.com/hcengineering/platform/issues/1574)) · Fix card members update ([#1620](https://github.com/hcengineering/platform/issues/1620)) · Checklists model adjustments ([#1633](https://github.com/hcengineering/platform/issues/1633)) +* CHUNTER: · File browser additional fixes ([#1547](https://github.com/hcengineering/platform/issues/1547)) · Download file action ([#1570](https://github.com/hcengineering/platform/issues/1570)) · FileBrowser - add grid view ([#1571](https://github.com/hcengineering/platform/issues/1571)) · FileBrowser - replace px with rem ([#1582](https://github.com/hcengineering/platform/issues/1582)) · Remove attachments only for creator ([#1552](https://github.com/hcengineering/platform/issues/1552)) · Private channel & add channel members ui ([#1524](https://github.com/hcengineering/platform/issues/1524)) ([#1589](https://github.com/hcengineering/platform/issues/1589)) +* EDITISSUE: · Add due date to the right panel ([#1272](https://github.com/hcengineering/platform/issues/1272)) ([#1642](https://github.com/hcengineering/platform/issues/1642)) +* TRACKER: · Fix IssuesList selection ([#1578](https://github.com/hcengineering/platform/issues/1578)) · Rewrite AssigneePresenter ([#1568](https://github.com/hcengineering/platform/issues/1568)) · Fix issue status view for "Activity" ([#1632](https://github.com/hcengineering/platform/issues/1632)) · Fix issue priority view for "Activity" ([#1635](https://github.com/hcengineering/platform/issues/1635)) · Issue filters - main functionality ([#1640](https://github.com/hcengineering/platform/issues/1640)) ## [0.6.14] - 2022-04-26 -* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) -* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) -* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) +* BOARD: · Add open card inline menu ([#1511](https://github.com/hcengineering/platform/issues/1511)) · Handle labels when move card to another board ([#1538](https://github.com/hcengineering/platform/issues/1538)) · Make context menu consistent ([#1542](https://github.com/hcengineering/platform/issues/1542)) +* CHUNTER: · Avatars in dm header and highlight on first message ([#1499](https://github.com/hcengineering/platform/issues/1499)) · Saved attachments ([#1515](https://github.com/hcengineering/platform/issues/1515)) +* TRACKER: · Add keyboard support for issues list ([#1539](https://github.com/hcengineering/platform/issues/1539)) ## [0.6.13] - 2022-04-24 -* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) -* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) -* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) +* BOARD: · Add create / edit card label popup · Fix lint issues · Update Date Presenter to reuse as presenter · Fix formatting · Use / for card labels update · Use for join action · Add labels & members & date to Kanban Card ([#1462](https://github.com/hcengineering/platform/issues/1462)) · Fix popup alignments ([#1467](https://github.com/hcengineering/platform/issues/1467)) · Add attachment action ([#1474](https://github.com/hcengineering/platform/issues/1474)) · Extend popup positioning for Kanban card ([#1483](https://github.com/hcengineering/platform/issues/1483)) · Add kanban card edit mode ([#1484](https://github.com/hcengineering/platform/issues/1484)) +* CHUNTER: · Saved messages ([#1466](https://github.com/hcengineering/platform/issues/1466)) · Direct messages ([#1472](https://github.com/hcengineering/platform/issues/1472)) · File browser ([#1407](https://github.com/hcengineering/platform/issues/1407)) ([#1488](https://github.com/hcengineering/platform/issues/1488)) +* TRACKER: · View options - Grouping ([#1442](https://github.com/hcengineering/platform/issues/1442)) · Status should be positioned at same offset ([#1464](https://github.com/hcengineering/platform/issues/1464)) · View options - Completed issues period, empty groups display ([#1490](https://github.com/hcengineering/platform/issues/1490)) · Move "IssueStatus" enum into model ([#1449](https://github.com/hcengineering/platform/issues/1449)) ## [0.6.12] - 2022-04-18 -* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) -* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) +* BOARD: · Create board labels ([#1426](https://github.com/hcengineering/platform/issues/1426)) · Add card labels picker popup ([#1434](https://github.com/hcengineering/platform/issues/1434)) +* CHUNTER: · Archive channel ([#1416](https://github.com/hcengineering/platform/issues/1416)) ## [0.6.11] - 2022-04-17 -* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) -* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) -* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) +* BOARD: · Design card editor (initial) ([#1292](https://github.com/hcengineering/platform/issues/1292)) · 1265: Make Card Actions extensible ([#1319](https://github.com/hcengineering/platform/issues/1319)) · Update board card model ([#1329](https://github.com/hcengineering/platform/issues/1329)) · Add new card actions + Join Card Action example ([#1335](https://github.com/hcengineering/platform/issues/1335)) · Add card details (members, labels, date) ([#1376](https://github.com/hcengineering/platform/issues/1376)) · Add button shape and title props ([#1381](https://github.com/hcengineering/platform/issues/1381)) · Fix card live updates ([#1403](https://github.com/hcengineering/platform/issues/1403)) · Add attachments support · Fix labels model ([#1405](https://github.com/hcengineering/platform/issues/1405)) · Fix infinite loop in Activity component for space update ([#1417](https://github.com/hcengineering/platform/issues/1417)) +* CHUNTER: · Channel attributes ([#1334](https://github.com/hcengineering/platform/issues/1334)) · Delete message ([#1336](https://github.com/hcengineering/platform/issues/1336)) · Update channel last message and close thread on deletion from other user ([#1389](https://github.com/hcengineering/platform/issues/1389)) · Pin messages ([#1396](https://github.com/hcengineering/platform/issues/1396)) · Attachments table in channel description ([#1402](https://github.com/hcengineering/platform/issues/1402)) · Attachments and format updates ([#1410](https://github.com/hcengineering/platform/issues/1410)) · Show "edited" label and cancel button ([#1411](https://github.com/hcengineering/platform/issues/1411)) +* TRACKER: · Board view ([#1325](https://github.com/hcengineering/platform/issues/1325)) · Issues list view ([#1313](https://github.com/hcengineering/platform/issues/1313)) · Issue List – Priority presenter ([#1382](https://github.com/hcengineering/platform/issues/1382)) · Improve CheckBox ([#1356](https://github.com/hcengineering/platform/issues/1356)) · Issue List – Status presenter ([#1383](https://github.com/hcengineering/platform/issues/1383)) · Issue List – Assignee presenter ([#1384](https://github.com/hcengineering/platform/issues/1384)) · Issue List - DueDate presenter ([#1393](https://github.com/hcengineering/platform/issues/1393)) ## [0.6.8] - 2022-03-19 -* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) +* UPD: · DataPicker with region selection. Presenters. ([#1153](https://github.com/hcengineering/platform/issues/1153)) ## [0.6.0] - 2021-11-22 -* CLEAN: · Package.json +* CLEAN: · Package.json From 416c4aeae90c9e4b855de4e8292dab716560b9be Mon Sep 17 00:00:00 2001 From: Denis Bykhov Date: Fri, 11 Oct 2024 23:55:15 +0500 Subject: [PATCH 089/149] Fix love records (#6889) Signed-off-by: Denis Bykhov --- services/love/src/main.ts | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/services/love/src/main.ts b/services/love/src/main.ts index eeeb5bcb4bc..8f4ad0fb735 100644 --- a/services/love/src/main.ts +++ b/services/love/src/main.ts @@ -79,8 +79,10 @@ export const main = async (): Promise => { const data = dataByUUID.get(res.filename) if (data !== undefined) { const client = await WorkspaceClient.create(data.workspace) - await storageAdapter.syncBlobFromStorage(ctx, data.workspaceId, res.filename, storageConfig?.name) - await client.saveFile(res.filename, data.name) + const prefix = rootPrefix(storageConfig, data.workspaceId) + const filename = stripPrefix(prefix, res.filename) + await storageAdapter.syncBlobFromStorage(ctx, data.workspaceId, filename, storageConfig?.name) + await client.saveFile(filename, data.name) await client.close() dataByUUID.delete(res.filename) } else { @@ -203,6 +205,17 @@ function getDocumentKey (storageConfig: any, workspace: WorkspaceId, name: strin return storageConfig.rootBucket === undefined ? name : `${getBucketFolder(workspace)}/${name}` } +function stripPrefix (prefix: string | undefined, key: string): string { + if (prefix !== undefined && key.startsWith(prefix)) { + return key.slice(prefix.length) + } + return key +} + +function rootPrefix (storageConfig: any, workspaceId: WorkspaceId): string | undefined { + return storageConfig.rootBucket !== undefined ? getBucketFolder(workspaceId) + '/' : undefined +} + const startRecord = async ( storageConfig: StorageConfig | undefined, egressClient: EgressClient, From 15aab676204c2dc76487e4bb5ed688c10c2042c3 Mon Sep 17 00:00:00 2001 From: Denis Bykhov Date: Fri, 11 Oct 2024 23:55:29 +0500 Subject: [PATCH 090/149] Reduce stat calls from sync blob (#6890) Signed-off-by: Denis Bykhov --- server/server-storage/src/aggregator.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/server/server-storage/src/aggregator.ts b/server/server-storage/src/aggregator.ts index db02d98b84f..d10bfcbb1d5 100644 --- a/server/server-storage/src/aggregator.ts +++ b/server/server-storage/src/aggregator.ts @@ -55,10 +55,12 @@ export class AggregatorStorageAdapter implements StorageAdapter, StorageAdapterE let current: Blob | undefined = ( await this.dbAdapter.find(ctx, workspaceId, DOMAIN_BLOB, { _id: objectName as Ref }, { limit: 1 }) ).shift() + let updated = false if (current === undefined && providerId !== undefined) { current = await this.adapters.get(providerId)?.stat(ctx, workspaceId, objectName) if (current !== undefined) { current.provider = providerId + updated = true } } @@ -66,10 +68,10 @@ export class AggregatorStorageAdapter implements StorageAdapter, StorageAdapterE if (provider === undefined) { throw new NoSuchKeyError('No such provider found') } - const stat = await provider.stat(ctx, workspaceId, objectName) + const stat = updated ? current : await provider.stat(ctx, workspaceId, objectName) if (stat !== undefined) { stat.provider = providerId ?? current?.provider ?? this.defaultAdapter - if (current !== undefined) { + if (current !== undefined && !updated) { await this.dbAdapter.clean(ctx, workspaceId, DOMAIN_BLOB, [current._id]) } await this.dbAdapter.upload(ctx, workspaceId, DOMAIN_BLOB, [stat]) From 765043d7ffcae6f9211b8541017fa6a0c3e44a9b Mon Sep 17 00:00:00 2001 From: Kristina Date: Sat, 12 Oct 2024 21:33:54 +0400 Subject: [PATCH 091/149] Fix tabs nav (#6898) Signed-off-by: Kristina Fefelova --- .../view-resources/src/components/navigator/NavLink.svelte | 2 +- plugins/workbench-resources/src/components/Workbench.svelte | 4 ++-- plugins/workbench-resources/src/workbench.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/view-resources/src/components/navigator/NavLink.svelte b/plugins/view-resources/src/components/navigator/NavLink.svelte index b1bce747a3d..62f047a6306 100644 --- a/plugins/view-resources/src/components/navigator/NavLink.svelte +++ b/plugins/view-resources/src/components/navigator/NavLink.svelte @@ -38,7 +38,7 @@ if (last != null) { try { const newLocation: Location = JSON.parse(last) - if (newLocation.path[2] === app && newLocation.path[3] != null) { + if (newLocation.path[1] === loc.path[1] && newLocation.path[2] === app && newLocation.path[3] != null) { return newLocation } } catch (e) { diff --git a/plugins/workbench-resources/src/components/Workbench.svelte b/plugins/workbench-resources/src/components/Workbench.svelte index d528611a629..c5472ee2373 100644 --- a/plugins/workbench-resources/src/components/Workbench.svelte +++ b/plugins/workbench-resources/src/components/Workbench.svelte @@ -175,7 +175,7 @@ const query = createQuery() $: query.query( workbench.class.WorkbenchTab, - {}, + { attachedTo: account._id }, (res) => { tabs = res tabsStore.set(tabs) @@ -788,7 +788,7 @@ />
- + { try { const last = localStorage.getItem(`${locationStorageKeyId}_${notificationId}`) const lastLocation: Location | undefined = last != null ? JSON.parse(last) : undefined - if (lastLocation != null && lastLocation.path[2] === notificationId) { + if (lastLocation != null && lastLocation.path[1] === loc.path[1] && lastLocation.path[2] === notificationId) { defaultUrl = locationToUrl(lastLocation) } } catch (e) { From 0d0c410b86371afef6f590e7232599c59cbb2d77 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 13 Oct 2024 00:34:33 +0700 Subject: [PATCH 092/149] UBERF-8445: More smart admin mode (#6897) Signed-off-by: Andrey Sobolev --- server/middleware/src/spaceSecurity.ts | 14 +++++++ server/middleware/src/utils.ts | 2 +- server/server/src/client.ts | 52 ++++++++++++++------------ 3 files changed, 43 insertions(+), 25 deletions(-) diff --git a/server/middleware/src/spaceSecurity.ts b/server/middleware/src/spaceSecurity.ts index 25e3af9288e..04e447e047f 100644 --- a/server/middleware/src/spaceSecurity.ts +++ b/server/middleware/src/spaceSecurity.ts @@ -503,6 +503,14 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar const isSpace = this.context.hierarchy.isDerived(_class, core.class.Space) const field = this.getKey(domain) + if ( + ctx.contextData.admin === true && + this.context.hierarchy.isDerived(_class, core.class.Space) && + (newQuery as DocumentQuery).members !== undefined + ) { + delete (newQuery as any).members + } + let clientFilterSpaces: Set> | undefined if (!this.skipFindCheck && !isSystem(account) && account.role !== AccountRole.DocGuest && domain !== DOMAIN_MODEL) { @@ -558,6 +566,12 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar } } } + if (ctx.contextData.admin === true && this.context.hierarchy.isDerived(_class, core.class.Space)) { + // We need to add amin to all spaces. + for (const d of findResult) { + ;(d as unknown as Space).members = [...((d as unknown as Space).members ?? []), ctx.contextData.account._id] + } + } return findResult } diff --git a/server/middleware/src/utils.ts b/server/middleware/src/utils.ts index aa46cea6e0d..95e188f5de4 100644 --- a/server/middleware/src/utils.ts +++ b/server/middleware/src/utils.ts @@ -20,5 +20,5 @@ export function isOwner (account: Account, ctx: MeasureContext): bo } export function isSystem (account: Account): boolean { - return account._id === core.account.System + return account._id === core.account.System || account._id.startsWith('system:') } diff --git a/server/server/src/client.ts b/server/server/src/client.ts index 3c6de5cf213..ad02db2401e 100644 --- a/server/server/src/client.ts +++ b/server/server/src/client.ts @@ -108,34 +108,37 @@ export class ClientSession implements Session { async getAccount (ctx: ClientSessionCtx): Promise { const account = this._pipeline.context.modelDb.getAccountByEmail(this.token.email) if (account === undefined && this.token.extra?.admin === 'true') { - const systemAccount = this._pipeline.context.modelDb.findObject(this.token.email as Ref) - if (systemAccount === undefined) { - // Generate account for admin user - const factory = new TxFactory(core.account.System) - const email = `system:${this.token.email}` - const createTx = factory.createTxCreateDoc( - core.class.Account, - core.space.Model, - { - role: AccountRole.Owner, - email - }, - this.token.email as Ref - ) - this.includeSessionContext(ctx.ctx) - await this._pipeline.tx(ctx.ctx, [createTx]) - const acc = TxProcessor.createDoc2Doc(createTx) - await ctx.sendResponse(acc) - return - } else { - await ctx.sendResponse(systemAccount) - return - } + await ctx.sendResponse(this.getSystemAccount()) + return } await ctx.sendResponse(account) } + private getSystemAccount (): Account { + // Generate account for admin user + const factory = new TxFactory(core.account.System) + const email = `system:${this.token.email}` + const createTx = factory.createTxCreateDoc( + core.class.Account, + core.space.Model, + { + role: AccountRole.Owner, + email + }, + email as Ref + ) + return TxProcessor.createDoc2Doc(createTx) + } + includeSessionContext (ctx: MeasureContext): void { + let account: Account | undefined + if (this.token.extra?.admin === 'true') { + account = this._pipeline.context.modelDb.getAccountByEmail(this.token.email) + if (account === undefined) { + account = this.getSystemAccount() + } + } + const contextData = new SessionDataImpl( this.token.email, this.sessionId, @@ -149,7 +152,8 @@ export class ClientSession implements Session { false, new Map(), new Map(), - this._pipeline.context.modelDb + this._pipeline.context.modelDb, + account ) ctx.contextData = contextData } From f69c7d47ec8383b704145ee6f25673b2c5a52775 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 14 Oct 2024 00:12:18 +0700 Subject: [PATCH 093/149] v0.6.326 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 3d3b827ee72..464226c98cb 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.322" +"0.6.326" From 22ce527d2875d22b4faa780cf8f3685ab1209090 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 14 Oct 2024 17:34:03 +0700 Subject: [PATCH 094/149] Fix merge issue Signed-off-by: Andrey Sobolev --- server/middleware/src/spaceSecurity.ts | 14 -------------- .../telegram-bot/pod-telegram-bot/src/server.ts | 1 - 2 files changed, 15 deletions(-) diff --git a/server/middleware/src/spaceSecurity.ts b/server/middleware/src/spaceSecurity.ts index d1ad9311aea..a7e76eeba1a 100644 --- a/server/middleware/src/spaceSecurity.ts +++ b/server/middleware/src/spaceSecurity.ts @@ -503,14 +503,6 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar const isSpace = this.context.hierarchy.isDerived(_class, core.class.Space) const field = this.getKey(domain) - if ( - ctx.contextData.admin === true && - this.context.hierarchy.isDerived(_class, core.class.Space) && - (newQuery as DocumentQuery).members !== undefined - ) { - delete (newQuery as any).members - } - let clientFilterSpaces: Set> | undefined if ( @@ -571,12 +563,6 @@ export class SpaceSecurityMiddleware extends BaseMiddleware implements Middlewar } } } - if (ctx.contextData.admin === true && this.context.hierarchy.isDerived(_class, core.class.Space)) { - // We need to add amin to all spaces. - for (const d of findResult) { - ;(d as unknown as Space).members = [...((d as unknown as Space).members ?? []), ctx.contextData.account._id] - } - } return findResult } diff --git a/services/telegram-bot/pod-telegram-bot/src/server.ts b/services/telegram-bot/pod-telegram-bot/src/server.ts index 54e8a6a4060..d2fb2274ccb 100644 --- a/services/telegram-bot/pod-telegram-bot/src/server.ts +++ b/services/telegram-bot/pod-telegram-bot/src/server.ts @@ -209,7 +209,6 @@ export function createServer ( app.post( '/notify', wrapRequest(async (req, res, token) => { - ctx.info('Received notification', { email: token.email }) if (req.body == null || !Array.isArray(req.body)) { ctx.error('Invalid request body', { body: req.body, email: token.email }) throw new ApiError(400) From 2a4c326eb908c79bad8fa3241c7221442a2f7063 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Mon, 14 Oct 2024 23:34:22 +0700 Subject: [PATCH 095/149] v0.6.328 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 464226c98cb..864209fb0ce 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.326" +"0.6.328" From f84837bbdbd61da5143131c6866b1f466b4df1a9 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Wed, 16 Oct 2024 21:17:26 +0700 Subject: [PATCH 096/149] v0.6.329 Signed-off-by: Andrey Sobolev --- common/scripts/version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/scripts/version.txt b/common/scripts/version.txt index 864209fb0ce..5383588ec61 100644 --- a/common/scripts/version.txt +++ b/common/scripts/version.txt @@ -1 +1 @@ -"0.6.328" +"0.6.329" From 8e840c7d3c949af8e2a8a3f1126883bc3b54ed28 Mon Sep 17 00:00:00 2001 From: Andrey Sobolev Date: Sun, 13 Oct 2024 23:59:38 +0700 Subject: [PATCH 097/149] UBERF-8455: Fix admin users (#6909) Signed-off-by: Andrey Sobolev --- models/tracker/src/viewlets.ts | 8 +++++- .../projects/ProjectPresenter.svelte | 13 ++++++++-- .../src/components/navigator/NavLink.svelte | 3 ++- .../src/components/Navigator.svelte | 16 +++++++----- server/middleware/src/spaceSecurity.ts | 25 ++++++------------- server/middleware/src/utils.ts | 4 +-- 6 files changed, 40 insertions(+), 29 deletions(-) diff --git a/models/tracker/src/viewlets.ts b/models/tracker/src/viewlets.ts index ac55bde0eec..ee25b631970 100644 --- a/models/tracker/src/viewlets.ts +++ b/models/tracker/src/viewlets.ts @@ -528,7 +528,13 @@ export function defineViewlets (builder: Builder): void { hiddenKeys: ['identifier', 'name', 'description'] }, config: [ - '', + { + key: '', + presenter: tracker.component.ProjectPresenter, + props: { + openIssues: true + } + }, 'members', { key: 'defaultAssignee', diff --git a/plugins/tracker-resources/src/components/projects/ProjectPresenter.svelte b/plugins/tracker-resources/src/components/projects/ProjectPresenter.svelte index a68ced62682..b694ea84ecf 100644 --- a/plugins/tracker-resources/src/components/projects/ProjectPresenter.svelte +++ b/plugins/tracker-resources/src/components/projects/ProjectPresenter.svelte @@ -13,7 +13,7 @@ // limitations under the License. --> {#if value} @@ -49,7 +52,13 @@ />
- {value.name} + {#if openIssues && (isAdminUser() || value.members.includes(getCurrentAccount()._id))} + + {value.name} + + {:else} + {value.name} + {/if} {#if value.archived}