Skip to content

Commit ef4d14f

Browse files
authored
Merge branch 'master' into really-fix-radios
2 parents 7230e62 + 4131af3 commit ef4d14f

File tree

634 files changed

+1933
-55095
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

634 files changed

+1933
-55095
lines changed

.eslintignore

-7
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,6 @@
22
src/renderers/art
33
src/__mocks__/vendor
44
packages/react-art/lib
5-
# But not in docs/_js/examples/*
6-
docs/_js/*.js
7-
docs/js/
8-
docs/_site/
9-
# gems
10-
docs/vendor/bundle/
115
# This should be more like examples/**/thirdparty/** but
126
# we should fix https://github.com/facebook/esprima/pull/85 first
137
fixtures/
@@ -17,5 +11,4 @@ coverage/
1711
scripts/bench/benchmarks/**/*.js
1812
scripts/bench/remote-repo/
1913
vendor/*
20-
www/public/*
2114
**/node_modules

.flowconfig

-6
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,10 @@
77
<PROJECT_ROOT>/node_modules/chrome-devtools-frontend/.*
88
<PROJECT_ROOT>/node_modules/devtools-timeline-model/.*
99
<PROJECT_ROOT>/node_modules/create-react-class/.*
10-
<PROJECT_ROOT>/www/node_modules/.*
1110
<PROJECT_ROOT>/.*/__mocks__/.*
1211
<PROJECT_ROOT>/.*/__tests__/.*
1312

14-
# Ignore Docs
15-
<PROJECT_ROOT>/docs/.*
16-
<PROJECT_ROOT>/.*/docs/.*
17-
1813
[include]
19-
./www/node_modules/hex2rgba/
2014

2115
[libs]
2216
./node_modules/fbjs/flow/lib/dev.js

.github/ISSUE_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
**What is the current behavior?**
44

5-
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar (template: https://jsfiddle.net/ebsrpraL/).**
5+
**If the current behavior is a bug, please provide the steps to reproduce and if possible a minimal demo of the problem via https://jsfiddle.net or similar (template for React 16: https://jsfiddle.net/Luktwrdm/, template for React 15: https://jsfiddle.net/hmbg7e9w/).**
66

77
**What is the expected behavior?**
88

.gitignore

-8
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,6 @@ build/
99
remote-repo/
1010
coverage/
1111
.module-cache
12-
*.gem
13-
docs/.bundle
14-
docs/code
15-
docs/_site
16-
docs/.sass-cache
17-
docs/js/*
18-
docs/downloads/*.zip
19-
docs/vendor/bundle
2012
fixtures/dom/public/react-dom.js
2113
fixtures/dom/public/react.js
2214
test/the-files-to-test.generated.js

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,22 @@
1313

1414
* Fix `null` showing up in a warning instead of the component stack. ([@gaearon](https://github.com/gaearon) in [#10915](https://github.com/facebook/react/pull/10915))
1515
* Fix IE11 crash in development mode. ([@leidegre](https://github.com/leidegre) in [#10921](https://github.com/facebook/react/pull/10921))
16+
* Fix `tabIndex` not getting applied to SVG elements. ([@gaearon](http://github.com/gaearon) in [#11034](https://github.com/facebook/react/pull/11034))
17+
* Fix false positive text mismatch warning caused by newline normalization. ([@gaearon](http://github.com/gaearon) in [#11119](https://github.com/facebook/react/pull/11119))
18+
* Fix a crash rendering into shadow root. ([@gaearon](https://github.com/gaearon) in [#11037](https://github.com/facebook/react/pull/11037))
19+
* Suppress the new unknown tag warning for `<dialog>` element. ([@gaearon](http://github.com/gaearon) in [#11035](https://github.com/facebook/react/pull/11035))
20+
* Warn about function child no more than once. ([@andreysaleba](https://github.com/andreysaleba) in [#11120](https://github.com/facebook/react/pull/11120))
21+
* Warn about nested updates no more than once. ([@anushreesubramani](https://github.com/anushreesubramani) in [#11113](https://github.com/facebook/react/pull/11113))
1622
* Minor bundle size improvements. ([@gaearon](https://github.com/gaearon) in [#10802](https://github.com/facebook/react/pull/10802), [#10803](https://github.com/facebook/react/pull/10803))
1723

24+
### React DOM Server
25+
26+
* Fix markup generation when components return strings. ([@gaearon](http://github.com/gaearon) in [#11109](https://github.com/facebook/react/pull/11109))
27+
28+
### React Test Renderer and Test Utils
29+
30+
* Add back support for running in production mode. ([@gaearon](https://github.com/gaearon) in [#11112](https://github.com/facebook/react/pull/11112))
31+
1832
</details>
1933

2034
## 16.0.0 (September 26, 2017)

0 commit comments

Comments
 (0)