Граф коммитов

14909 Коммитов

Автор SHA1 Сообщение Дата
Tóth Csaba // Online ERP Hungary Kft
209cf02012 Translated using Weblate (Hungarian)
Currently translated at 99.5% (2324 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/hu/
2022-06-15 10:27:25 +02:00
Matthew Williams
bc71fb5dc5 Translated using Weblate (English (Australia))
Currently translated at 99.3% (2318 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/en_AU/
2022-06-15 10:27:25 +02:00
jprusch
e1bc613a80 Translated using Weblate (German)
Currently translated at 100.0% (2334 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/

Translated using Weblate (German)

Currently translated at 100.0% (2334 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/
2022-06-15 10:27:25 +02:00
Hosted Weblate
767eb1a978 Update translation files
Updated by "Cleanup translation files" hook in Weblate.

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/
2022-06-15 10:27:25 +02:00
Nathaniel Allred
90c737a57a File storage usage default 0 (#20454)
* check for test fail in CI

* use 0 if there are no fileinfo table entries

* fix usage
2022-06-15 12:43:01 +05:30
Nathaniel Allred
1876d69210 add file storage telemetry (#20408)
* cloud instances send file storage telemetry
* Add core disabled plugins (`disabled_default_plugins`) per analytics team request
2022-06-14 20:07:33 -05:00
Mattermod
906fab07bd Update minor version to 7.1.0 (#20465)
Co-authored-by: Mmbot <mmbot@mattermost>
2022-06-14 17:41:50 +03:00
Mattermod
3bd5690f4b Update latest version to 7.0.0 (#20469) 2022-06-14 17:34:52 +03:00
Agniva De Sarker
680b00047f MM-45000: Change dyatlov dependency (#20443)
* MM-45000: Change dyatlov dependency

https://mattermost.atlassian.net/browse/MM-45000
2022-06-14 16:11:53 +03:00
Mattermod
2a85fd6a81 Update latest version to 6.7.1 (#20464) 2022-06-14 14:07:16 +03:00
Agniva De Sarker
8aa8f21bbb MM-22405: Display the translated message instead of error id (#20462)
For a config failure, we now translate the message and show
a user friendly string rather than the error id.

This makes things easier to debug and read.

https://mattermost.atlassian.net/browse/MM-22405

```release-note
NONE
```
2022-06-14 14:58:15 +05:30
José Peso
48a9234d69 websocket: drop less important events before they are queued (#20326)
Discard the non-essential WebSocket events before they are queued.

When conn send queue is full, the connection is closed. There are messages that are being dropped by the current mechanism when send queue is at 50% capacity. This change makes the messages drop before entering the queue in order to keep the queue as empty as possible.

The value of the length of the queue could not be 100% accurate since we are reading from the hub goroutine, but it will be accurate enough to avoid some events.
2022-06-14 09:35:22 +02:00
Martin Kraft
182ae1234a MM-43956: Adds post counts by duration. (#20131)
* MM-43956: Adds post counts by day.

* MM-43956: Test data cleanup. Switch from Unix to UnixMilli.

* MM-43956: Changes from selecting date data types to strings in SQL.

* MM-43956: Fixes date format key.

* MM-43956: Adds missing user id scope for 'my' top channels graph.

* MM-43956: Adds the ability to group post counts by hour.

* MM-43956: Require enterprise or professional license. Reject guests.

* MM-43956: Adds license for tests.

* MM-43956: Renames function.

* MM-43956: Omits future hours from post counts by hour.

* MM-43956: Adjust API response grouping to users timezone.

* MM-43956: Adds translation.

* MM-43956: Adds user's timezone to the data tier for the grouping by day and hour.

* MM-43956: Fixes layers.

* MM-43956: Lint fix.

* MM-43956: Fix store layers.

* MM-43956: Switches to default name for time package; changes parameter names to avoid naming conflict.

* MM-43956: Updates mocks.

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-13 16:22:34 -04:00
Mustafa Kara
c03eb778c8 Reflect alpine image change to fix build pipelines (#20449)
Signed-off-by: Mustafa Kara <mustafa.kara@mattermost.com>
2022-06-13 17:58:25 +03:00
Tim Scheuermann
bf62ef3fa0 [MM-44951] Add go mod tidy CircleCI check (#20446) 2022-06-13 16:20:50 +02:00
Claudio Costa
d317923143 Fix flaky TestUploadDataConcurrent (#20445) 2022-06-13 09:52:10 +02:00
Ibrahim Serdar Acikgoz
39991d236b Add Product Interfaces (#20403)
* app: improve plugin interfaces

* add documentation

* improve doc

* add error id

* add more info to readme
2022-06-13 09:36:43 +03:00
Agniva De Sarker
7c1b8cd937 MM-43733: Set concurrency limits via configuration (#20413)
```release-note
We create a new config option MaxImageDecoderConcurrency which
indicates how many images can be decoded concurrently at once.

The default is -1 which means number of CPUs present.

This affects the total memory consumption of the server. The
maximum memory of a single image is dictated by MaxImageResolution * 24 bytes.
Therefore, a good rule of thumb to follow is that MaxImageResolution
* MaxImageDecoderConcurrency * 24 should be less then the allocated memory for
image decoding.
```

https://mattermost.atlassian.net/browse/MM-43733
2022-06-11 00:24:46 +05:30
Agniva De Sarker
4b8cb4e272 MM-44806: Avoid pointers in JSON parsing in updateCategoryForTeamForUser (#20431)
Passing null is a valid JSON input for a pointer struct. So we avoid
passing pointer to pointer.

https://mattermost.atlassian.net/browse/MM-44806
```release-note
NONE
```
2022-06-11 00:24:23 +05:30
Agniva De Sarker
b443746e80 MM-44805: Avoid pointers in JSON parsing in createCategoryForTeamForUser (#20429)
Passing null is a valid JSON input for a pointer struct. So we avoid
passing pointer to pointer.

https://mattermost.atlassian.net/browse/MM-44805

```release-note
NONE
```
2022-06-11 00:24:04 +05:30
Agniva De Sarker
16174cacf0 Fix client driver API for UpdateUserCustomStatus (#20433)
UpdateUserCustomStatus server API never returned the object.
But the client driver tried to parse the JSON response into
a struct, which always parsed as an empty struct.

We fix that by returning the original response and added
a comment to clarify that.

Found while adding coverage for custom status in the load-test
tool.

```release-note
NONE
```
2022-06-10 20:06:59 +05:30
Julien Tant
35d473b3a0 [MM-44995] remove reference to 30 days trial in welcome email (#20425) 2022-06-09 16:01:24 -07:00
Michael Kochell
e18b1cf89f Check for cloud license and CWS error when checking integration freemium limits (#20387)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-09 15:57:02 -04:00
Tim Scheuermann
71cdd9e486 [MM-44364] make config override actually override defaults (#20379) 2022-06-09 11:45:17 +02:00
Agniva De Sarker
dce96046dd MM-42714: Trim token sizes to 50 characters (#20412)
https://mattermost.atlassian.net/browse/MM-42714

```release-note
NONE
```
2022-06-09 14:56:26 +05:30
Guillermo Vayá
c6f80dfe0a [MM-44573] Sanitize options (#20380)
Automatic Merge
2022-06-09 00:36:28 +03:00
darkLord19
a251510717 remove unused code around unimplemented ExperimentalSettings.EnableClickToReply setting (#20389) 2022-06-08 15:40:30 -04:00
Ben Cooke
2c63e8dd08 [MM-43785] Hide insights feature intro for new users (#20214)
* tools updates

* Revert "tools updates"

This reverts commit 6293297b55803c5a263e200ebd80192899666ae9.

* hide insights modal by default for new users

* updating feature flag for test

* updating preference tests

* fixing lint

* fixing comment

Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MacBook-Pro.local>
Co-authored-by: Benjamin Cooke <benjamincooke@Benjamins-MBP.ht.home>
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-08 14:56:34 -04:00
Scott Bishel
719e4504b8 update boards to v7.0.1 (#20394)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-08 12:33:31 -06:00
Kyriakos Z
5396c530bf MM-42581: fixes unread threads on user channel add (#20181)
* MM-42581: fixes unread threads on user channel add

Currently when we are adding a user to a channel we don't send previous
values for unread replies and mentions. This is resulting the thread to
not be marked as unread in the UI, since we rely on the previous values
for that.

This commit fixes the issue by returning previous unread values of 0.

* Adds test

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-08 14:01:58 -04:00
Ibrahim Serdar Acikgoz
c986693e4a Revert "config/diff: add utility function to get diffs scoped with struct tags (#20297)" (#20391)
This reverts commit a18934b042.
2022-06-08 17:28:35 +03:00
Tim Scheuermann
ef3f1b5796 [MM-44925] simplified the ID generator (#20398) 2022-06-08 16:12:02 +02:00
Ashish Dhama
485f44c136 Set Advanced Text Editor feature flag default value to True (#20357)
Automatic Merge
2022-06-08 15:36:28 +03:00
Kaya Zeren
67ba5f9a6d Translated using Weblate (Turkish)
Currently translated at 100.0% (2334 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/tr/
2022-06-08 11:33:46 +02:00
jprusch
248058897b Translated using Weblate (German)
Currently translated at 100.0% (2334 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/de/
2022-06-08 11:33:46 +02:00
MArtin Johnson
cfe18d19ff Translated using Weblate (Swedish)
Currently translated at 100.0% (2330 of 2330 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/sv/
2022-06-08 11:33:46 +02:00
kaakaa
3c2388ee10 Translated using Weblate (Japanese)
Currently translated at 100.0% (2330 of 2330 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/ja/
2022-06-08 11:33:46 +02:00
master7
8245b67ee8 Translated using Weblate (Polish)
Currently translated at 100.0% (2334 of 2334 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/

Translated using Weblate (Polish)

Currently translated at 100.0% (2330 of 2330 strings)

Translation: mattermost-languages-shipped/mattermost-server
Translate-URL: https://translate.mattermost.com/projects/mattermost/mattermost-server_master/pl/
2022-06-08 11:33:46 +02:00
Tom De Moor
21f1bc237b Deleted translation using Weblate (Macedonian) 2022-06-08 11:33:46 +02:00
Weblate
cbb79a1a16 Added translation using Weblate (Macedonian) 2022-06-08 11:33:46 +02:00
Agniva De Sarker
f89266532f MM-44922: Skip TestImportImportPost (#20395)
Skipping the test.

https://mattermost.atlassian.net/browse/MM-44922

```release-note
NONE
```
2022-06-08 14:18:42 +05:30
Tim Scheuermann
03579f56ae [MM-43831] removed the parallel marker from the subtests (#20364) 2022-06-08 09:08:45 +02:00
Tim Scheuermann
d001651977 Simplify ParamsFromRequest (#20384) 2022-06-08 09:07:20 +02:00
Maria A Nunez
ab02903f8c Loosen password req defaults (#20372)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-07 16:48:47 -04:00
Claudio Costa
159ebc297d Pre-package Calls v0.6.0 and enable it by default (#20388)
Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2022-06-07 19:45:43 +02:00
Agniva De Sarker
319a2b2428 MM-39690: Clean up some unnecessary logs (#20368)
These logs would appear at every request
and didn't have any useful info for the admin.
It was more of a developer logging thing
and therefore removing it.

https://mattermost.atlassian.net/browse/MM-39690
```release-note
NONE
```
2022-06-07 21:21:36 +05:30
Jesse Hallam
ce84a5d190 Pre-package Playbooks v1.28.1 (#20341)
* Pre-package Playbooks v1.28.0

* Pre-package Playbooks v1.28.1
2022-06-07 12:48:14 -03:00
Alejandro García Montoro
e08324596b Bump pre-packaged version of Zoom to v1.6.0 (#20370) 2022-06-07 15:27:13 +02:00
Ibrahim Serdar Acikgoz
c1c084a596 app/plugin: add product middleware and enable products register their routers (#20374) 2022-06-07 09:12:15 +03:00
Scott Bishel
2580722426 update boards to v7.0.0 (#20371) 2022-06-06 14:55:16 -06:00