react-native-acoustic-connect-beta 19.0.8 → 19.0.9

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.
@@ -48,13 +48,17 @@ iOSVersion = connectConfig["Connect"]["iOSVersion"]
48
48
  # 2.1.12 floor: `ConnectSDK.shared.push.requestAuthorization()` and
49
49
  # `getCurrentAuthorization()` land in 2.1.12. The push permission
50
50
  # bridge methods call them directly, so an older pod would fail to compile.
51
- sdkFloor = '>= 2.1.12'
51
+ # 2.1.13 floor: carries a vital fix for automatic push mode (the
52
+ # `ConnectDelegateProxy`-swizzled `UNUserNotificationCenter` delegate path
53
+ # the bridge relies on in `pushMode: 'automatic'`). 2.1.12 and older mis-wire
54
+ # that path, so the floor is raised to guarantee the fix is present.
55
+ sdkFloor = '>= 2.1.13'
52
56
  dependencyRequirements = iOSVersion.to_s.empty? ? [sdkFloor] : [sdkFloor, iOSVersion]
53
57
 
54
58
  # Normalize Connect.PushEnabled to a STRICT boolean before writing the native
55
59
  # config bundle. A nil/absent value otherwise serializes as JSON `null`, and the
56
60
  # iOS SDK then initializes push-off (ConnectSDK.shared.push == nil) — silently
57
- # breaking push on the very first build (CA-144135 §7). Coercing here guarantees
61
+ # breaking push on the very first build. Coercing here guarantees
58
62
  # the bundle never ships `null`; the native lenient parser defends the runtime
59
63
  # path, but this prevents shipping a non-boolean value in the first place.
60
64
  #
package/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## 19.0.9 (2026-07-03)
2
+
3
+ ### Reverts
4
+
5
+ * Revert "Beta ReactNativeConnect build: 18.0.36" ([609ad7d](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/commit/609ad7d3244ec06f27dced5864d40585c5b3c9cf))
1
6
  ## 19.0.8 (2026-07-03)
2
7
 
3
8
  ### Reverts
@@ -1,4 +1,4 @@
1
- #Fri Jul 03 03:03:02 PDT 2026
1
+ #Fri Jul 03 04:49:41 PDT 2026
2
2
  UseWhiteList=true
3
3
  PrintScreen=3
4
4
  UseRandomSample=false
@@ -7,7 +7,7 @@
7
7
  # app target and the push extensions (ConnectNSE / ConnectNCE) all link the SAME
8
8
  # SDK build:
9
9
  # - useRelease => 'AcousticConnect', otherwise 'AcousticConnectDebug'
10
- # - floor '>= 2.1.12' (the push permission API floor)
10
+ # - floor '>= 2.1.13' (push permission API + automatic-mode fix floor)
11
11
  # - optional exact pin via Connect.iOSVersion
12
12
  #
13
13
  # Usage from a Podfile (resolve the file the same way the RN template resolves
@@ -42,7 +42,7 @@ def acoustic_connect_pod(podfile_dir, config_path: nil)
42
42
  use_release = connect_config['useRelease']
43
43
  ios_version = connect_config['iOSVersion'].to_s
44
44
  name = use_release ? 'AcousticConnect' : 'AcousticConnectDebug'
45
- floor = '>= 2.1.12'
45
+ floor = '>= 2.1.13'
46
46
  requirements = ios_version.empty? ? [floor] : [floor, ios_version]
47
47
  [name, requirements]
48
48
  end
package/package.json CHANGED
@@ -229,7 +229,7 @@
229
229
  "source": "src/index",
230
230
  "summary": "react-native ios android tealeaf connect cxa wxca er enhanced-replay",
231
231
  "types": "./lib/typescript/src/index.d.ts",
232
- "version": "19.0.8",
232
+ "version": "19.0.9",
233
233
  "workspaces": [
234
234
  "example",
235
235
  "Examples/bare-workflow"