react-native 0.67.3 → 0.67.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (42) hide show
  1. package/Libraries/Components/Switch/Switch.js +2 -1
  2. package/Libraries/Core/ReactNativeVersion.js +1 -1
  3. package/React/Base/RCTVersion.m +1 -1
  4. package/ReactAndroid/gradle.properties +1 -1
  5. package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +1 -1
  6. package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
  7. package/android/com/facebook/react/react-native/{0.67.3/react-native-0.67.3.aar → 0.67.5/react-native-0.67.5.aar} +0 -0
  8. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.aar.md5 +1 -0
  9. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.aar.sha1 +1 -0
  10. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.aar.sha256 +1 -0
  11. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.aar.sha512 +1 -0
  12. package/android/com/facebook/react/react-native/{0.67.3/react-native-0.67.3.module → 0.67.5/react-native-0.67.5.module} +15 -15
  13. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.module.md5 +1 -0
  14. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.module.sha1 +1 -0
  15. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.module.sha256 +1 -0
  16. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.module.sha512 +1 -0
  17. package/android/com/facebook/react/react-native/{0.67.3/react-native-0.67.3.pom → 0.67.5/react-native-0.67.5.pom} +1 -1
  18. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.pom.md5 +1 -0
  19. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.pom.sha1 +1 -0
  20. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.pom.sha256 +1 -0
  21. package/android/com/facebook/react/react-native/0.67.5/react-native-0.67.5.pom.sha512 +1 -0
  22. package/android/com/facebook/react/react-native/maven-metadata.xml +4 -4
  23. package/android/com/facebook/react/react-native/maven-metadata.xml.md5 +1 -1
  24. package/android/com/facebook/react/react-native/maven-metadata.xml.sha1 +1 -1
  25. package/android/com/facebook/react/react-native/maven-metadata.xml.sha256 +1 -1
  26. package/android/com/facebook/react/react-native/maven-metadata.xml.sha512 +1 -1
  27. package/package.json +1 -1
  28. package/react.gradle +14 -0
  29. package/template/Gemfile.lock +16 -16
  30. package/template/package.json +1 -1
  31. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.aar.md5 +0 -1
  32. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.aar.sha1 +0 -1
  33. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.aar.sha256 +0 -1
  34. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.aar.sha512 +0 -1
  35. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.module.md5 +0 -1
  36. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.module.sha1 +0 -1
  37. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.module.sha256 +0 -1
  38. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.module.sha512 +0 -1
  39. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.pom.md5 +0 -1
  40. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.pom.sha1 +0 -1
  41. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.pom.sha256 +0 -1
  42. package/android/com/facebook/react/react-native/0.67.3/react-native-0.67.3.pom.sha512 +0 -1
@@ -170,7 +170,8 @@ const SwitchWithForwardedRef: React.AbstractComponent<
170
170
  // that the update should be ignored and we should stick with the value
171
171
  // that we have in JS.
172
172
  const jsValue = value === true;
173
- const shouldUpdateNativeSwitch = native.value !== jsValue;
173
+ const shouldUpdateNativeSwitch =
174
+ native.value != null && native.value !== jsValue;
174
175
  if (
175
176
  shouldUpdateNativeSwitch &&
176
177
  nativeSwitchRef.current?.setNativeProps != null
@@ -12,6 +12,6 @@
12
12
  exports.version = {
13
13
  major: 0,
14
14
  minor: 67,
15
- patch: 3,
15
+ patch: 5,
16
16
  prerelease: null,
17
17
  };
@@ -23,7 +23,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(67),
26
- RCTVersionPatch: @(3),
26
+ RCTVersionPatch: @(5),
27
27
  RCTVersionPrerelease: [NSNull null],
28
28
  };
29
29
  });
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.67.3
1
+ VERSION_NAME=0.67.5
2
2
  GROUP=com.facebook.react
3
3
 
4
4
  POM_NAME=ReactNative
@@ -17,6 +17,6 @@ public class ReactNativeVersion {
17
17
  public static final Map<String, Object> VERSION = MapBuilder.<String, Object>of(
18
18
  "major", 0,
19
19
  "minor", 67,
20
- "patch", 3,
20
+ "patch", 5,
21
21
  "prerelease", null);
22
22
  }
@@ -17,7 +17,7 @@ namespace facebook::react {
17
17
  constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 67;
20
- int32_t Patch = 3;
20
+ int32_t Patch = 5;
21
21
  std::string_view Prerelease = "";
22
22
  } ReactNativeVersion;
23
23
 
