From 95d1abd1f700ce55a320dd587fc52dadabee54ba Mon Sep 17 00:00:00 2001
From: Sam Beckham <sbeckham@gitlab.com>
Date: Mon, 16 Dec 2024 11:48:48 +0000
Subject: [PATCH] Update .browserslistrc support criteria

- Simplify browser targeting rules
- Replace specific browser versions with more flexible criteria
- Add link to browserlist for easy reference
- Remove outdated comments and explanations

-------
:robot: Commit message generated by GitLab Duo
---
 .browserslistrc | 24 +++++++++---------------
 1 file changed, 9 insertions(+), 15 deletions(-)

diff --git a/.browserslistrc b/.browserslistrc
index a02550a408c63..21260c58b51bc 100644
--- a/.browserslistrc
+++ b/.browserslistrc
@@ -1,18 +1,12 @@
 #
 # This list of browsers is a conservative definition, based on
-# https://docs.gitlab.com/ee/install/requirements.html#supported-web-browsers. We
-# also use the following reasoning to choose the target versions:
-#
-# - Actual Browser usage on gitlab.com
-# - Support second latest version of Firefox ESR
-# - Support Chrome / Edge versions about the same age as the Firefox ESR version chosen
-#
-# If need be we raise versions closer to the actual supported web browsers.
-#
-# See also this epic: https://gitlab.com/groups/gitlab-org/-/epics/3957
-#
-chrome >= 103
-edge >= 103
-firefox >= 102
-safari >= 15.6
+# https://docs.gitlab.com/ee/install/requirements.html#supported-web-browsers.
+# 
+# To see what browsers this targets, go here:
+# https://browsersl.ist/#q=%3E+0.5%25%2C+last+2+versions%2C+Firefox+ESR%2C+not+dead
+# 
 
+> 0.5%
+last 2 versions
+Firefox ESR
+not dead
\ No newline at end of file
-- 
GitLab