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

[CLEANUP beta] Update browser support per RFC #685 #20445

Merged
merged 1 commit into from
Apr 26, 2023
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,7 +260,7 @@ jobs:
- name: Setup firefox
uses: browser-actions/setup-firefox@latest
with:
firefox-version: 91.0.1
firefox-version: 102.0.1
- run: firefox --version
- name: test
run: yarn ember test -c testem.ci-browsers.js
Expand Down
73 changes: 49 additions & 24 deletions lib/browsers.js
Original file line number Diff line number Diff line change
@@ -1,33 +1,50 @@
module.exports = [
'Chrome >= 92',
'Edge >= 93',
'Firefox >= 91',
'Chrome >= 103',
'Edge >= 110',
'Firefox >= 102',
'iOS >= 12',
'Safari >= 12',
'ChromeAndroid >= 96',
'FirefoxAndroid >= 94',
'ChromeAndroid >= 112',
'FirefoxAndroid >= 110',
];

/*
As of the release of 4.0.0, the above query expands to:
As of the release of April 2023, the above query expands to:

and_chr 96
and_ff 94
chrome 96
chrome 95
chrome 94
chrome 93
chrome 92
chrome 91
chrome 87
edge 96
edge 95
firefox 95
firefox 94
firefox 93
firefox 60
firefox 52
ios_saf 15.2
and_chr 112
and_ff 110
chrome 112
chrome 111
chrome 110
chrome 109
chrome 108
chrome 107
chrome 106
chrome 105
chrome 104
chrome 103
edge 112
edge 111
edge 110
firefox 112
firefox 111
firefox 110
firefox 109
firefox 108
firefox 107
firefox 106
firefox 105
firefox 104
firefox 103
firefox 102
ios_saf 16.4
ios_saf 16.3
ios_saf 16.2
ios_saf 16.0
ios_saf 15.6
ios_saf 15.5
ios_saf 15.4
ios_saf 15.2-15.3
ios_saf 15.0-15.1
ios_saf 14.5-14.8
ios_saf 14.0-14.4
Expand All @@ -37,7 +54,15 @@ module.exports = [
ios_saf 13.0-13.1
ios_saf 12.2-12.5
ios_saf 12.0-12.1
safari 15.2
safari 16.4
safari 16.3
safari 16.2
safari 16.1
safari 16.0
safari 15.6
safari 15.5
safari 15.4
safari 15.2-15.3
safari 15.1
safari 15
safari 14.1
Expand Down
4 changes: 2 additions & 2 deletions testem.browserstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const BrowserStackLaunchers = {
'--b',
'edge',
'--bv',
'93',
'110',
'-t',
'1200',
'--u',
Expand All @@ -47,7 +47,7 @@ const BrowserStackLaunchers = {
'--b',
'Chrome',
'--bv',
'92',
'103',
'-t',
'1200',
'--u',
Expand Down