@@ -0,0 +1 @@
1
+ 53f3a352a9c7ca3ddc53e6d99cc68ee2
@@ -0,0 +1 @@
1
+ e4bb189b9eafe066f64eebdc9a1fe672b801330c
@@ -0,0 +1 @@
1
+ 36cf587b0893e02b3e1029b1e82b895baa9945f7d51f271f1098a9e6d37b4cbb
@@ -0,0 +1 @@
1
+ 98a3d8554cb5a29ab1899bf895b8f01efc441526c78332ca16b206443f4a47573b99b8ae61437fdeebf71af6324f65903c4f46d2acd77a4a55edfd6ee8efb172
@@ -3,7 +3,7 @@
3
3
  "component": {
4
4
  "group": "com.facebook.react",
5
5
  "module": "react-native",
6
- "version": "0.67.3",
6
+ "version": "0.67.5",
7
7
  "attributes": {
8
8
  "org.gradle.status": "release"
9
9
  }
@@ -131,13 +131,13 @@
131
131
  ],
132
132
  "files": [
133
133
  {
134
- "name": "react-native-0.67.3.aar",
135
- "url": "react-native-0.67.3.aar",
136
- "size": 17805015,
137
- "sha512": "79e1b4b07d84db9c9dc6cbc27048525a56be3429179ee24618569b02e56a99420174fb180bd16598997f8e8108d53a30dea2fb907fb1bbb87fb769432d7b7108",
138
- "sha256": "999db0c7049827dd43a616c0a1943d7228433be4c1595e91b730fed79c3e985a",
139
- "sha1": "29574ca71fbf9cee70dbbb8d67885676dcb94792",
140
- "md5": "5232630d5945801200b343b59fef4024"
134
+ "name": "react-native-0.67.5.aar",
135
+ "url": "react-native-0.67.5.aar",
136
+ "size": 17805019,
137
+ "sha512": "98a3d8554cb5a29ab1899bf895b8f01efc441526c78332ca16b206443f4a47573b99b8ae61437fdeebf71af6324f65903c4f46d2acd77a4a55edfd6ee8efb172",
138
+ "sha256": "36cf587b0893e02b3e1029b1e82b895baa9945f7d51f271f1098a9e6d37b4cbb",
139
+ "sha1": "e4bb189b9eafe066f64eebdc9a1fe672b801330c",
140
+ "md5": "53f3a352a9c7ca3ddc53e6d99cc68ee2"
141
141
  }
142
142
  ]
143
143
  },
@@ -258,13 +258,13 @@
258
258
  ],
259
259
  "files": [
260
260
  {
261
- "name": "react-native-0.67.3.aar",
262
- "url": "react-native-0.67.3.aar",
263
- "size": 17805015,
264
- "sha512": "79e1b4b07d84db9c9dc6cbc27048525a56be3429179ee24618569b02e56a99420174fb180bd16598997f8e8108d53a30dea2fb907fb1bbb87fb769432d7b7108",
265
- "sha256": "999db0c7049827dd43a616c0a1943d7228433be4c1595e91b730fed79c3e985a",
266
- "sha1": "29574ca71fbf9cee70dbbb8d67885676dcb94792",
267
- "md5": "5232630d5945801200b343b59fef4024"
261
+ "name": "react-native-0.67.5.aar",
262
+ "url": "react-native-0.67.5.aar",
263
+ "size": 17805019,
264
+ "sha512": "98a3d8554cb5a29ab1899bf895b8f01efc441526c78332ca16b206443f4a47573b99b8ae61437fdeebf71af6324f65903c4f46d2acd77a4a55edfd6ee8efb172",
265
+ "sha256": "36cf587b0893e02b3e1029b1e82b895baa9945f7d51f271f1098a9e6d37b4cbb",
266
+ "sha1": "e4bb189b9eafe066f64eebdc9a1fe672b801330c",
267
+ "md5": "53f3a352a9c7ca3ddc53e6d99cc68ee2"
268
268
  }
269
269
  ]
270
270
  }
@@ -0,0 +1 @@
1
+ 9229e5cfa484a26511e9909ed916d2f7
@@ -0,0 +1 @@
1
+ b74854dd30218fdbc7f7b62b44a6effa529786b6
@@ -0,0 +1 @@
1
+ e199af60b0f37dc185a375cdf92b66531ab8c4005592245329b8542e04cc7a96
@@ -0,0 +1 @@
1
+ e8757be87c7e94d58a9e1028b1f8d368f9278030bf7351bbb5aa326857eb31e983376fdf15c44fb5499c741e80a8c26137299636718033ee75bc06975d818382
@@ -9,7 +9,7 @@
9
9
  <modelVersion>4.0.0</modelVersion>
10
10
  <groupId>com.facebook.react</groupId>
11
11
  <artifactId>react-native</artifactId>
12
- <version>0.67.3</version>
12
+ <version>0.67.5</version>
13
13
  <packaging>aar</packaging>
14
14
  <name>ReactNative</name>
15
15
  <description>A framework for building native apps with React</description>
