react-native 0.71.7 → 0.71.8

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.
@@ -12,6 +12,6 @@
12
12
  exports.version = {
13
13
  major: 0,
14
14
  minor: 71,
15
- patch: 7,
15
+ patch: 8,
16
16
  prerelease: null,
17
17
  };
@@ -256,21 +256,21 @@ static void *TextFieldSelectionObservingContext = &TextFieldSelectionObservingCo
256
256
 
257
257
  - (void)textViewDidChange:(__unused UITextView *)textView
258
258
  {
259
- if (_ignoreNextTextInputCall && [_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
259
+ if (_ignoreNextTextInputCall) {
260
260
  _ignoreNextTextInputCall = NO;
261
261
  return;
262
262
  }
263
- _lastStringStateWasUpdatedWith = _backedTextInputView.attributedText;
264
263
  _textDidChangeIsComing = NO;
265
264
  [_backedTextInputView.textInputDelegate textInputDidChange];
266
265
  }
267
266
 
268
267
  - (void)textViewDidChangeSelection:(__unused UITextView *)textView
269
268
  {
270
- if (![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
269
+ if (_lastStringStateWasUpdatedWith && ![_lastStringStateWasUpdatedWith isEqual:_backedTextInputView.attributedText]) {
271
270
  [self textViewDidChange:_backedTextInputView];
272
271
  _ignoreNextTextInputCall = YES;
273
272
  }
273
+ _lastStringStateWasUpdatedWith = _backedTextInputView.attributedText;
274
274
  [self textViewProbablyDidChangeSelection];
275
275
  }
276
276
 
@@ -23,7 +23,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
23
23
  __rnVersion = @{
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(71),
26
- RCTVersionPatch: @(7),
26
+ RCTVersionPatch: @(8),
27
27
  RCTVersionPrerelease: [NSNull null],
28
28
  };
29
29
  });
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.71.7
1
+ VERSION_NAME=0.71.8
2
2
  GROUP=com.facebook.react
3
3
 
4
4
  # JVM Versions
@@ -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", 71,
20
- "patch", 7,
20
+ "patch", 8,
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 = 71;
20
- int32_t Patch = 7;
20
+ int32_t Patch = 8;
21
21
  std::string_view Prerelease = "";
22
22
  } ReactNativeVersion;
23
23
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native",
3
- "version": "0.71.7",
3
+ "version": "0.71.8",
4
4
  "bin": "./cli.js",
5
5
  "description": "A framework for building native apps using React",
6
6
  "license": "MIT",
@@ -133,7 +133,7 @@
133
133
  "pretty-format": "^26.5.2",
134
134
  "promise": "^8.3.0",
135
135
  "react-devtools-core": "^4.26.1",
136
- "react-native-gradle-plugin": "^0.71.17",
136
+ "react-native-gradle-plugin": "^0.71.18",
137
137
  "react-refresh": "^0.4.0",
138
138
  "react-shallow-renderer": "^16.15.0",
139
139
  "regenerator-runtime": "^0.13.2",
Binary file
Binary file
Binary file
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "18.2.0",
14
- "react-native": "0.71.7"
14
+ "react-native": "0.71.8"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.20.0",