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

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,13 @@
1
+ ## 19.0.10 (2026-07-07)
2
+
3
+ ### Reverts
4
+
5
+ * Revert "Beta ReactNativeConnect build: 18.0.36" ([609ad7d](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/commit/609ad7d3244ec06f27dced5864d40585c5b3c9cf))
6
+ ## 19.0.9 (2026-07-03)
7
+
8
+ ### Reverts
9
+
10
+ * Revert "Beta ReactNativeConnect build: 18.0.36" ([609ad7d](https://github.com/aipoweredmarketer/react-native-acoustic-connect-beta/commit/609ad7d3244ec06f27dced5864d40585c5b3c9cf))
1
11
  ## 19.0.8 (2026-07-03)
2
12
 
3
13
  ### Reverts
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "Connect": {
3
3
  "AndroidNotificationIconResName": "ic_notification",
4
- "AndroidVersion": "11.0.12-beta",
4
+ "AndroidVersion": "11.0.14-beta",
5
5
  "AppKey": "YOUR_CONNECT_APP_KEY_HERE",
6
6
  "KillSwitchUrl": "YOUR_KILL_SWITCH_URL_HERE",
7
7
  "PostMessageUrl": "YOUR_POST_MESSAGE_URL_HERE",
@@ -339,7 +339,21 @@ def updateGradle(mp, json){
339
339
  resolutionStrategy {
340
340
  componentSelection {
341
341
  all { selection ->
342
+ // Exempt the eocore artifact from beta rejection.
343
+ // Full Maven coordinate: io.github.go-acoustic:eocore
344
+ // (verified on Maven Central — the POM declares
345
+ // <groupId>io.github.go-acoustic</groupId> +
346
+ // <artifactId>eocore</artifactId>, so candidate.module is
347
+ // literally 'eocore').
348
+ // Unlike the other go-acoustic artifacts, eocore's RELEASE
349
+ // line carries a `-beta` suffix — Maven Central lists
350
+ // 2.1.24-beta as <release>/<latest>, and the release
351
+ // connect:11.0.13 → tealeaf:10.4.28 chain pins eocore
352
+ // transitively to that version. Without this carve-out the
353
+ // blanket `-beta` reject would drop a legitimate release
354
+ // artifact and break every useRelease=true build.
342
355
  if (selection.candidate.group == 'io.github.go-acoustic' &&
356
+ selection.candidate.module != 'eocore' &&
343
357
  selection.candidate.version.endsWith('-beta')) {
344
358
  selection.reject("useRelease is true — rejecting beta version ${selection.candidate.version}")
345
359
  }
@@ -24,7 +24,7 @@
24
24
  "IpPlaceholder": "N/A",
25
25
  "KillSwitchAsync": true,
26
26
  "KillSwitchDelay": 300,
27
- "LibraryVersion": "11.0.12-beta",
27
+ "LibraryVersion": "11.0.14-beta",
28
28
  "LogFullRequestResponsePayloads": true,
29
29
  "MessageTypeHeader": "WorklightHit",
30
30
  "MessageTypes": "4,5",
@@ -1,4 +1,4 @@
1
- #Fri Jul 03 03:03:02 PDT 2026
1
+ #Tue Jul 07 01:57:13 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.10",
233
233
  "workspaces": [
234
234
  "example",
235
235
  "Examples/bare-workflow"