@@ -0,0 +1 @@
1
+ 58aba97c7ee8da14b22bb308e0d48ca6
@@ -0,0 +1 @@
1
+ 663125358298b822f61849f5980f5d17ebc3f8e9
@@ -0,0 +1 @@
1
+ d7366f8553f42da0b000e72ce5dd2e4deb1bd1ee0ce4a14efa8c55d99086fba1
@@ -0,0 +1 @@
1
+ 5bc85e13c7d168702da53523cc12cd7b7d7c57c779e934880410b367b69f9206c1a594d0b0d8d3999d53c4abd486789dcabf020910af84461539624f8965487a
@@ -3,11 +3,11 @@
3
3
  <groupId>com.facebook.react</groupId>
4
4
  <artifactId>react-native</artifactId>
5
5
  <versioning>
6
- <latest>0.67.3</latest>
7
- <release>0.67.3</release>
6
+ <latest>0.67.5</latest>
7
+ <release>0.67.5</release>
8
8
  <versions>
9
- <version>0.67.3</version>
9
+ <version>0.67.5</version>
10
10
  </versions>
11
- <lastUpdated>20220222144631</lastUpdated>
11
+ <lastUpdated>20221106210050</lastUpdated>
12
12
  </versioning>
13
13
  </metadata>
@@ -1 +1 @@
1
- 203c52a2411919050e759d94b99cee1a
1
+ 69ff243b382de927e644a91094b594cd
@@ -1 +1 @@
1
- 1626abfd87820d47a339f6a847c33002b7d36ef1
1
+ f05adfad1cae9578961caac6bbdae6c5f277dbe1
@@ -1 +1 @@
1
- f380fa82a13a3482ca40b2d0a754018c7f5af9546033517369f5e63a4e956a93
1
+ 569e210bc6b193ad7d99a0a17c6ca2f5d5fe2b375b07fcab926176556a513dcc
@@ -1 +1 @@
1
- 27e52d6a69de2bf48895ebb89b5cca7cec72b2b3f548a09f5a115f5a51c12f60d8a41f8f0d75fce66185886f0c4dc4629cb826b878254d11503db71ed6daee97
1
+ b6ac82bdded2b6dc992bf152dd31c736cf104f4cfcc1740431123bf6116d1147b6eb291df2386442946fc510781f6d83a1d68ef279f5daff773d4a114693759a
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.67.3",
3
+ "version": "0.67.5",
4
4
  "bin": "./cli.js",
5
5
  "description": "A framework for building native apps using React",
6
6
  "license": "MIT",
package/react.gradle CHANGED
@@ -394,3 +394,17 @@ afterEvaluate {
394
394
  }
395
395
  }
396
396
  }
397
+
398
+ // Patch needed for https://github.com/facebook/react-native/issues/35210
399
+ // This is a patch to short-circuit the "+" dependencies inside the
400
+ // users' app/build.gradle file and the various .gradle files of libraries.
401
+ // As using plain "+" dependencies causes Gradle to always download the latest,
402
+ // this logic forces Gradle to use latest release in the minor series.
403
+ project.rootProject.allprojects {
404
+ configurations.all {
405
+ resolutionStrategy {
406
+ force "com.facebook.react:react-native:0.67.+"
407
+ force "com.facebook.react:hermes-engine:0.67.+"
408
+ }
409
+ }
410
+ }
@@ -3,23 +3,23 @@ GEM
3
3
  specs:
4
4
  CFPropertyList (3.0.5)
5
5
  rexml
6
- activesupport (6.1.4.6)
6
+ activesupport (6.1.7)
7
7
  concurrent-ruby (~> 1.0, >= 1.0.2)
8
8
  i18n (>= 1.6, < 2)
9
9
  minitest (>= 5.1)
10
10
  tzinfo (~> 2.0)
11
11
  zeitwerk (~> 2.3)
12
- addressable (2.8.0)
13
- public_suffix (>= 2.0.2, < 5.0)
12
+ addressable (2.8.1)
13
+ public_suffix (>= 2.0.2, < 6.0)
14
14
  algoliasearch (1.27.5)
15
15
  httpclient (~> 2.8, >= 2.8.3)
16
16
  json (>= 1.5.1)
17
17
  atomos (0.1.3)
18
18
  claide (1.1.0)
19
- cocoapods (1.11.2)
19
+ cocoapods (1.11.3)
20
20
  addressable (~> 2.8)
21
21
  claide (>= 1.0.2, < 2.0)
22
- cocoapods-core (= 1.11.2)
22
+ cocoapods-core (= 1.11.3)
23
23
  cocoapods-deintegrate (>= 1.0.3, < 2.0)
24
24
  cocoapods-downloader (>= 1.4.0, < 2.0)
25
25
  cocoapods-plugins (>= 1.0.0, < 2.0)
@@ -34,7 +34,7 @@ GEM
34
34
  nap (~> 1.0)
