From c76b18f1202c9152d77d33c9539949daf56071a2 Mon Sep 17 00:00:00 2001 From: yujeong-jeon Date: Wed, 25 Feb 2026 12:53:22 +0900 Subject: [PATCH 1/3] update iOS Safari support range to >= 17 --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 3011983..7dabccf 100644 --- a/index.js +++ b/index.js @@ -3,8 +3,8 @@ const NAVERPAY_SUPPORTED_BROWSER_LIST = [ "not dead", "not op_mini all", "not ie >= 0", - "not ios_saf < 16", - "ios_saf >= 16", + "not ios_saf < 17", + "ios_saf >= 17", "node >= 18.18.0", "Chrome >= 106", ]; From f91378c1a95a53147c149321784a6b35bafaae15 Mon Sep 17 00:00:00 2001 From: yujeong-jeon Date: Wed, 25 Feb 2026 12:55:36 +0900 Subject: [PATCH 2/3] update Node.js support range to >= 20.12.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 주요 보안 패치 및 성능 최적화가 함께 이루어진 버전부터 지원 - 26.04 EOL 예정 --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 7dabccf..a17e038 100644 --- a/index.js +++ b/index.js @@ -5,7 +5,7 @@ const NAVERPAY_SUPPORTED_BROWSER_LIST = [ "not ie >= 0", "not ios_saf < 17", "ios_saf >= 17", - "node >= 18.18.0", + "node >= 20.12.0", "Chrome >= 106", ]; From 527f67512ef694a6ef2053adea5c82ad8343d5bc Mon Sep 17 00:00:00 2001 From: yujeong-jeon <148525642+yujeong-jeon@users.noreply.github.com> Date: Wed, 25 Feb 2026 12:59:19 +0900 Subject: [PATCH 3/3] Create empty-geese-camp.md --- .changeset/empty-geese-camp.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .changeset/empty-geese-camp.md diff --git a/.changeset/empty-geese-camp.md b/.changeset/empty-geese-camp.md new file mode 100644 index 0000000..c44d20b --- /dev/null +++ b/.changeset/empty-geese-camp.md @@ -0,0 +1,7 @@ +--- +"@naverpay/browserslist-config": major +--- + +iOS Safari >= 17, Node.js >= 20.12.0 지원 범위 업데이트 + +PR: [iOS Safari >= 17, Node.js >= 20.12.0 지원 범위 업데이트](https://github.com/NaverPayDev/browserslist-config/pull/21)