From 29d1c61d8239678687d6c412709acd8cc2eb3a72 Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Fri, 9 May 2025 17:08:40 +0100 Subject: [PATCH] Update mas version --- .../element-web-playwright-common/src/testcontainers/mas.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/element-web-playwright-common/src/testcontainers/mas.ts b/packages/element-web-playwright-common/src/testcontainers/mas.ts index 70c2e50c2f..935451cc70 100644 --- a/packages/element-web-playwright-common/src/testcontainers/mas.ts +++ b/packages/element-web-playwright-common/src/testcontainers/mas.ts @@ -195,9 +195,8 @@ export class MatrixAuthenticationServiceContainer extends GenericContainer { private readonly args = ["-c", "/config/config.yaml"]; public constructor(db: StartedPostgreSqlContainer) { - // We rely on `mas-cli manage add-email` which isn't in a release yet - // https://github.com/element-hq/matrix-authentication-service/pull/3235 - super("ghcr.io/element-hq/matrix-authentication-service:sha-0b90c33"); + // We rely on https://github.com/element-hq/matrix-authentication-service/pull/4529 which isn't in a release yet + super("ghcr.io/element-hq/matrix-authentication-service:sha-98f2776"); this.config = deepCopy(DEFAULT_CONFIG); this.config.database.username = db.getUsername();