File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed
Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change 11## v1.1.1
22
3+ * This will be the last release targeting React v15. The next release (v1.2.0) will require React v16.*
4+
5+ <br >
6+
37* When VDOM has been imported, VDOM collections (eg. ` List[VdomTag] ` ) gain two ` .mkTagMod ` methods that are VDOM
48 equivalents of ` .mkString ` in Scala's stdlib.
59 * ` mkTagMod(sep: TagMod): TagMod `
610 * ` mkTagMod(start: TagMod, sep: TagMod, end: TagMod): TagMod `
711
812* Add ` Reusability.derive[A] ` and ` Reusability.deriveDebug[A] ` which handles sealed traits and sealed abstract classes
9- in addition to case classes. ` Reusability.caseClass{,Debug} ` is therefore deprecated.
13+ in addition to case classes. ` Reusability.caseClass{,Debug} ` is therefore deprecated. (Migration command below)
1014
1115* Add to ` StateSnapshot[S] ` instances:
1216 * ` .xmapState[T](f: S => T)(g: T => S) : StateSnapshot[T] ` (Disables ` Reusability ` on the result)
4246
4347``` sh
4448find . -name ' *.scala' -type f -exec perl -pi -e ' s/(Reusability[ .]*)caseClass(Debug)?(?!E)/$1derive$2/g' {} +
45- ```
49+ ```
You can’t perform that action at this time.
0 commit comments