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

Drop Support for Safari 15.x #8092

Merged
merged 1 commit into from
Aug 22, 2024
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 packages/frontend/config/targets.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (isCI || isProduction) {
browsers.push('last 3 edge versions');
browsers.push('firefox esr'); //sometimes points to the last 2 ESR releases when they overlap
browsers.push('last 2 iOS major versions');
browsers.push('last 3 safari major versions');
browsers.push('last 2 safari major versions');
browsers.push('last 3 ChromeAndroid versions');
browsers.push('last 3 Chrome versions');
}
Expand Down
4 changes: 2 additions & 2 deletions packages/frontend/testem.browserstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ const BrowserStackLaunchers = {
'--os',
'OS X',
'--osv',
'Monterey',
'Ventura',
'--b',
'safari',
'--bv',
'latest', // Will always be 15.x on Monterey
'latest', // Will always be 16.x on Ventura
...defaultArgs,
],
protocol: 'browser',
Expand Down
2 changes: 1 addition & 1 deletion packages/ilios-common/addon/utils/load-polyfills.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export async function loadPolyfills() {
//we need CRYPTO.randomUUID until we drop support for Safari 15.x
//we need CRYPTO.randomUUID until we drop support for iOS Safari 16.x as that version doesn't provide it in insecure (aka test) contexts
installUUIDPolyfill();
}

Expand Down
4 changes: 2 additions & 2 deletions packages/lti-course-manager/testem.browserstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ const BrowserStackLaunchers = {
'--os',
'OS X',
'--osv',
'Monterey',
'Ventura',
'--b',
'safari',
'--bv',
'latest', // Will always be 15.x on Monterey
'latest', // Will always be 16.x on Ventura
...defaultArgs,
],
protocol: 'browser',
Expand Down
4 changes: 2 additions & 2 deletions packages/lti-dashboard/testem.browserstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ const BrowserStackLaunchers = {
'--os',
'OS X',
'--osv',
'Monterey',
'Ventura',
'--b',
'safari',
'--bv',
'latest', // Will always be 15.x on Monterey
'latest', // Will always be 16.x on Ventura
...defaultArgs,
],
protocol: 'browser',
Expand Down
2 changes: 1 addition & 1 deletion packages/test-app/config/targets.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (isCI || isProduction) {
browsers.push('last 3 edge versions');
browsers.push('firefox esr'); //sometimes points to the last 2 ESR releases when they overlap
browsers.push('last 2 iOS major versions');
browsers.push('last 3 safari major versions');
browsers.push('last 2 safari major versions');
browsers.push('last 3 ChromeAndroid versions');
browsers.push('last 3 Chrome versions');
}
Expand Down
4 changes: 2 additions & 2 deletions packages/test-app/testem.browserstack.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ const BrowserStackLaunchers = {
'--os',
'OS X',
'--osv',
'Monterey',
'Ventura',
'--b',
'safari',
'--bv',
'latest', // Will always be 15.x on Monterey
'latest', // Will always be 16.x on Ventura
...defaultArgs,
],
protocol: 'browser',
Expand Down
Loading