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

WRR-287: Update the minimum supported versions of browsers #3295

Merged
merged 7 commits into from
Jan 3, 2025
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
5 changes: 2 additions & 3 deletions docs/creating-components.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,11 +251,10 @@ You can make `custom_skin.css` file from the [Sandstone custom-skin sample](http
//
.sandstone-theme {
--sand-bg-color: #000000;
--sand-text-color-rgb: 230, 230, 230;
--sand-component-text-color-rgb: 230, 230, 230;
--sand-text-color: #E6E6E6;
--sand-component-text-color: #E6E6E6;
--sand-component-bg-color: #7D848C;
--sand-component-active-indicator-bg-color: #E6E6E6;
--sand-component-inactive-indicator-bg-color: #9DA2A7;
}
```
> Note: You should be sure to put RGB-separated values in the CSS variable names ending with `-rgb` if you edit the value in the file directly.
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The following is a curated list of changes in the Enact core module, newest changes on the top.

## [unreleased]

### Changed

- `core/platform` to support `safari` 16.4, `chrome` 119, and `firefox` 128 or later

## [5.0.0-alpha.3] - 2024-12-02

No significant changes.
Expand Down
2 changes: 1 addition & 1 deletion packages/core/platform/platform.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ const userAgentPatterns = [
];

// The base supported versions: Used in DEPRECATED warning
const supportedVersions = {safari: 15.6, chrome: 94, firefox: 115};
const supportedVersions = {safari: 16.4, chrome: 119, firefox: 128};

const parseUserAgent = (userAgent) => {
const detectedInfo = {
Expand Down
Loading