mirror of
https://github.com/mattermost/mattermost.git
synced 2026-09-21 14:20:41 +08:00
* MM-64807: Deprecate format parameter in client config endpoint - Remove requirement for format=old query parameter in /api/v4/config/client - Endpoint now returns client configuration by default without parameters - Maintain backward compatibility - format parameter is accepted but ignored - Replace GetOldClientConfig with GetClientConfig across all clients - Update API documentation to reflect simplified endpoint - Update webapp client to remove format parameter usage The endpoint previously returned HTTP 501 without format=old parameter. Now it returns the client configuration directly, making the API more intuitive while preserving compatibility with existing clients. * Update i18n strings after format parameter deprecation * Update E2E tests to use getClientConfig instead of getClientConfigOld - Replace getClientConfigOld calls in playwright test library - Aligns with format parameter deprecation in MM-64807 * Keep format=old parameter in webapp getClientConfig for pre-v11 compatibility