Skip to content

Commit 586fa80

Browse files
authored
Merge branch '0.63-stable' into backport-native-module-reinit-fix
2 parents 811a5d6 + d89c1b0 commit 586fa80

File tree

7 files changed

+31
-7
lines changed

7 files changed

+31
-7
lines changed

packages/E2ETest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"prompt-sync": "^4.2.0",
2525
"react": "16.13.1",
2626
"react-native": "0.63.2",
27-
"react-native-windows": "0.63.3"
27+
"react-native-windows": "0.63.4"
2828
},
2929
"devDependencies": {
3030
"@babel/core": "^7.8.4",

packages/microsoft-reactnative-sampleapps/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"dependencies": {
1414
"react": "16.13.1",
1515
"react-native": "0.63.2",
16-
"react-native-windows": "0.63.3"
16+
"react-native-windows": "0.63.4"
1717
},
1818
"devDependencies": {
1919
"@babel/core": "^7.8.4",

packages/playground/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"dependencies": {
1313
"react": "16.13.1",
1414
"react-native": "0.63.2",
15-
"react-native-windows": "0.63.3"
15+
"react-native-windows": "0.63.4"
1616
},
1717
"devDependencies": {
1818
"@babel/core": "^7.8.4",

vnext/CHANGELOG.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
{
22
"name": "react-native-windows",
33
"entries": [
4+
{
5+
"date": "Mon, 05 Oct 2020 15:04:50 GMT",
6+
"tag": "react-native-windows_v0.63.4",
7+
"version": "0.63.4",
8+
"comments": {
9+
"patch": [
10+
{
11+
"comment": "Fix pre-1903 crash when loading certain images",
12+
"author": "email not defined",
13+
"commit": "976222751c7ea8486b8948c927935d1d9ee21277",
14+
"package": "react-native-windows"
15+
}
16+
]
17+
}
18+
},
419
{
520
"date": "Mon, 28 Sep 2020 15:04:34 GMT",
621
"tag": "react-native-windows_v0.63.3",

vnext/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# Change Log - react-native-windows
22

3-
This log was last generated on Mon, 21 Sep 2020 15:04:59 GMT and should not be manually modified.
3+
This log was last generated on Mon, 05 Oct 2020 15:04:50 GMT and should not be manually modified.
44

55
<!-- Start content -->
66

7+
## 0.63.4
8+
9+
Mon, 05 Oct 2020 15:04:50 GMT
10+
11+
### Patches
12+
13+
- Fix pre-1903 crash when loading certain images (email not defined)
14+
715
## 0.63.3
816

917
Mon, 21 Sep 2020 15:04:59 GMT

vnext/Microsoft.ReactNative/Views/Image/ReactImage.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -248,9 +248,10 @@ winrt::fire_and_forget ReactImage::SetBackground(bool fireLoadEndEvent) {
248248

249249
// If we are dynamically switching the resizeMode to 'repeat', then
250250
// the SizeChanged event has already fired and the ReactImageBrush's
251-
// size has not been set. Use ActualSize in that case.
251+
// size has not been set. Use ActualWidth/Height in that case.
252252
if (compositionBrush->AvailableSize() == winrt::Size{0, 0}) {
253-
compositionBrush->AvailableSize(strong_this->ActualSize());
253+
compositionBrush->AvailableSize({static_cast<float>(strong_this->ActualWidth()),
254+
static_cast<float>(strong_this->ActualHeight())});
254255
}
255256

256257
compositionBrush->Source(surface);

vnext/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-windows",
3-
"version": "0.63.3",
3+
"version": "0.63.4",
44
"license": "MIT",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)