Closed
Description
Just dumping these items here since I want to close the 16 umbrella.
- Convert OSS repo to ES6 modules (does not block release; nice-to-have follow up)
- Move https://gist.github.com/gaearon/9a4d54653ae9c50af6c54b4e0e56b583 to docs and update fb.me/react-polyfills to point there
- Fix RN crash in DEV [Fiber] Calling ReactNative.findNodeHandle() in render() crashes in DEV #10518
- It's worth looking into existing
ssr error
entries in the attribute table. They might mean bugs. - Decide: after flat bundles, how does one create a custom Fiber renderer? (doesn't block final, but ideally do for final. internal PR WIP at FB, @gaearon or @bvaughn has context)
- Update "unknown property" warning documentation for new behavior in RFC: Plan for Attributes in React 16 #10399 (currently the warning points to the blog post https://fb.me/react-attribute-behavior)
- Update crossorigin doc and warning to clarify thrower/catcher semantics (@gaearon @bvaughn @sebmarkbage)
- Add Closure Compiler with ADVANCED and deal with mangling properly (does not block release; nice-to-have follow up)
- Whitelist/blacklist warnings
- Add yellow box for warnings Yellow Box for react-dom #7360 (could make opt-in in minor release) (@bvaughn ) [let's make this opt-in in 16.x, on by default in 17]
- RN: [what is this?] Make sure instanceProps in ReactNativeComponentTree doesn't leak. (@sebmarkbage, @bvaughn)
- RN: ensure we keep all important invariants (such as that text must be wrapped in
<Text>
) (Dan: I moved this back to blockers because shipping without invariants and adding them later will be painful) - Decide how to handle the situation where a container has its content changed outside of React. Right now we warn for this, and it also either silently fails or throws a cryptic error. Should we also throw an error? Or can/should we fix this behavior to match previous React? See comments on React 16 RC #10294 (@flarnie)
- Consider logging caught errors immediately rather than during commit (@gaearon @bvaughn)
- Improve component stack usability (issue componentDidCatch: document & decompose info parameter #10461 / PR Added :componentStackFrames property to error info object #10484)
- React 16 does not lowercase HTML attributes in generated HTML #10863 SSR should probably lowercase attributes in HTML namespace. PR: Use lower case for HTML attributes #11110.