Ben Alpert
8f720f8cd9
update website for 0.14.4
...
(cherry picked from commit c8398491d8 )
2015-12-29 14:11:45 -08:00
Ben Alpert
a58cde6c79
Update readme for 0.14.4
...
(cherry picked from commit 0516e74473 )
2015-12-29 14:11:45 -08:00
Ben Alpert
53920e7c38
Changelog for 0.14.4
...
(cherry picked from commit 3f355d99c5 )
2015-12-29 14:11:45 -08:00
Ben Alpert
99dc2a73f6
Upgrade fbjs to 0.6
...
(counterpart to a29b4938a8 )
2015-12-29 14:11:33 -08:00
Ben Alpert
62c9d999be
Merge pull request #5749 from spicyj/lib-native
...
Add shim files for RN in npm package
2015-12-29 13:34:55 -08:00
Ben Alpert
c29642d6ed
Add shim files for RN in npm package
2015-12-29 12:14:22 -08:00
Paul O’Shannessy
51295bf7d0
Merge pull request #5741 from mziwisky/patch-1
...
Remove extraneous comment
2015-12-29 00:21:24 -08:00
Michael Ziwisky
a0d6a98cbf
Remove extraneous comment
...
This little guy should have been removed in 6bd6ef208b
2015-12-28 19:28:41 -06:00
Dan Abramov
713401f2eb
Merge pull request #5736 from gaearon/document-svg-passthrough
...
Document changes in #5714
2015-12-26 03:09:13 +00:00
Dan Abramov
feb4c487be
Document changes in #5714
2015-12-25 18:51:09 +00:00
Dan Abramov
53dabe748c
Merge pull request #5714 from gaearon/passthrough-svg-attributes
...
Pass all SVG attributes through
2015-12-25 13:53:33 +00:00
Dan Abramov
98a7100930
Use JSX in the new tests
2015-12-25 13:50:10 +00:00
Dan Abramov
f27e3aa750
Move the specific else if clause up
2015-12-25 13:48:13 +00:00
Dan Abramov
251d6c30b5
Move SVG attribute deprecation warnings into a devtool
...
In #5590 a new system was introduced for tracking dev-time warnings.
This commit uses it for reporting SVG attribute deprecation warnings.
2015-12-24 17:50:46 +00:00
Dan Abramov
232a47ad04
Pass SVG attributes through
...
All attributes defined on SVG elements will now be passed directly regardless of the whitelist. The casing specified by user will be preserved, and setAttribute() will be used.
In the future we will remove support for the camel case aliases to the hyphenated attributes. For example, we currently map `strokeWidth` to `stroke-width` but this is now deprecated behind a warning. When we remove support for this we can remove some of the code paths introduced in this commit.
The purpose of this change is to stop maintaining a separate SVG property config. The config still exists for two purposes:
* Allow a migration path for deprecated camelcased versions of hyphenated SVG attributes
* Track special namespaced attributes (they still require a whitelist)
However it is no longer a blocker for using new non-namespaced SVG attributes, and users don't have to ask us to add them to the whitelist.
Fixes #1657
2015-12-24 17:18:33 +00:00
Jim
82fe64a456
Merge pull request #5590 from jimfb/use-devtool-for-unknown-property-warning
...
Use devtool for unknown property warning
2015-12-23 19:02:58 -08:00
Ben Alpert
edf1952421
Merge pull request #5730 from spicyj/input-type-value
...
Add another test for #5729
2015-12-23 17:55:08 -08:00
Ben Alpert
432578ef03
Add another test for #5729
2015-12-23 16:25:35 -08:00
Ben Alpert
5043b89d5e
Merge pull request #5729 from spicyj/input-type-value
...
Set input .type before .value always
2015-12-23 15:49:32 -08:00
Ben Alpert
07c0bc6166
Set input .type before .value always
...
In IE11 (and below), if you run
```
var input = document.createElement('input');
input.value = 'wat';
input.type = 'radio';
console.log(input.value);
```
you get the string "on" logged. Because that makes sense.
So we set the type first.
2015-12-23 15:44:33 -08:00
Paul O’Shannessy
0d5312559a
Merge pull request #5725 from RochesterinNYC/patch-1
...
Clarify React class constructor comments
2015-12-23 11:53:12 -08:00
Paul O’Shannessy
a0741ab468
Merge pull request #5716 from jwworth/pull-request-1450816256
...
Fix typos in posts
2015-12-23 11:50:08 -08:00
Paul O’Shannessy
56365f4eda
Merge pull request #5721 from jdalton/fast-finish
...
Remove fast_finish in travis.yml.
2015-12-23 11:35:56 -08:00
James Wen
6ff96441da
Clarify React class constructor comments
...
- The constructor is not always overridden by mocks. Makes viewing this constructor during debugging less confusing.
2015-12-23 12:58:18 -05:00
Jake Worth
35e1908bb4
Fix typos in posts
2015-12-23 07:47:17 -05:00
John-David Dalton
f0a15b993c
Remove fast_finish in travis.yml.
2015-12-23 00:24:20 -06:00
Jim
4865ddf7ea
Merge pull request #5712 from dortonway/master
...
Fix misunderstanding in tutorial
2015-12-22 16:04:09 -08:00
dortonway
109c9a91e2
Fix misunderstanding in tutorial
2015-12-23 03:01:02 +03:00
Ben Alpert
bae0f19543
Merge pull request #5308 from spicyj/rep
...
Import ResponderEventPlugin changes from RN
2015-12-22 15:53:11 -08:00
Ben Alpert
bb11639e25
Import ResponderEventPlugin changes from RN
2015-12-22 15:45:51 -08:00
Paul O’Shannessy
89a0ef4ff9
Update badges to include coverage
...
Also switch to use a different badge provider for consistent styling
2015-12-22 15:41:28 -08:00
Paul O’Shannessy
85e646015d
Ensure build directory works when running jest:coverage on its own
2015-12-22 14:36:27 -08:00
Paul O’Shannessy
1d8b816496
Merge pull request #5711 from iamchenxin/docs122215
...
[docs] Update zh-docs with 7e2a7f0
2015-12-22 14:10:41 -08:00
Paul O’Shannessy
8fa1dfaa8c
Merge pull request #5713 from zpao/jest-coverage-followups
...
Followups to get test coverage reporting to coveralls
2015-12-22 14:07:13 -08:00
Paul O’Shannessy
39c24bf6a6
Addjust travis for jest coverage
2015-12-22 11:47:14 -08:00
Paul O’Shannessy
e68e17503e
Remove coverage options from package.json
...
They don't provide any value and since one of them isn't a valid config usage,
it blurs the line. Instead just store these pieces in the tasks and write them
to the temp config.
2015-12-22 11:14:44 -08:00
Paul O’Shannessy
f3dbc40261
Split jest task into two
...
This ensures that we don't make jest do the additional tracking it needs to make coverage work.
2015-12-22 10:25:34 -08:00
Paul O’Shannessy
bbef2958b2
Merge pull request #5707 from jdalton/coveralls
...
Add coveralls support.
2015-12-22 10:07:36 -08:00
Paul O’Shannessy
5b98152a3d
Merge pull request #5709 from zpao/youtubenocookie
...
[docs] fixup other broken youtube-nocookie uses
2015-12-22 10:00:47 -08:00
iamchenxin
a9a4c9d9d0
Update zh-docs with 7e2a7f0
2015-12-23 00:54:48 +08:00
John-David Dalton
9b0ef9244d
Add coveralls.
2015-12-22 06:48:33 -06:00
Paul O’Shannessy
82ed8fb0cd
[docs] fixup other broken youtube-nocookie uses
2015-12-22 00:54:04 -08:00
Jim
7e2a7f0ce6
Merge pull request #5706 from kchia/patch-3
...
Capitalizes first letter of first word in the Step 1 instruction
2015-12-21 17:26:10 -08:00
Jim
88ce0fc95f
Merge pull request #5708 from kchia/patch-4
...
Corrects grammatical errors in tutorial
2015-12-21 16:28:34 -08:00
Hou Chia
c465c2ab77
Corrects grammatical errors
2015-12-21 15:03:09 -08:00
Hou Chia
744b1175f3
Capitalizes first letter of first word in the Step 1 instruction
...
This proposed change makes the documentation formatting more consistent.
2015-12-21 14:51:10 -08:00
Dan Abramov
14d8593102
Fix a minor typo in Contributing
2015-12-21 21:23:07 +00:00
Dan Abramov
d872c25739
Fix the incorrect Jest watch command in Contributing
2015-12-21 21:07:20 +00:00
Paul O’Shannessy
ac20cb2d8c
Merge pull request #5705 from facebook/gaearon-patch-1
...
Mention how to run specific tests in Jest
2015-12-21 12:57:18 -08:00
Jim
9c57c30049
Merge pull request #5699 from jwworth/pull-request-1450702663
...
Fix typo (duplicate word)
2015-12-21 12:55:55 -08:00