Commit Graph

16420 Commits

Author SHA1 Message Date
Nick Misasi
193fa57770
[MM-51922] Enforce minimum 10 seats in seats selector (#22916)
* Enforce minimum 10 seats in seats selector

* Ensure initial value is validated as well

* Fix linter

* fix tests

* Add a test for 10 seat minimum

* Fix linter, merge master
2023-04-13 16:13:34 -04:00
Nick Misasi
25aade0882
[MM-51922] Enforce minimum 10 seats in seats selector (#22916)
* Enforce minimum 10 seats in seats selector

* Ensure initial value is validated as well

* Fix linter

* fix tests

* Add a test for 10 seat minimum

* Fix linter, merge master
2023-04-13 15:27:56 -04:00
Nick Misasi
55063b026b
[MM-51922] Enforce minimum 10 seats in seats selector (#22916)
* Enforce minimum 10 seats in seats selector

* Ensure initial value is validated as well

* Fix linter

* fix tests

* Add a test for 10 seat minimum

* Fix linter, merge master
2023-04-13 15:27:44 -04:00
Allan Guwatudde
a7ce08da95
[MM-51236] - Update newsletter opt-in copy (#22849)
* [MM-51236] - Update newsletter opt-in copy

* feedback impl

* fix tests

* fix text color

* fix color

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-13 21:55:00 +03:00
Allan Guwatudde
ea44b6bd38
[MM-51475] - Monthly Subscriptions: Notifications to move to annual (#22842)
* [MM-51475] - Monthly Subscriptions: Notifications to move to annual

* change wording

* change banners impl

* fix translation

* rm env var

* fix tests

* rm unused consts

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-13 18:37:37 +03:00
Conor Macpherson
48cd0f884e
Merge pull request #22830 from mattermost/MM-51692-delete-reason-feedback-is-sending-notifications-with-translated-text
Ensure feedback options are not submitting in their translated forms.
2023-04-13 11:19:41 -04:00
Agniva De Sarker
574e61bcc1
MM-52009: Fix hub data race (#22925)
After the monorepo integration, the boards product
was started before we started the hub.

This led to a data race where the GetHubForUserId was actually
called before the hub was initialized.

To fix this we initialize the platform first, and then the products.

https://mattermost.atlassian.net/browse/MM-52009
```release-note
NONE
```
2023-04-13 19:39:16 +05:30
Sinan Sonmez (Chaush)
35d3e3e91e
GH21563: Add the request context and logger to all public methods in app/admin.go (#22898)
* migrate mlog

* fix linter issue
2023-04-13 14:21:11 +05:30
Ashish Dhama
24774f51da
[MM-52121]: Migrate About build modal unit test to testing library (#22927)
* Migrate About build modal unit test to testing library

* add user-event library

* add user event

* remove snapshot
2023-04-13 13:58:41 +05:30
Konstantinos Pittas
40349cddd4
[MM-51401] Add an extra check for the schema (#22531)
Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-13 11:00:55 +03:00
M-ZubairAhmed
53ed2ce461
MM-52093 : Revert back the 'global-style' npmrc config (#22901)
"global-styles" was added to hoist fewer dependencies from packages to the root node_modules and was initially intended to fix some issues with mismatched dependency versions in the Boards unit tests. However, it was found to be causing problems when the same version of dependencies was used across the products.
2023-04-13 08:31:35 +05:30
Colton Shaw
abb34c4879
[Webapp] added hour diff to profile (#22669)
Automatic Merge
2023-04-13 04:34:28 +03:00
Christopher Speller
8c73f092e8
Fix public boards setting not applying properly. (#22921) 2023-04-12 15:11:46 -07:00
Julien Tant
2dafc51be2
Work Template: use mattermost-server/playbooks package instead of old playbook repo (#22908) 2023-04-12 13:53:22 -07:00
Nick Misasi
3089b8b06d
[MM-51479] Cloud Reverse Trial Banner Updates (#22852)
* License public key to test env for mono-repo

* Fix error modal showing on a successful trial request

* Adjustments for new banners

* stashing

* Undo accidental merge

* fixes

* clean up dev stuff, fix style

* Adjust padding on announcement bar button

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-12 15:41:53 -04:00
Christopher Poile
4aa2648888
Prepackage calls v0.15.1 (#22936) 2023-04-12 15:15:24 -04:00
Ashish Dhama
c3e69e97e4
[MM-51445] Replace compass-components icon component with compass icons (#22527)
* Replace compass-components icon component with compass-icons
2023-04-12 21:39:49 +05:30
Allan Guwatudde
155e896dcf
[MM-51412] - In-product banner to communicate Cloud Free deprecation (#22622)
* [MM-51412] - In-product banner to communicate Cloud Free deprecation

* fix lint

* make improvements

* make improvements

* put banners behind feature flag

* cloud free overage case

* add unit tests

* feedback impl

* fix test

* rename and enable feature flag by default

* fix alert banner mode

* read end date from env var

* disable ff by default

* enter cloud free deprecation date

* remove env var

* fix text

---------

Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-12 18:08:37 +03:00
Mattermost Build
56d76dbe28
Merge branch 'master' into MM-51692-delete-reason-feedback-is-sending-notifications-with-translated-text 2023-04-12 17:33:47 +03:00
Claudio Costa
b00ca20abe
[MM-50827] Detect content-type if missing in response during link metadata generation (#22885)
* Detect content-type if missing in response during link metadata generation

* Initialize buffer only when necessary
2023-04-12 07:53:03 -06:00
Agniva De Sarker
62d758f485
Do not shutdown DB handle from boards product (#22924)
* Do not shutdown DB handle from boards product

```
warn  [2023-04-12 09:16:55.397 +05:30] Failed to save status                         caller="platform/status.go:175" user_id=gt5aricnu7g7xkr4jstfybgmbc error="failed to upsert Status: sql: database is closed"
```

The DB handle is a global object that is finally closed
at a higher layer after all the necessary tasks are finished.
So closing it prematurely, in the boards shutdown phase
is not necessary and can cause failures as observed above.

To fix this, we just remove the shutdown method.

```release-note
NONE
```

* fix tests

```release-note
NONE
```
2023-04-12 15:40:03 +02:00
Ashish Dhama
0190d7dca8
[MM-51878]: Migrate billing history unit test to testing library (#22900)
* migrate billing history unit test to testing library
2023-04-12 12:50:36 +05:30
Ben Schumacher
4cc370098e
[MM-26398] Remove deprecated model.CommandArgs.Session (#22815) 2023-04-12 01:10:59 +02:00
Renato Alves
a0530da22b
event-id -> event_id for consistency (#22775)
Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-11 15:51:28 -07:00
Pablo Andrés Vélez Vidal
2917d5fba7
MM-51970 - double vertical scroll on lhs (#22867) 2023-04-12 00:03:27 +02:00
Jesse Hallam
7943221c5a
Deprecate Toolkit CODEOWNERS (#22907)
* Deprecate Toolkit CODEOWNERS

* change code owner to `@mattermost/integrations`

* remove code owner

---------

Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com>
2023-04-11 18:10:27 -03:00
Agniva De Sarker
bf952e690b
MM-52088: Skip Flaky test (#22910)
https://mattermost.atlassian.net/browse/MM-52088

```release-note
NONE
```
2023-04-11 21:40:42 +05:30
Christopher Poile
cefb6f0419
MM-51461 - Prepackage calls v0.15.0 (#22913) 2023-04-11 11:55:17 -04:00
Nick Misasi
646e0fcd41
[MM-51990] Add 3 more options for company size dropdown (#22870)
* Add 3 more options for company size dropdown

* translate

* Fix linter
2023-04-11 08:15:03 -04:00
Saturnino Abril
5b5ee1160e
expect boards product by default in e2e (#22911) 2023-04-11 18:59:10 +08:00
M-ZubairAhmed
50aabf6b93
MM-52008 : Standardise package.json's version across all products in webapp (#22876)
The version in package.json was added to display the workspace name in the terminal for playbooks. Additionally, it was ensured that all products now have the same version number, as the release of all products is tied to a single release channel.
2023-04-11 13:30:29 +05:30
M-ZubairAhmed
f149bb1f66
MM-52003 : Remove unused and deprecated "mini-create-react-context" package (#22881)
"mini-create-react-context" is no longer used, and it is also a deprecated package, which was added in boards long back.
2023-04-11 13:21:21 +05:30
Julien Tant
6e7759b314
[MM-51844 & MM-51843] Work template permissions check (#22825) 2023-04-10 09:51:20 -07:00
Akis Maziotis
fbe7323079 [fix] CI Correctly identify artifact downloads
We are defining the workflow directive to for `Artifacts generation and upload`/cd/Download artifacts step.
To be the workflow_id from the calling workflow

Signed-off-by: Akis Maziotis <akis.maziotis@mattermost.com>
2023-04-10 19:27:47 +03:00
Guilherme Gomes
2cd7313179
Fixed stop error on webapp makefile (#22662)
Co-authored-by: Mattermost Build <build@mattermost.com>
2023-04-10 11:44:00 -04:00
M-ZubairAhmed
dd67376097
engines (#22875) 2023-04-10 10:14:35 -04:00
Akis Maziotis
24bf163171 [feat] Uploading mm-te-test artifacts to mattermost docker registry
Required by Cloud Platform team for smooth migration of Spinwick service to the new DockerHub registry.
Context: https://community.mattermost.com/private-core/pl/3jzzxzfiji8hx833ewyuthzkjh
2023-04-10 16:50:17 +03:00
Akis Maziotis
d0bee0162c [feat] CI. Run artifact uploads in workflow secure context
We are seperating artifacts generation/upload process, into a seperate workflow.
This runs in pricileged mode, using `workflow_run` trigger.
https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#workflow_run
Note: This event will only trigger a workflow run if the workflow file is on the default branch.(master)

Docker artifacts, are now exposed under the newly porivisioned DockerHub Org account: "mattermostdevelopment"
https://hub.docker.com/repository/docker/mattermostdevelopment/mm-te-test/tags?page=1&ordering=last_updated

Signed-off-by: Akis Maziotis <akis.maziotis@mattermost.com>
2023-04-10 16:50:17 +03:00
Akis Maziotis
2dc535381a [chore] CI Name change for mattermost build workflow 2023-04-10 16:50:17 +03:00
Agniva De Sarker
bcf115e315
Upgrade mockery to fix errors (#22892)
Mockery started to throw errors like "Unexpected package creation during export data loading".

This was consistently reproducible locally and on upgrade, it has gone away.

```release-note
NONE
```
2023-04-10 14:20:57 +05:30
M-ZubairAhmed
6be0ed0d19
MM-52004 : Remove stub types packages for moment-timezone, highlight-js, classnames (#22879) 2023-04-08 06:14:31 +05:30
M-ZubairAhmed
b7175560da
MM-51831 : Add ESLint rule to "channels/components" to error out if "compass-components" package is used (#22754) 2023-04-08 06:13:06 +05:30
Caleb Roseland
2ad37a731d
Merge pull request #22878 from mattermost/boards-playbooks-i18n-sync 2023-04-07 10:43:31 -05:00
Caleb Roseland
9cbd21a394 fix ContentBlock.editCardText warn 2023-04-07 09:38:53 -05:00
Caleb Roseland
8f9b22b004 Merge branch 'master' into boards-playbooks-i18n-sync 2023-04-07 09:31:29 -05:00
M-ZubairAhmed
9bffaeae42
MM-51846 : Upgrade Esint from 7 to 8+ (#22753) 2023-04-07 03:50:01 +05:30
Colton Shaw
84b0e3dff1
Added missing types (#22880) 2023-04-06 16:43:21 -04:00
Caleb Roseland
4a5e5b7b96 sync boards webapp 2023-04-06 13:57:53 -05:00
Jesse Hallam
d6cf013775
Fix playbooks e2e (#22816) 2023-04-06 15:56:22 -03:00
Caleb Roseland
73211e8170 cleanup: reverse-extract/fix boards webapp en.json 2023-04-06 13:50:52 -05:00