SVG elements are created with the correct namespace in more cases.
React DOM now renders elements with multiple text children properly and renders elements on the server with the correct option selected.
When two separate copies of React add nodes to the same document (including when a browser extension uses React), React DOM tries harder not to throw exceptions during event handling.
Using non-lowercase HTML tag names in React DOM (e.g., React.createElement('DIV'))no longer causes problems, though we continue to recommend lowercase for consistency with the JSX tag name convention (lowercase names refer to built-in components, capitalized names refer to custom components).
React DOM understands that these CSS properties are unitless and does not append “px” to their values: animationIterationCount, boxOrdinalGroup, flexOrder, tabSize, stopOpacity.
Add-Ons: When using the test utils, Simulate.mouseEnter and Simulate.mouseLeave now work.
Add-Ons: ReactTransitionGroup now correctly handles multiple nodes being removed simultaneously.