Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark Internet Explorer as dead #701

Merged
merged 2 commits into from Jun 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -237,7 +237,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`
Expand Down
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -1176,7 +1176,7 @@ var QUERIES = [
select: function (context) {
var dead = [
'Baidu >= 0',
'ie <= 10',
'ie <= 11',
'ie_mob <= 11',
'bb <= 10',
'op_mob <= 12.1',
Expand Down