From aa8de9f74f5c81c7aeda3dbf130bb1f8b80c162d Mon Sep 17 00:00:00 2001 From: Thibaud Colas Date: Tue, 12 Dec 2023 17:26:02 +0000 Subject: [PATCH] List specific supported Safari versions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is useful because we interpret "Last n" differently for Safari - to only consider major version bumps. And this will only be updated once a year so it won’t be too onerous to keep up-to-date. --- docs/contributing/developing.md | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/contributing/developing.md b/docs/contributing/developing.md index 136a63d5b8..7ea0887415 100644 --- a/docs/contributing/developing.md +++ b/docs/contributing/developing.md @@ -205,16 +205,16 @@ Integration tests target `http://127.0.0.1:8000` by default. Use the `TEST_ORIGI Wagtail is meant to be used on a wide variety of devices and browsers. Supported browser / device versions include: -| Browser | Device/OS | Version(s) | -| ------------- | ---------- | ---------- | -| Mobile Safari | iOS Phone | Last 2 | -| Mobile Safari | iOS Tablet | Last 2 | -| Chrome | Android | Last 2 | -| Chrome | Desktop | Last 2 | -| MS Edge | Windows | Last 2 | -| Firefox | Desktop | Latest | -| Firefox ESR | Desktop | Latest | -| Safari | macOS | Last 3 | +| Browser | Device/OS | Version(s) | +| ------------- | ---------- | ------------------ | +| Mobile Safari | iOS Phone | Last 2: 16, 17 | +| Mobile Safari | iOS Tablet | Last 2: 16, 17 | +| Chrome | Android | Last 2 | +| Chrome | Desktop | Last 2 | +| MS Edge | Windows | Last 2 | +| Firefox | Desktop | Latest | +| Firefox ESR | Desktop | Latest | +| Safari | macOS | Last 3: 15, 16, 17 | We aim for Wagtail to work in those environments. Our development standards ensure that the site is usable on other browsers **and will work on future browsers**.