mirror of
https://github.com/zebrajr/react.git
synced 2025-12-06 12:20:20 +01:00
Adds a new docs website, built with Gatsby JS, to replace the old Jekyll site. Source code for the new site lives in /www (although markdown and YML data still comes from the legacy /docs folder). Changes to either markdown or website source code can be previewed on Netlify. The react-js bot should automatically add comments to each PR with preview links. (This preview is generated by running the newly-added yarn build:docs command in the root package.json.) The majority of the changes in this PR are contained within the new /www directory. However some minor modifications have been made to existing content in the /docs directory: * Modified frontmatter author block to always be an array * Small markdown formatting tweaks
1.4 KiB
1.4 KiB
| title | author | |
|---|---|---|
| React v0.13.3 |
|
Today we're sharing another patch release in the v0.13 branch. There are only a few small changes, with a couple to address some issues that arose around that undocumented feature so many of you are already using: context. We also improved developer ergonomics just a little bit, making some warnings better.
The release is now available for download:
- React
Dev build with warnings: https://fb.me/react-0.13.3.js
Minified build for production: https://fb.me/react-0.13.3.min.js - React with Add-Ons
Dev build with warnings: https://fb.me/react-with-addons-0.13.3.js
Minified build for production: https://fb.me/react-with-addons-0.13.3.min.js - In-Browser JSX transformer
https://fb.me/JSXTransformer-0.13.3.js
We've also published version 0.13.3 of the react and react-tools packages on npm and the react package on bower.
Changelog
React Core
New Features
- Added
clipPathelement and attribute for SVG - Improved warnings for deprecated methods in plain JS classes
Bug Fixes
- Loosened
dangerouslySetInnerHTMLrestrictions so{__html: undefined}will no longer throw - Fixed extraneous context warning with non-pure
getChildContext - Ensure
replaceState(obj)retains prototype ofobj
React with Add-ons
Bug Fixes
- Test Utils: Ensure that shallow rendering works when components define
contextTypes