Skip to content

Commit 85c1a6f

Browse files
committed
5.4.2 release
2 parents f67b6e6 + e43db02 commit 85c1a6f

25 files changed

Lines changed: 2623 additions & 2274 deletions

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
22

33
The following is a curated list of changes in the Enact project, newest changes on the top.
44

5+
## [5.4.2] - 2026-01-28
6+
7+
### Changed
8+
9+
- `core/platform` to support `safari` 16.6, `chrome` 119, and `firefox` 128 or later
10+
- `ui/Scroller` scroll animation method for `scrollMode: native`
11+
12+
### Fixed
13+
14+
- `ui/VirtulList` not to cut off focused item when scroll by pressing key
15+
- `ui/VirtualList` not to jump to the top when item size was changed
16+
- `ui/VirtualList.VirtualGridList` to adjust itemSize properly when resizing window
17+
518
## [5.4.1] - 2025-12-30
619

720
No significant changes.
@@ -10,7 +23,7 @@ No significant changes.
1023

1124
### Added
1225

13-
- `limestone/Card` `splitCaption` prop to allow user to split the content for the captions
26+
- `ui/Card` `splitCaption` prop to allow user to split the content for the captions
1427
- `ui/useScroll.ScrollAnimator` `oase-out-cubic` animation function
1528

1629
### Changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "5.4.1",
2+
"version": "5.4.2",
33
"packages": [
44
"packages/*"
55
],

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "enact",
3-
"version": "5.4.1",
3+
"version": "5.4.2",
44
"description": "Monorepo for all Enact front end libraries.",
55
"private": true,
66
"scripts": {

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

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

5+
## [5.4.2] - 2026-01-28
6+
7+
### Changed
8+
9+
- `core/platform` to support `safari` 16.6, `chrome` 119, and `firefox` 128 or later
10+
511
## [5.4.1] - 2025-12-30
612

713
No significant changes.

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@enact/core",
3-
"version": "5.4.1",
3+
"version": "5.4.2",
44
"description": "Enact is an open source JavaScript framework containing everything you need to create a fast, scalable mobile or web application.",
55
"repository": {
66
"type": "git",

packages/core/platform/platform.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const userAgentPatterns = [
3434
];
3535

3636
// The base supported versions: Used in DEPRECATED warning
37-
const supportedVersions = {safari: 16.4, chrome: 119, firefox: 128};
37+
const supportedVersions = {safari: 16.6, chrome: 119, firefox: 128};
3838

3939
const parseUserAgent = (userAgent) => {
4040
const detectedInfo = {
@@ -70,7 +70,7 @@ const parseUserAgent = (userAgent) => {
7070

7171
// deprecation warning for browser versions older than our support policy
7272
if (supportedVersions[detectedInfo.browserName] > detectedInfo.browserVersion) {
73-
deprecate({name: `supporting ${detectedInfo.browserName} version older than ${supportedVersions[detectedInfo.browserName]}`, until: '5.0.0'});
73+
deprecate({name: `supporting ${detectedInfo.browserName} version older than ${supportedVersions[detectedInfo.browserName]}`, until: '6.0.0'});
7474
}
7575

7676
return detectedInfo;

packages/i18n/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## [5.4.2] - 2026-01-28
6+
7+
No significant changes.
8+
59
## [5.4.1] - 2025-12-30
610

711
No significant changes.

packages/i18n/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@enact/i18n",
33
"main": "./src/index.js",
4-
"version": "5.4.1",
4+
"version": "5.4.2",
55
"description": "Internationalization support for Enact using iLib",
66
"repository": {
77
"type": "git",
@@ -48,7 +48,7 @@
4848
]
4949
},
5050
"dependencies": {
51-
"@enact/core": "^5.4.1",
51+
"@enact/core": "^5.4.2",
5252
"prop-types": "^15.8.1",
5353
"ramda": "^0.32.0",
5454
"react": "^19.2.3",

packages/sampler/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The following is a curated list of changes in the Enact Sampler, newest changes on the top.
44

5+
## [5.4.2] - 2026-01-28
6+
7+
No significant changes.
8+
59
## [5.4.1] - 2025-12-30
610

711
No significant changes.

0 commit comments

Comments
 (0)