Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
294d95a
[0.54.0-rc.0] Bump version numbers
grabbou Feb 12, 2018
b58d848
Fix CI publish step
grabbou Feb 12, 2018
829f675
[0.54.0-rc.2] Bump version numbers
grabbou Feb 12, 2018
49e35bd
[0.54.0-rc.0] Bump version numbers
hramos Feb 12, 2018
2c5fbd7
Uses a single code path to link and unlink all platforms
rozele Feb 13, 2018
03d7b2a
Bump React dependency
grabbou Feb 13, 2018
21dd3dd
[0.54.0-rc.3] Bump version numbers
grabbou Feb 13, 2018
675f142
Bundle download progress on Android
janicduplessis Feb 14, 2018
4194bb2
Fix #17610, Add fixtures to metro blacklist
t4deu Feb 17, 2018
f4fde9d
Bump [email protected]
rafeca Feb 13, 2018
0f96ebd
Bump Metro version to fix issue for npm users
grabbou Feb 27, 2018
67e67ec
[0.54.0-rc.4] Bump version numbers
grabbou Feb 27, 2018
53c1a4c
Fix crashes onKeyPress Android
joshjhargreaves Feb 27, 2018
815a07c
[0.54.0] Bump version numbers
grabbou Mar 1, 2018
2f84463
Update ReactFeatureFlags.js
grabbou Mar 7, 2018
2d57335
[0.54.1] Bump version numbers
grabbou Mar 9, 2018
8bdd98e
Fix HmrClient path
grabbou Mar 9, 2018
ac55ffd
Revert "Fix HmrClient path"
grabbou Mar 12, 2018
8e03ced
Fixing bugs in link and unlink
rozele Mar 7, 2018
48f29a7
Make the chrome debugger handle dynamic delta ids
rafeca Mar 2, 2018
9a3cad4
[0.54.2] Bump version numbers
grabbou Mar 12, 2018
387e1c4
check for GET and Head in send request
samsafay Mar 7, 2018
d9bd9d5
React sync for revisions 467b103...a634e53
Feb 12, 2018
ec542f4
React sync for revisions a634e53...ab4280b
hramos Mar 1, 2018
17e0066
React sync for revisions ab4280b...ad9544f
hramos Mar 14, 2018
5c00de7
Fixed problem in Text measurent on iOS
shergin Feb 25, 2018
863a49f
While linking plugin ask for params only once
Mar 20, 2018
69c2770
[0.54.3] Bump version numbers
grabbou Mar 23, 2018
7e4cd53
fix ReadableNativeMap.toHashMap() for nested maps and arrays
esamelson Mar 22, 2018
0ba6ed8
Fix blob response parsing for empty body on iOS
janicduplessis Mar 27, 2018
56a2d6d
[0.54.4] Bump version numbers
grabbou Mar 28, 2018
56f8c58
Update RCTSRWebSocket.m
chancehudson Aug 12, 2018
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -383,6 +383,9 @@ jobs:
publish_npm_package:
<<: *android_defaults
steps:
# Checkout code so that we can work with `git` in publish.js
- checkout

- attach_workspace:
at: ~/react-native

Expand Down Expand Up @@ -606,6 +609,7 @@ workflows:
- approve_publish_npm_package:
filters: *filter-only-stable
type: approval

- publish_npm_package:
requires:
- checkout_code
Expand Down
3 changes: 3 additions & 0 deletions Libraries/Blob/RCTBlobManager.mm
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,9 @@ - (BOOL)canHandleNetworkingResponse:(NSString *)responseType

- (id)handleNetworkingResponse:(NSURLResponse *)response data:(NSData *)data
{
// An empty body will have nil for data, in this case we need to return
// an empty blob as per the XMLHttpRequest spec.
data = data ?: [NSData new];
return @{
@"blobId": [self store:data],
@"offset": @0,
Expand Down
4 changes: 2 additions & 2 deletions Libraries/Core/ReactNativeVersion.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

exports.version = {
major: 0,
minor: 0,
patch: 0,
minor: 54,
patch: 4,
prerelease: null,
};
8 changes: 4 additions & 4 deletions Libraries/Network/RCTNetworking.mm
Original file line number Diff line number Diff line change
Expand Up @@ -441,10 +441,6 @@ - (void)sendData:(NSData *)data
{
RCTAssertThread(_methodQueue, @"sendData: must be called on method queue");

if (data.length == 0) {
return;
}

id responseData = nil;
for (id<RCTNetworkingResponseHandler> handler in _responseHandlers) {
if ([handler canHandleNetworkingResponse:responseType]) {
Expand All @@ -454,6 +450,10 @@ - (void)sendData:(NSData *)data
}

if (!responseData) {
if (data.length == 0) {
return;
}

if ([responseType isEqualToString:@"text"]) {
// No carry storage is required here because the entire data has been loaded.
responseData = [RCTNetworking decodeTextData:data fromResponse:task.response withCarryData:nil];
Expand Down
2 changes: 1 addition & 1 deletion Libraries/Renderer/REVISION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
467b1034ce8af6807e11deb9dfeca4d4e922ed82
ad9544f48e58f2599a8ea0de1e9f4dd104db30bb
Loading