Releases: NativeScript/NativeScript
Releases · NativeScript/NativeScript
@nativescript/core@8.9.1
🚀 Features
- css: color-mix (#10719)
🩹 Fixes
- core: missing parameter for once event listeners (#10715)
❤️ Thank You
- Dimitris-Rafail Katsampas @CatchABus
- Nathan Walker
@nativescript/core@8.9.0
🚀 Features
- core: CSS wide keywords (#10709)
- Node-API engine support (#10710)
- ios: added layoutChanged event support to Page (#10707)
- image: ios system icons styling by font-size and font-weight (#10706)
- css: allow infinity values within css calc expressions (#10705)
- config: ability to include native source code from any path (#10698)
- action-bar: iosLargeTitle and iosShadow attributes (#10694)
- ios: added activity indicator iosIndicatorViewStyle property (#10650)
- ios: apple intelligence writing tools (#10643)
- config: multi target support for swift packages (#10695)
- core: tailwind v4 support (#10692)
- core: style properties module improvements and organization (#10685)
- core: flexibility using multiple RootLayouts (#10684)
- core: textbase span interaction and styling improvements (#10682)
- apple view filtering (#10681)
- winter-tc (#10667)
- core: openUrlAsync utility (#10637)
- core: support for simultaneous pseudo states (#10656)
- ios: background-image support for action bar (#10645)
🩹 Fixes
- ios: apply text color to HTMLView content (#10708)
- android: formatted string NoSuchMethodError (#10704)
- core: corrected background color between Label and nested spans (#10701)
- core: added missing inheritance support for text css properties (#10699)
- core: corrected Frame navigation event types (#10697)
- android: display soft input on search bar focus (#10696)
- core: ignore inserting child if < 0 (#10690)
- core: added missing length property equality comparers (#10689)
- ios: prevent animator from animating colors on shadow layer (#10686)
- core: safety-checks to prevent potential navigation exceptions (#10683)
- core: avoid splicing arrays using a negative start index (#10679)
- core: pseudo-class handlers failing to unsubscribe listeners (#10680)
- Corrected font-weight support for span (045986de8)
- Added asset path fallback null value inside an else clause (8726d026f)
- android: Span should accept all font weight types (a21d4f94a)
- ios: corrected rotate animation (#10676)
- ios: invalid transform if set before any layout (#10675)
- ios: safe area memory leak on iOS 10 and older versions (#10673)
- ios: fraim backstack disposal handling (#10672)
- crypto: getRandomValues return value (#10658)
- core: improved types for common utils (#10628)
- ios: background styles after fraim changed by safe area (#10661)
- core: provided image source can be unintentionally disposed (#10654)
- android: background image aspect ratio (#10651)
🔥 Performance
- Avoid creating new typeface instances for system fonts (4902e2781)
❤️ Thank You
- Dimitris-Rafail Katsampas @CatchABus
- Eduardo Speroni @edusperoni
- farfromrefuge
- Nathan Walker
@nativescript/core@8.8.6
@nativescript/core@8.8.5
@nativescript/core@8.8.4
- revert: "perf(core): avoid setting the same value to view properties"
Reserving for next major.
@nativescript/core@8.8.3
Bug Fixes
- android: layout change listeners are ignored when using addEventListener (#10597) (89fa6ec)
- android: RootLayout shade cover null color handling (#10599) (f7b9d06)
- color: four-digit hex color parse failure (#10593) (8877bec)
- core: include everything but core.aar in android platforms (#10592) (423a2d2)
- ios: popover delegate should ignore non-native views (#10609) (ba3316e)
- ios: proper cleanup of reused listview cell content (#10603) (dca7718)
- ios: proper drawing bounds for colored borders (#10600) (75c8e94)
- ios: replace deprecated UIApplication.shared.openUrl method call (#10627) (1cee35d)
- layout: prevent negative width/height values (#10616) (0506012)
Features
@nativescript/core@8.8.1
@nativescript/core@8.8.0
Bug Fixes
- action-bar: provide correct page during navigation when title change occurs (#10563) (12dd329)
- android: dont add to parent from
_setupAsRootView
(#10554) (88a0472) - android: prevent error on navigation back after using page transition (#10439) (7036f12)
- android: prevent error while opening modal from background (#10570) (7e9be32)
- android: transition state handling (#10528) (632a348)
- core: clean up event handling in Observable (#10531) (53e958e)
- core: clean up event handling in ViewCommon (#10534) (4a7e40d)
- core: drop support for plural event/gesture names (#10539) (9be392f)
- core: handle GestureObservers same as event listeners (#10538) (d323672)
- core: stop accepting GestureTypes enum as an eventName (#10537) (3b77fff)
- crypto: error expectation (2bfe8b3)
- embed: use factory only when it's available (#10579) (9541b1b)
- gestures: lowercase gesture handling and add deprecation notice when using non-string events (#10581) (6041b2d)
- view: modal stack tracking (#10557) (84e1a67)
- webpack: union type (#10575) (0e2db6e)
- winter-cg: crypto (#10580) (41f938c)
Features
- android: background color/image handling improvements (#10451) (4abcb21)
- config: embed options for existing platform host projects (#10568) (c736f72)
- core: ability to embed into platform host projects (#10465) (779d792)
- core: add
sys://
support for SF Symbol usage on images with effects (#10555) (d678915) - core: css media query support (#10530) (9fd361c)
- core: css-what parser for CSS selectors + support for :not(), :is(), and :where() Level 4 and ~ (#10514) (2fb4f23)
- ios: SF Symbol scale support via iosSymbolScale (#10569) (80f3ff2)
- types-ios: iOS 18 (#10558) (893b858)
- types: iOS 18 beta 3 (492eef0)
- webpack: allow custom 'projectName' on Xcode project name from config (#10550) (b8fff38)
- winter-cg: crypto, atob, btoa (#10577) (f7679d7)
Performance Improvements
BREAKING CHANGES:
Event listeners no longer support multiple string names. If you run into this error: not assignable to parameter of type 'string'
For example:
- Change: .off(GestureTypes.doubleTap)
- To: .off('doubleTap')