mirror of
https://github.com/mattermost/mattermost.git
synced 2026-05-28 04:35:04 -04:00
chore(deps): update (#29939)
This commit is contained in:
parent
481c18c7cc
commit
5c9030ffc9
6 changed files with 456 additions and 449 deletions
|
|
@ -276,7 +276,7 @@ $(if mme2e_is_token_in_list "webhook-interactions" "$ENABLED_DOCKER_SERVICES"; t
|
|||
$(if mme2e_is_token_in_list "playwright" "$ENABLED_DOCKER_SERVICES"; then
|
||||
echo '
|
||||
playwright:
|
||||
image: mcr.microsoft.com/playwright:v1.49.0-noble
|
||||
image: mcr.microsoft.com/playwright:v1.49.1-noble
|
||||
entrypoint: ["/bin/bash", "-c"]
|
||||
command: ["until [ -f /var/run/mm_terminate ]; do sleep 5; done"]
|
||||
env_file:
|
||||
|
|
|
|||
|
|
@ -43,7 +43,7 @@ npm run test
|
|||
Change to the root directory, then run the docker container. (See https://playwright.dev/docs/docker for reference.)
|
||||
|
||||
```
|
||||
docker run -it --rm -v "$(pwd):/mattermost/" --ipc=host mcr.microsoft.com/playwright:v1.49.0-noble /bin/bash
|
||||
docker run -it --rm -v "$(pwd):/mattermost/" --ipc=host mcr.microsoft.com/playwright:v1.49.1-noble /bin/bash
|
||||
```
|
||||
|
||||
#### 2. Inside the docker container
|
||||
|
|
|
|||
874
e2e-tests/playwright/package-lock.json
generated
874
e2e-tests/playwright/package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
|
@ -16,27 +16,27 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@axe-core/playwright": "4.10.1",
|
||||
"@percy/cli": "1.30.3",
|
||||
"@percy/cli": "1.30.6",
|
||||
"@percy/playwright": "1.0.7",
|
||||
"@playwright/test": "1.49.0",
|
||||
"async-wait-until": "2.0.12",
|
||||
"@playwright/test": "1.49.1",
|
||||
"async-wait-until": "2.0.18",
|
||||
"axe-core": "4.10.2",
|
||||
"chalk": "4.1.2",
|
||||
"dayjs": "1.11.13",
|
||||
"deepmerge": "4.3.1",
|
||||
"dotenv": "16.4.5",
|
||||
"dotenv": "16.4.7",
|
||||
"form-data-encoder": "4.0.2",
|
||||
"formdata-node": "6.0.3",
|
||||
"uuid": "11.0.3",
|
||||
"uuid": "11.0.5",
|
||||
"zod": "3.24.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/uuid": "10.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.16.0",
|
||||
"@typescript-eslint/parser": "8.16.0",
|
||||
"@typescript-eslint/eslint-plugin": "8.20.0",
|
||||
"@typescript-eslint/parser": "8.20.0",
|
||||
"cross-env": "7.0.3",
|
||||
"eslint": "9.16.0",
|
||||
"prettier": "3.4.1",
|
||||
"typescript": "5.7.2"
|
||||
"eslint": "9.18.0",
|
||||
"prettier": "3.4.2",
|
||||
"typescript": "5.7.3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -81,7 +81,7 @@ const onPremServerConfig = (): Partial<TestAdminConfig> => {
|
|||
};
|
||||
|
||||
// Should be based only from the generated default config from ./server via "make config-reset"
|
||||
// Based on v10.3 server
|
||||
// Based on v10.5 server
|
||||
const defaultServerConfig: AdminConfig = {
|
||||
ServiceSettings: {
|
||||
SiteURL: '',
|
||||
|
|
@ -655,6 +655,8 @@ const defaultServerConfig: AdminConfig = {
|
|||
ExportFromTimestamp: 0,
|
||||
BatchSize: 10000,
|
||||
DownloadExportResults: false,
|
||||
ChannelBatchSize: 100,
|
||||
ChannelHistoryBatchSize: 10,
|
||||
GlobalRelaySettings: {
|
||||
CustomerType: 'A9',
|
||||
SMTPUsername: '',
|
||||
|
|
@ -747,6 +749,7 @@ const defaultServerConfig: AdminConfig = {
|
|||
NotificationMonitoring: true,
|
||||
ExperimentalAuditSettingsSystemConsoleUI: false,
|
||||
ExperimentalCrossTeamSearch: false,
|
||||
CustomProfileAttributes: false,
|
||||
},
|
||||
ImportSettings: {
|
||||
Directory: './import',
|
||||
|
|
|
|||
|
|
@ -879,6 +879,8 @@ export type MessageExportSettings = {
|
|||
DailyRunTime: string;
|
||||
ExportFromTimestamp: number;
|
||||
BatchSize: number;
|
||||
ChannelBatchSize: number;
|
||||
ChannelHistoryBatchSize: number;
|
||||
GlobalRelaySettings: {
|
||||
CustomerType: string;
|
||||
SMTPUsername: string;
|
||||
|
|
|
|||
Loading…
Reference in a new issue