35
35
  ruby-macho (>= 1.0, < 3.0)
36
36
  xcodeproj (>= 1.21.0, < 2.0)
37
- cocoapods-core (1.11.2)
37
+ cocoapods-core (1.11.3)
38
38
  activesupport (>= 5.0, < 7)
39
39
  addressable (~> 2.8)
40
40
  algoliasearch (~> 1.0)
@@ -45,7 +45,7 @@ GEM
45
45
  public_suffix (~> 4.0)
46
46
  typhoeus (~> 1.0)
47
47
  cocoapods-deintegrate (1.0.5)
48
- cocoapods-downloader (1.5.1)
48
+ cocoapods-downloader (1.6.3)
49
49
  cocoapods-plugins (1.0.0)
50
50
  nap
51
51
  cocoapods-search (1.0.1)
@@ -54,38 +54,38 @@ GEM
54
54
  netrc (~> 0.11)
55
55
  cocoapods-try (1.2.0)
56
56
  colored2 (3.1.2)
57
- concurrent-ruby (1.1.9)
57
+ concurrent-ruby (1.1.10)
58
58
  escape (0.0.4)
59
- ethon (0.15.0)
59
+ ethon (0.16.0)
60
60
  ffi (>= 1.15.0)
61
61
  ffi (1.15.5)
62
62
  fourflusher (2.3.1)
63
63
  fuzzy_match (2.0.4)
64
64
  gh_inspector (1.1.3)
65
65
  httpclient (2.8.3)
66
- i18n (1.10.0)
66
+ i18n (1.12.0)
67
67
  concurrent-ruby (~> 1.0)
68
- json (2.6.1)
69
- minitest (5.15.0)
68
+ json (2.6.2)
69
+ minitest (5.16.3)
70
70
  molinillo (0.8.0)
71
71
  nanaimo (0.3.0)
72
72
  nap (1.1.0)
73
73
  netrc (0.11.0)
74
- public_suffix (4.0.6)
74
+ public_suffix (4.0.7)
75
75
  rexml (3.2.5)
76
76
  ruby-macho (2.5.1)
77
77
  typhoeus (1.4.0)
78
78
  ethon (>= 0.9.0)
79
- tzinfo (2.0.4)
79
+ tzinfo (2.0.5)
80
80
  concurrent-ruby (~> 1.0)
81
- xcodeproj (1.21.0)
81
+ xcodeproj (1.22.0)
82
82
  CFPropertyList (>= 2.3.3, < 4.0)
83
83
  atomos (~> 0.1.3)
84
84
  claide (>= 1.0.2, < 2.0)
85
85
  colored2 (~> 3.1)
86
86
  nanaimo (~> 0.3.0)
87
87
  rexml (~> 3.2.4)
88
- zeitwerk (2.5.4)
88
+ zeitwerk (2.6.5)
89
89
 
90
90
  PLATFORMS
91
91
  ruby
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "17.0.2",
14
- "react-native": "0.67.3"
14
+ "react-native": "0.67.5"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.12.9",
@@ -1 +0,0 @@
1
- 5232630d5945801200b343b59fef4024
@@ -1 +0,0 @@
1
- 29574ca71fbf9cee70dbbb8d67885676dcb94792
@@ -1 +0,0 @@
1
- 999db0c7049827dd43a616c0a1943d7228433be4c1595e91b730fed79c3e985a
@@ -1 +0,0 @@
1
- 79e1b4b07d84db9c9dc6cbc27048525a56be3429179ee24618569b02e56a99420174fb180bd16598997f8e8108d53a30dea2fb907fb1bbb87fb769432d7b7108
@@ -1 +0,0 @@
1
- f3952c0dbfccd44dabd4f21619f68f2e
@@ -1 +0,0 @@
1
- 76805028ae7dbafda72faebb7edaead586671f9b
@@ -1 +0,0 @@
1
- 5b9b58a4a6d744c7c2ed89b01b602cb18df410dcd488d64c17cc704616d9d268
@@ -1 +0,0 @@
1
- 18ac25ac01903f6f97265d107d64330a27977145bebf2ea16161a87cca6412fef3e0011855df143f89b270ee15c5a637fbe10a9bb713320b20a13b1134afacf3
@@ -1 +0,0 @@
1
- d16e2872c011f3f8261750c64ad33ab3
@@ -1 +0,0 @@
1
- f6767caa63e55ba8bda13c0b59f74b09f0dc46d6
@@ -1 +0,0 @@
1
- 08fc890edae725b55d242dfbf759f86bb827cadf02633c523e906f9cfc01316e
@@ -1 +0,0 @@
1
- 08859a766074c650bdfa36f1c80583e7b851be4208bb2a3c53cc97d7bfb708f9bda94750ab4966cc31ae04654ec85b98a0c4d6779927ecc206031dd4ed1473e4