-
Added
NonEmptyRef
which works the same way asRef
, except that the reference always contains an an initialised value. This is the case with refs created via Hooks'useRef
. -
Refs now have implicit
Reusability
. Because refs are references to a mutable variable that doesn't trigger any React events when modified, only the reference handle/identity is considered for reusability and not the variable's value.
- When using hooks,
useRef
can now be combined withrenderWithReuse
#1037
- Upgrade Scala to 2.13.8
- Upgrade Scala.js to 1.8.0
- Upgrade Cats to 2.7.0
- Upgrade Cats Effect to 3.3.11