From afb24fb222166f010eef123b21c686f95ddc868f Mon Sep 17 00:00:00 2001 From: Albert Portnoy Date: Mon, 20 Jun 2022 13:17:29 -0500 Subject: [PATCH] Mark Internet Explorer as dead (#701) * Mark ie 11 as dead * Add IE 11 as dead --- README.md | 2 +- index.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 42779027..768cc7a0 100644 --- a/README.md +++ b/README.md @@ -242,7 +242,7 @@ You can specify the browser and Node.js versions by queries (case insensitive): * `last 2 major versions` or `last 2 iOS major versions`: all minor/patch releases of last 2 major versions. * `dead`: browsers without official support or updates for 24 months. - Right now it is `IE 10`, `IE_Mob 11`, `BlackBerry 10`, `BlackBerry 7`, + Right now it is `IE 11`, `IE_Mob 11`, `BlackBerry 10`, `BlackBerry 7`, `Samsung 4`, `OperaMobile 12.1` and all versions of `Baidu`. * Node.js versions: * `node 10` and `node 10.4`: selects latest Node.js `10.x.x` diff --git a/index.js b/index.js index bfe77e73..782f5d78 100644 --- a/index.js +++ b/index.js @@ -1128,7 +1128,7 @@ var QUERIES = { select: function (context) { var dead = [ 'Baidu >= 0', - 'ie <= 10', + 'ie <= 11', 'ie_mob <= 11', 'bb <= 10', 'op_mob <= 12.1',