upgrade playwright dependencies (#33348)

Этот коммит содержится в:
sabril
2025-07-08 23:00:48 +08:00
коммит произвёл GitHub
родитель 749f7d4d21
Коммит 780c893b4f
5 изменённых файлов: 281 добавлений и 267 удалений

Просмотреть файл

@@ -1,6 +1,6 @@
{
"name": "@mattermost/playwright-lib",
"version": "10.10.0",
"version": "10.11.0",
"description": "A comprehensive end-to-end testing library for Mattermost web, desktop and plugin applications using Playwright",
"repository": {
"type": "git",
@@ -50,19 +50,19 @@
"async-wait-until": "2.0.27",
"axe-core": "4.10.3",
"deepmerge": "4.3.1",
"dotenv": "17.0.0",
"dotenv": "17.0.1",
"mime-types": "3.0.1",
"uuid": "11.1.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "12.1.4",
"@types/mime-types": "3.0.1",
"@types/node": "24.0.7",
"@types/node": "24.0.10",
"@types/react": "19.1.8",
"rollup": "4.44.1",
"rollup": "4.44.2",
"rollup-plugin-copy": "3.5.0"
},
"peerDependencies": {
"@playwright/test": "1.53.1"
"@playwright/test": "1.53.2"
}
}

Просмотреть файл

@@ -82,7 +82,7 @@ const onPremServerConfig = (): Partial<TestAdminConfig> => {
};
// Should be based only from the generated default config from ./server via "make config-reset"
// Based on v10.7 server
// Based on v10.11 server
const defaultServerConfig: AdminConfig = {
ServiceSettings: {
SiteURL: '',
@@ -499,6 +499,7 @@ const defaultServerConfig: AdminConfig = {
LoginIdAttribute: '',
PictureAttribute: '',
SyncIntervalMinutes: 60,
ReAddRemovedMembers: false,
SkipCertificateVerification: false,
PublicCertificateFile: '',
PrivateKeyFile: '',
@@ -665,6 +666,7 @@ const defaultServerConfig: AdminConfig = {
BatchSize: 3000,
TimeBetweenBatchesMilliseconds: 100,
RetentionIdsBatchSize: 100,
PreservePinnedPosts: false,
},
MessageExportSettings: {
EnableExport: false,
@@ -749,6 +751,9 @@ const defaultServerConfig: AdminConfig = {
TestBoolFeature: false,
EnableRemoteClusterService: false,
EnableSharedChannelsDMs: false,
EnableSharedChannelsPlugins: true,
EnableSharedChannelsMemberSync: false,
EnableSyncAllUsersForRemoteCluster: false,
AppsEnabled: false,
PermalinkPreviews: false,
NormalizeLdapDNs: false,
@@ -765,8 +770,9 @@ const defaultServerConfig: AdminConfig = {
ChannelBookmarks: true,
WebSocketEventScope: true,
NotificationMonitoring: true,
ExperimentalAuditSettingsSystemConsoleUI: false,
CustomProfileAttributes: false,
ExperimentalAuditSettingsSystemConsoleUI: true,
CustomProfileAttributes: true,
AttributeBasedAccessControl: true,
},
ImportSettings: {
Directory: './import',
@@ -789,7 +795,10 @@ const defaultServerConfig: AdminConfig = {
EnableSharedChannels: false,
EnableRemoteClusterService: false,
DisableSharedChannelsStatusSync: false,
SyncUsersOnConnectionOpen: false,
GlobalUserSyncBatchSize: 25,
MaxPostsPerSync: 50,
MemberSyncBatchSize: 20,
},
AccessControlSettings: {
EnableAttributeBasedAccessControl: false,