unified-ble-manager 4.0.12 → 4.0.13

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 (45) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/MIGRATION_4.0.md +1 -1
  3. package/README.md +1 -1
  4. package/RELEASE.md +22 -1
  5. package/SBOM.cdx.json +4 -4
  6. package/THIRD_PARTY_LICENSES.json +1 -1
  7. package/android/src/main/java/com/sfourdrinier/unifiedblemanager/protocol/generated/NativeProtocolV2Schema.kt +1 -1
  8. package/docs/ELECTRON.md +1 -1
  9. package/docs/EXPO_PLUGIN.md +1 -1
  10. package/docs/GAPS.4.0.md +1 -1
  11. package/docs/GETTING_STARTED.md +3 -3
  12. package/docs/NODE.md +1 -1
  13. package/docs/WEB.md +1 -1
  14. package/docs/generated/PLATFORM_SUPPORT.md +1 -1
  15. package/ios/Generated/NativeProtocolV2Schema.swift +1 -1
  16. package/lib/commonjs/implementation-version.js +1 -1
  17. package/lib/commonjs/native-protocol/generated/native-protocol-v2-schema.js +1 -1
  18. package/lib/module/implementation-version.js +1 -1
  19. package/lib/module/native-protocol/generated/native-protocol-v2-schema.js +1 -1
  20. package/lib/typescript/commonjs/src/backends/bluez/bluez-backend-provider.d.ts +1 -1
  21. package/lib/typescript/commonjs/src/backends/corebluetooth/corebluetooth-identity.d.ts +1 -1
  22. package/lib/typescript/commonjs/src/backends/reactnative/react-native-android-provider.d.ts +1 -1
  23. package/lib/typescript/commonjs/src/backends/reactnative/react-native-apple-provider.d.ts +1 -1
  24. package/lib/typescript/commonjs/src/backends/winrt/winrt-provider.d.ts +1 -1
  25. package/lib/typescript/commonjs/src/implementation-version.d.ts +1 -1
  26. package/lib/typescript/commonjs/src/native-protocol/generated/native-protocol-v2-schema.d.ts +1 -1
  27. package/lib/typescript/module/src/backends/bluez/bluez-backend-provider.d.ts +1 -1
  28. package/lib/typescript/module/src/backends/corebluetooth/corebluetooth-identity.d.ts +1 -1
  29. package/lib/typescript/module/src/backends/reactnative/react-native-android-provider.d.ts +1 -1
  30. package/lib/typescript/module/src/backends/reactnative/react-native-apple-provider.d.ts +1 -1
  31. package/lib/typescript/module/src/backends/winrt/winrt-provider.d.ts +1 -1
  32. package/lib/typescript/module/src/implementation-version.d.ts +1 -1
  33. package/lib/typescript/module/src/native-protocol/generated/native-protocol-v2-schema.d.ts +1 -1
  34. package/native/PREBUILDS.json +5 -5
  35. package/native/electron/corebluetooth/prebuilds/darwin-arm64/unified_ble_corebluetooth.node +0 -0
  36. package/native/electron/corebluetooth/prebuilds/darwin-x64/unified_ble_corebluetooth.node +0 -0
  37. package/native/electron/winrt/prebuilds/win32-arm64/unified_ble_winrt.node +0 -0
  38. package/native/electron/winrt/prebuilds/win32-x64/unified_ble_winrt.node +0 -0
  39. package/native/protocol/generated/NativeProtocolV2Schema.hpp +1 -1
  40. package/native/protocol/schema/native-protocol-v2-abi.json +1 -1
  41. package/native/protocol/schema/native-protocol-v2.json +1 -1
  42. package/native/protocol/src/NativeProtocolV2Codec.cpp +3 -1
  43. package/package.json +1 -1
  44. package/src/implementation-version.ts +1 -1
  45. package/src/native-protocol/generated/native-protocol-v2-schema.ts +1 -1
package/CHANGELOG.md CHANGED
@@ -6,6 +6,17 @@ All notable changes to `unified-ble-manager` are documented here.
6
6
 
7
7
  No changes yet.
8
8
 
9
+ ## [4.0.13] - 2026-09-01
10
+
11
+ ### Fixes
12
+
13
+ - Accept the versioned notification-delivery field on native `subscribe`
14
+ commands while continuing to reject it on `unsubscribe`. This fixes Android
15
+ notification setup failing before CCCD dispatch in 4.0.12.
16
+ - Advance the Native Protocol ABI to 7 so JavaScript built for delivery-mode
17
+ commands rejects an older native binary during handshake instead of failing
18
+ later during the first subscription.
19
+
9
20
  ## [4.0.12] - 2026-08-31
10
21
 
11
22
  ### Fixes
package/MIGRATION_4.0.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # Migrating from react-native-ble-plx
4
4
 
5
- This source targets `4.0.12`. The `4.0.0` release is a new package and a new contract. It is **not a source-compatible rename**. There is no `new BleManager()` facade, no Base64 characteristic values, and no public transaction IDs.
5
+ This source targets `4.0.13`. The `4.0.0` release is a new package and a new contract. It is **not a source-compatible rename**. There is no `new BleManager()` facade, no Base64 characteristic values, and no public transaction IDs.
6
6
 
7
7
  This page is for a React Native app that already uses `react-native-ble-plx`. Web, Electron, Node, and Tauri are new hosts — use those pages after you understand the RN rewrite.
8
8
 
package/README.md CHANGED
@@ -18,7 +18,7 @@ root import does not pick a radio. Package SemVer and backend support labels are
18
18
  independent: each radio backend keeps its evidence-derived label. See
19
19
  [`docs/PLATFORMS.md`](docs/PLATFORMS.md).
20
20
 
21
- This source tree is versioned `4.0.12`. Install the exact version shown in the npm
21
+ This source tree is versioned `4.0.13`. Install the exact version shown in the npm
22
22
  registry. During release preparation, the version in `package.json` can be ahead
23
23
  of npm until the matching tag-driven workflow publishes it; the registry and
24
24
  GitHub release remain authoritative.
package/RELEASE.md CHANGED
@@ -81,7 +81,7 @@ Active `4.0.0-rc.*` release-train candidates publish to npm `latest` so a bare `
81
81
 
82
82
  On release day, set `release_candidate` to the exact candidate required by the
83
83
  release plan. RC2, RC3, RC4, `4.0.0-rc.4.1`, and RC5 are already immutable
84
- once tagged. Stable `4.0.0` through `4.0.11` are immutable. `4.0.12` is the current train head.
84
+ once tagged. Stable `4.0.0` through `4.0.12` are immutable. `4.0.13` is the current train head.
85
85
 
86
86
  ```sh
87
87
  release_candidate=4.0.0-rc.N
@@ -133,6 +133,27 @@ The `v4.0.3` tag is immutable published history. Do not recreate or move it.
133
133
  git tag -a v4.0.3 -m "v4.0.3"
134
134
  ```
135
135
 
136
+ ## Releasing 4.0.13
137
+
138
+ The `v4.0.13` tag must identify the exact current `main` commit after canonical
139
+ CI passes. Do not tag this feature branch directly.
140
+
141
+ ```sh
142
+ git fetch origin --tags
143
+ git checkout main
144
+ git pull --ff-only origin main
145
+
146
+ test "$(git branch --show-current)" = "main"
147
+ test "$(node -p "require('./package.json').version")" = "4.0.13"
148
+ git diff --exit-code
149
+ git diff --cached --exit-code
150
+
151
+ git tag -a v4.0.13 -m "v4.0.13"
152
+ git push origin v4.0.13
153
+ ```
154
+
155
+ Before tagging, confirm release-note extraction finds `## [4.0.13]`.
156
+
136
157
  ## Releasing 4.0.12
137
158
 
138
159
  The `v4.0.12` tag must identify the exact current `main` commit after canonical
package/SBOM.cdx.json CHANGED
@@ -6,15 +6,15 @@
6
6
  "metadata": {
7
7
  "component": {
8
8
  "type": "library",
9
- "bom-ref": "pkg:npm/unified-ble-manager@4.0.12",
9
+ "bom-ref": "pkg:npm/unified-ble-manager@4.0.13",
10
10
  "name": "unified-ble-manager",
11
- "version": "4.0.12",
11
+ "version": "4.0.13",
12
12
  "licenses": [
13
13
  {
14
14
  "expression": "Apache-2.0"
15
15
  }
16
16
  ],
17
- "purl": "pkg:npm/unified-ble-manager@4.0.12"
17
+ "purl": "pkg:npm/unified-ble-manager@4.0.13"
18
18
  },
19
19
  "properties": [
20
20
  {
@@ -537,7 +537,7 @@
537
537
  "dependsOn": []
538
538
  },
539
539
  {
540
- "ref": "pkg:npm/unified-ble-manager@4.0.12",
540
+ "ref": "pkg:npm/unified-ble-manager@4.0.13",
541
541
  "dependsOn": [
542
542
  "pkg:npm/%40babel/runtime@7.29.7",
543
543
  "pkg:npm/node-addon-api@8.9.0",
@@ -4,7 +4,7 @@
4
4
  "schemaVersion": "1.0.0",
5
5
  "package": {
6
6
  "name": "unified-ble-manager",
7
- "version": "4.0.12"
7
+ "version": "4.0.13"
8
8
  },
9
9
  "source": {
10
10
  "method": "pnpm-lock production graph with installed-manifest license audit",
@@ -3,7 +3,7 @@
3
3
  package com.sfourdrinier.unifiedblemanager.protocol.generated
4
4
 
5
5
  const val NATIVE_PROTOCOL_VERSION: Int = 2
6
- const val NATIVE_PROTOCOL_ABI_VERSION: Int = 6
6
+ const val NATIVE_PROTOCOL_ABI_VERSION: Int = 7
7
7
  const val NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION: Int = 2
8
8
  const val MAXIMUM_CONTROL_RECORD_BYTES: Int = 262144
9
9
  const val MAXIMUM_BINARY_PAYLOAD_BYTES: Int = 524288
package/docs/ELECTRON.md CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  Main owns the radio. The renderer uses a versioned IPC client and never loads a native addon.
6
6
 
7
- This source targets `4.0.12`. Tagged releases ship Node-API v8 prebuilds covering macOS and Windows `arm64`/`x64` for both Node and modern Electron.
7
+ This source targets `4.0.13`. Tagged releases ship Node-API v8 prebuilds covering macOS and Windows `arm64`/`x64` for both Node and modern Electron.
8
8
 
9
9
  `unified-ble-manager/electron/main` and
10
10
  `unified-ble-manager/electron/renderer` are the only Electron entrypoints.
@@ -7,7 +7,7 @@ start a radio, request runtime permissions during prebuild, or prove physical
7
7
  radio/restoration reliability. Expo Go is not a supported BLE execution
8
8
  environment because it cannot contain this native module.
9
9
 
10
- Use the v2 plugin options in this `4.0.12` source. Those options match
10
+ Use the v2 plugin options in this `4.0.13` source. Those options match
11
11
  the schema introduced at `4.0.0-rc.4`. Expo Go cannot load this native module.
12
12
 
13
13
  ## Installation and development build
package/docs/GAPS.4.0.md CHANGED
@@ -14,7 +14,7 @@ This file tracks platform code, CI, package, lab, and live-radio evidence. It do
14
14
 
15
15
  The clean-baseline contract, unified core, public manager, deterministic backend, TCK, native protocol, first-party backend implementations, host-isolated package exports, SDK/CLI, and legacy-absence gates exist in the 4.0 source. Passing deterministic, compile, ABI, or package tests are implementation proof; they do not become physical-radio support evidence unless a retained record proves the corresponding live scenario.
16
16
 
17
- This source targets `unified-ble-manager@4.0.12`; the npm registry and release
17
+ This source targets `unified-ble-manager@4.0.13`; the npm registry and release
18
18
  provenance, not a source version string, determine whether it is published.
19
19
  Earlier stable releases remain immutable published history. Backend support labels remain
20
20
  evidence-derived. This package does not rewrite the evidence inventory: a backend remains at the support level
@@ -4,7 +4,7 @@
4
4
 
5
5
  This page gets you to a first scan, connect, read, notify, and teardown on React Native. Other hosts are linked at the bottom. The root import does not turn Bluetooth on.
6
6
 
7
- This source targets `4.0.12`; verify the published version in the npm registry.
7
+ This source targets `4.0.13`; verify the published version in the npm registry.
8
8
 
9
9
  ## Pick a host
10
10
 
@@ -38,11 +38,11 @@ request runtime permissions on Android 12+, add
38
38
  #### Expo / CNG v2
39
39
 
40
40
  The Expo v2 schema and `unified-ble-manager/expo` factory are in this source.
41
- After the npm registry lists `4.0.12`, install that exact version and keep it in
41
+ After the npm registry lists `4.0.13`, install that exact version and keep it in
42
42
  your lockfile while validating the native build:
43
43
 
44
44
  ```sh
45
- pnpm add unified-ble-manager@4.0.12
45
+ pnpm add unified-ble-manager@4.0.13
46
46
  ```
47
47
 
48
48
  The package does not run in Expo Go.
package/docs/NODE.md CHANGED
@@ -10,7 +10,7 @@ The root import does not open an adapter. Pick one backend:
10
10
  | `unified-ble-manager/node/winrt` | Windows |
11
11
  | `unified-ble-manager/node/bluez` | Linux (needs `dbus-next@^0.10.2` in the app) |
12
12
 
13
- This source targets `4.0.12`. Tagged releases ship Node-API v8 prebuilds for macOS and Windows on `arm64` and `x64`. A normal install should not compile native code. BlueZ talks D-Bus and has no addon.
13
+ This source targets `4.0.13`. Tagged releases ship Node-API v8 prebuilds for macOS and Windows on `arm64` and `x64`. A normal install should not compile native code. BlueZ talks D-Bus and has no addon.
14
14
 
15
15
  ## One-call factories
16
16
 
package/docs/WEB.md CHANGED
@@ -6,7 +6,7 @@ Use `unified-ble-manager/web` to run the public UBM manager directly in a browse
6
6
 
7
7
  The complete runnable TypeScript/Vite application is in [`example-web/`](../example-web/).
8
8
 
9
- This guide targets `4.0.12`. Web Bluetooth support still depends on the browser, operating system, adapter, and peripheral. UBM reports those runtime boundaries; it does not fabricate a fallback backend.
9
+ This guide targets `4.0.13`. Web Bluetooth support still depends on the browser, operating system, adapter, and peripheral. UBM reports those runtime boundaries; it does not fabricate a fallback backend.
10
10
 
11
11
  ## Requirements
12
12
 
@@ -6,7 +6,7 @@ This page is generated by `scripts/docs/generate-platform-support.js` from valid
6
6
 
7
7
  ## Current package
8
8
 
9
- `unified-ble-manager@4.0.12`
9
+ `unified-ble-manager@4.0.13`
10
10
 
11
11
  No evidence record is bound to this exact package version and artifact. Consequently, this generated page makes no Preview, Live Preview, Supported, or Reliability-qualified platform claim for the current package.
12
12
 
@@ -3,7 +3,7 @@
3
3
  import Foundation
4
4
 
5
5
  public let nativeProtocolVersion: UInt32 = 2
6
- public let nativeProtocolABIVersion: UInt32 = 6
6
+ public let nativeProtocolABIVersion: UInt32 = 7
7
7
  public let nativeProtocolControlSurfaceVersion: UInt32 = 2
8
8
  public let maximumControlRecordBytes: Int = 262144
9
9
  public let maximumBinaryPayloadBytes: Int = 524288
@@ -7,5 +7,5 @@ exports.UNIFIED_BLE_IMPLEMENTATION_VERSION = void 0;
7
7
  // src/implementation-version.ts
8
8
 
9
9
  /** The one production version stamped into every first-party backend identity. */
10
- const UNIFIED_BLE_IMPLEMENTATION_VERSION = exports.UNIFIED_BLE_IMPLEMENTATION_VERSION = '4.0.12';
10
+ const UNIFIED_BLE_IMPLEMENTATION_VERSION = exports.UNIFIED_BLE_IMPLEMENTATION_VERSION = '4.0.13';
11
11
  //# sourceMappingURL=implementation-version.js.map
@@ -7,7 +7,7 @@ exports.writeModes = exports.terminalOutcomes = exports.securityBondStates = exp
7
7
  // src/native-protocol/generated/native-protocol-v2-schema.ts
8
8
 
9
9
  const NATIVE_PROTOCOL_VERSION = exports.NATIVE_PROTOCOL_VERSION = 2;
10
- const NATIVE_PROTOCOL_ABI_VERSION = exports.NATIVE_PROTOCOL_ABI_VERSION = 6;
10
+ const NATIVE_PROTOCOL_ABI_VERSION = exports.NATIVE_PROTOCOL_ABI_VERSION = 7;
11
11
  const NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION = exports.NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION = 2;
12
12
  const MAXIMUM_CONTROL_RECORD_BYTES = exports.MAXIMUM_CONTROL_RECORD_BYTES = 262144;
13
13
  const MAXIMUM_BINARY_PAYLOAD_BYTES = exports.MAXIMUM_BINARY_PAYLOAD_BYTES = 524288;
@@ -3,5 +3,5 @@
3
3
  // src/implementation-version.ts
4
4
 
5
5
  /** The one production version stamped into every first-party backend identity. */
6
- export const UNIFIED_BLE_IMPLEMENTATION_VERSION = '4.0.12';
6
+ export const UNIFIED_BLE_IMPLEMENTATION_VERSION = '4.0.13';
7
7
  //# sourceMappingURL=implementation-version.js.map
@@ -3,7 +3,7 @@
3
3
  // src/native-protocol/generated/native-protocol-v2-schema.ts
4
4
 
5
5
  export const NATIVE_PROTOCOL_VERSION = 2;
6
- export const NATIVE_PROTOCOL_ABI_VERSION = 6;
6
+ export const NATIVE_PROTOCOL_ABI_VERSION = 7;
7
7
  export const NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION = 2;
8
8
  export const MAXIMUM_CONTROL_RECORD_BYTES = 262144;
9
9
  export const MAXIMUM_BINARY_PAYLOAD_BYTES = 524288;
@@ -4,7 +4,7 @@ import { type BackendCompatibilityOffer } from '../../backend-contract/primitive
4
4
  import { type BluezBusKind, type BluezDbusBoundaryFactory } from './bluez-dbus-contract';
5
5
  export declare const BLUEZ_BACKEND_ID = "unified-ble:bluez-dbus";
6
6
  export declare const BLUEZ_PLATFORM_ID = "unified-ble:linux-bluez";
7
- export declare const BLUEZ_IMPLEMENTATION_VERSION = "4.0.12";
7
+ export declare const BLUEZ_IMPLEMENTATION_VERSION = "4.0.13";
8
8
  export declare const bluezCompatibility: BackendCompatibilityOffer;
9
9
  export interface BluezBackendProviderOptions {
10
10
  readonly busKind: BluezBusKind;
@@ -1,7 +1,7 @@
1
1
  import { type FeatureRegistry } from '../../backend-contract/capabilities';
2
2
  export declare const COREBLUETOOTH_BACKEND_ID = "unified-ble:corebluetooth";
3
3
  export declare const COREBLUETOOTH_PLATFORM_ID = "unified-ble:macos-corebluetooth";
4
- export declare const COREBLUETOOTH_IMPLEMENTATION_VERSION = "4.0.12";
4
+ export declare const COREBLUETOOTH_IMPLEMENTATION_VERSION = "4.0.13";
5
5
  /** Identity metadata for a direct-GATT boundary that shares this backend core. */
6
6
  export interface DirectGattBackendIdentityOptions {
7
7
  readonly registeredBackendId: string;
@@ -9,7 +9,7 @@ import { ReactNativeAndroidProtocolBoundary } from '../../native-protocol/rn-and
9
9
  import { ReactNativeRestorationCoordinator, type ReactNativeRestorationActivation, type ReactNativeRestorationBackendProvider } from './react-native-restoration';
10
10
  export declare const REACT_NATIVE_ANDROID_BACKEND_ID = "unified-ble:react-native-android";
11
11
  export declare const REACT_NATIVE_ANDROID_PLATFORM_ID = "unified-ble:android-gatt";
12
- export declare const REACT_NATIVE_ANDROID_IMPLEMENTATION_VERSION = "4.0.12";
12
+ export declare const REACT_NATIVE_ANDROID_IMPLEMENTATION_VERSION = "4.0.13";
13
13
  export declare const REACT_NATIVE_ANDROID_DEFAULT_ADAPTER_NATIVE_ID = "android-default-adapter";
14
14
  export declare const reactNativeAndroidCompatibility: NativeCompatibilityOffer;
15
15
  export interface ReactNativeAndroidBackendProviderOptions {
@@ -3,7 +3,7 @@ import type { Spec as NativeProtocolControl } from '../../NativeUnifiedBleProtoc
3
3
  import { type ReactNativeRestorationBackendProvider } from './react-native-restoration';
4
4
  export declare const REACT_NATIVE_APPLE_BACKEND_ID = "unified-ble:react-native-apple";
5
5
  export declare const REACT_NATIVE_APPLE_PLATFORM_ID = "unified-ble:apple-corebluetooth";
6
- export declare const REACT_NATIVE_APPLE_IMPLEMENTATION_VERSION = "4.0.12";
6
+ export declare const REACT_NATIVE_APPLE_IMPLEMENTATION_VERSION = "4.0.13";
7
7
  export declare const REACT_NATIVE_APPLE_DEFAULT_ADAPTER_NATIVE_ID = "apple-corebluetooth-default-adapter";
8
8
  export declare const reactNativeAppleCompatibility: NativeCompatibilityOffer;
9
9
  export interface ReactNativeAppleBackendProviderOptions {
@@ -3,7 +3,7 @@ import { type BackendCompatibilityOffer } from '../../backend-contract/primitive
3
3
  import { type WinRtAdapterRecord, type WinRtBoundary } from './winrt-boundary';
4
4
  export declare const WINRT_BACKEND_ID = "unified-ble:winrt";
5
5
  export declare const WINRT_PLATFORM_ID = "unified-ble:windows-winrt";
6
- export declare const WINRT_IMPLEMENTATION_VERSION = "4.0.12";
6
+ export declare const WINRT_IMPLEMENTATION_VERSION = "4.0.13";
7
7
  export declare const winRtCompatibility: BackendCompatibilityOffer;
8
8
  export interface WinRtBackendProviderOptions {
9
9
  readonly boundaryFactory: () => WinRtBoundary;
@@ -1,3 +1,3 @@
1
1
  /** The one production version stamped into every first-party backend identity. */
2
- export declare const UNIFIED_BLE_IMPLEMENTATION_VERSION = "4.0.12";
2
+ export declare const UNIFIED_BLE_IMPLEMENTATION_VERSION = "4.0.13";
3
3
  //# sourceMappingURL=implementation-version.d.ts.map
@@ -1,5 +1,5 @@
1
1
  export declare const NATIVE_PROTOCOL_VERSION = 2;
2
- export declare const NATIVE_PROTOCOL_ABI_VERSION = 6;
2
+ export declare const NATIVE_PROTOCOL_ABI_VERSION = 7;
3
3
  export declare const NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION = 2;
4
4
  export declare const MAXIMUM_CONTROL_RECORD_BYTES = 262144;
5
5
  export declare const MAXIMUM_BINARY_PAYLOAD_BYTES = 524288;
@@ -4,7 +4,7 @@ import { type BackendCompatibilityOffer } from '../../backend-contract/primitive
4
4
  import { type BluezBusKind, type BluezDbusBoundaryFactory } from './bluez-dbus-contract.js';
5
5
  export declare const BLUEZ_BACKEND_ID = "unified-ble:bluez-dbus";
6
6
  export declare const BLUEZ_PLATFORM_ID = "unified-ble:linux-bluez";
7
- export declare const BLUEZ_IMPLEMENTATION_VERSION = "4.0.12";
7
+ export declare const BLUEZ_IMPLEMENTATION_VERSION = "4.0.13";
8
8
  export declare const bluezCompatibility: BackendCompatibilityOffer;
9
9
  export interface BluezBackendProviderOptions {
10
10
  readonly busKind: BluezBusKind;
@@ -1,7 +1,7 @@
1
1
  import { type FeatureRegistry } from '../../backend-contract/capabilities.js';
2
2
  export declare const COREBLUETOOTH_BACKEND_ID = "unified-ble:corebluetooth";
3
3
  export declare const COREBLUETOOTH_PLATFORM_ID = "unified-ble:macos-corebluetooth";
4
- export declare const COREBLUETOOTH_IMPLEMENTATION_VERSION = "4.0.12";
4
+ export declare const COREBLUETOOTH_IMPLEMENTATION_VERSION = "4.0.13";
5
5
  /** Identity metadata for a direct-GATT boundary that shares this backend core. */
6
6
  export interface DirectGattBackendIdentityOptions {
7
7
  readonly registeredBackendId: string;
@@ -9,7 +9,7 @@ import { ReactNativeAndroidProtocolBoundary } from '../../native-protocol/rn-and
9
9
  import { ReactNativeRestorationCoordinator, type ReactNativeRestorationActivation, type ReactNativeRestorationBackendProvider } from './react-native-restoration.js';
10
10
  export declare const REACT_NATIVE_ANDROID_BACKEND_ID = "unified-ble:react-native-android";
11
11
  export declare const REACT_NATIVE_ANDROID_PLATFORM_ID = "unified-ble:android-gatt";
12
- export declare const REACT_NATIVE_ANDROID_IMPLEMENTATION_VERSION = "4.0.12";
12
+ export declare const REACT_NATIVE_ANDROID_IMPLEMENTATION_VERSION = "4.0.13";
13
13
  export declare const REACT_NATIVE_ANDROID_DEFAULT_ADAPTER_NATIVE_ID = "android-default-adapter";
14
14
  export declare const reactNativeAndroidCompatibility: NativeCompatibilityOffer;
15
15
  export interface ReactNativeAndroidBackendProviderOptions {
@@ -3,7 +3,7 @@ import type { Spec as NativeProtocolControl } from '../../NativeUnifiedBleProtoc
3
3
  import { type ReactNativeRestorationBackendProvider } from './react-native-restoration.js';
4
4
  export declare const REACT_NATIVE_APPLE_BACKEND_ID = "unified-ble:react-native-apple";
5
5
  export declare const REACT_NATIVE_APPLE_PLATFORM_ID = "unified-ble:apple-corebluetooth";
6
- export declare const REACT_NATIVE_APPLE_IMPLEMENTATION_VERSION = "4.0.12";
6
+ export declare const REACT_NATIVE_APPLE_IMPLEMENTATION_VERSION = "4.0.13";
7
7
  export declare const REACT_NATIVE_APPLE_DEFAULT_ADAPTER_NATIVE_ID = "apple-corebluetooth-default-adapter";
8
8
  export declare const reactNativeAppleCompatibility: NativeCompatibilityOffer;
9
9
  export interface ReactNativeAppleBackendProviderOptions {
@@ -3,7 +3,7 @@ import { type BackendCompatibilityOffer } from '../../backend-contract/primitive
3
3
  import { type WinRtAdapterRecord, type WinRtBoundary } from './winrt-boundary.js';
4
4
  export declare const WINRT_BACKEND_ID = "unified-ble:winrt";
5
5
  export declare const WINRT_PLATFORM_ID = "unified-ble:windows-winrt";
6
- export declare const WINRT_IMPLEMENTATION_VERSION = "4.0.12";
6
+ export declare const WINRT_IMPLEMENTATION_VERSION = "4.0.13";
7
7
  export declare const winRtCompatibility: BackendCompatibilityOffer;
8
8
  export interface WinRtBackendProviderOptions {
9
9
  readonly boundaryFactory: () => WinRtBoundary;
@@ -1,3 +1,3 @@
1
1
  /** The one production version stamped into every first-party backend identity. */
2
- export declare const UNIFIED_BLE_IMPLEMENTATION_VERSION = "4.0.12";
2
+ export declare const UNIFIED_BLE_IMPLEMENTATION_VERSION = "4.0.13";
3
3
  //# sourceMappingURL=implementation-version.d.ts.map
@@ -1,5 +1,5 @@
1
1
  export declare const NATIVE_PROTOCOL_VERSION = 2;
2
- export declare const NATIVE_PROTOCOL_ABI_VERSION = 6;
2
+ export declare const NATIVE_PROTOCOL_ABI_VERSION = 7;
3
3
  export declare const NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION = 2;
4
4
  export declare const MAXIMUM_CONTROL_RECORD_BYTES = 262144;
5
5
  export declare const MAXIMUM_BINARY_PAYLOAD_BYTES = 524288;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schemaVersion": 1,
3
- "package": "unified-ble-manager@4.0.12",
3
+ "package": "unified-ble-manager@4.0.13",
4
4
  "nodeApiVersion": 8,
5
5
  "entries": [
6
6
  {
@@ -10,7 +10,7 @@
10
10
  "nodeApiVersion": 8,
11
11
  "path": "native/electron/corebluetooth/prebuilds/darwin-arm64/unified_ble_corebluetooth.node",
12
12
  "bytes": 332368,
13
- "sha256": "926ab6a757bd0b1a4b6df18cd80f81b5b5748e2563ce4d525460d8ed44bb56af"
13
+ "sha256": "1775dfd0af6d6cd48a1e4e1dfa7cece4013f426cfa75e14ebd4008679eed2abe"
14
14
  },
15
15
  {
16
16
  "backend": "corebluetooth",
@@ -19,7 +19,7 @@
19
19
  "nodeApiVersion": 8,
20
20
  "path": "native/electron/corebluetooth/prebuilds/darwin-x64/unified_ble_corebluetooth.node",
21
21
  "bytes": 314872,
22
- "sha256": "360b7c5e4c5c6c9223a6d681e88e9aadc423f4e0a62e9ab41f39858e8da807e8"
22
+ "sha256": "e4e916c3c1fd9db7b21dcf4143dcf76fa5e0b31b8f3e1bedb7ea346a94700346"
23
23
  },
24
24
  {
25
25
  "backend": "winrt",
@@ -28,7 +28,7 @@
28
28
  "nodeApiVersion": 8,
29
29
  "path": "native/electron/winrt/prebuilds/win32-arm64/unified_ble_winrt.node",
30
30
  "bytes": 644608,
31
- "sha256": "59d02e9378c040a005a87021bd0bbe45625a3cd0c7b7f19e8c48145d4c99c5c9"
31
+ "sha256": "3c98d96ac49ef7ba5ff18cef51420d0ecc8e3cd8ffffcce6caf094b8ad92f159"
32
32
  },
33
33
  {
34
34
  "backend": "winrt",
@@ -37,7 +37,7 @@
37
37
  "nodeApiVersion": 8,
38
38
  "path": "native/electron/winrt/prebuilds/win32-x64/unified_ble_winrt.node",
39
39
  "bytes": 614400,
40
- "sha256": "e3d07a11e50dcef6f238ff46e2fce276ad325c5f30327e878dac06a684abc752"
40
+ "sha256": "a84c66454c800170cb22489a04f8b5cb097f1dc7f93943355fffbc21d1465b1c"
41
41
  }
42
42
  ]
43
43
  }
@@ -10,7 +10,7 @@
10
10
  namespace unified_ble::native_protocol::v2 {
11
11
 
12
12
  inline constexpr std::uint32_t kProtocolVersion = 2U;
13
- inline constexpr std::uint32_t kAbiVersion = 6U;
13
+ inline constexpr std::uint32_t kAbiVersion = 7U;
14
14
  inline constexpr std::uint32_t kControlSurfaceVersion = 2U;
15
15
  inline constexpr std::size_t kMaximumControlRecordBytes = 262144U;
16
16
  inline constexpr std::size_t kMaximumBinaryPayloadBytes = 524288U;
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "schema": "unified-ble-native-protocol-abi",
3
- "version": 6,
3
+ "version": 7,
4
4
  "recordKinds": {
5
5
  "attachment": 1,
6
6
  "connectionPath": 2,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "schema": "unified-ble-native-protocol",
3
3
  "version": 2,
4
- "abiVersion": 6,
4
+ "abiVersion": 7,
5
5
  "controlSurfaceVersion": 2,
6
6
  "abiManifest": "native-protocol-v2-abi.json",
7
7
  "maximumControlRecordBytes": 262144,
@@ -454,7 +454,9 @@ void validateCommandSemantics(const ProtocolRecord& record) {
454
454
  requireFieldSet(record, {1U, 2U, 3U, 5U}, {});
455
455
  } else if (*kind == "writeDescriptor") {
456
456
  requireFieldSet(record, {1U, 2U, 3U, 5U, 6U}, {});
457
- } else if (*kind == "subscribe" || *kind == "unsubscribe") {
457
+ } else if (*kind == "subscribe") {
458
+ requireFieldSet(record, {1U, 2U, 3U, 4U, 7U}, {21U});
459
+ } else if (*kind == "unsubscribe") {
458
460
  requireFieldSet(record, {1U, 2U, 3U, 4U, 7U}, {});
459
461
  } else if (*kind == "cancel") {
460
462
  requireFieldSet(record, {1U, 2U, 3U, 8U}, {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unified-ble-manager",
3
- "version": "4.0.12",
3
+ "version": "4.0.13",
4
4
  "description": "Unified Bluetooth Low Energy manager for React Native, Electron, Tauri, Web, and desktop",
5
5
  "packageManager": "pnpm@10.14.0",
6
6
  "main": "lib/commonjs/index.js",
@@ -1,4 +1,4 @@
1
1
  // src/implementation-version.ts
2
2
 
3
3
  /** The one production version stamped into every first-party backend identity. */
4
- export const UNIFIED_BLE_IMPLEMENTATION_VERSION = '4.0.12'
4
+ export const UNIFIED_BLE_IMPLEMENTATION_VERSION = '4.0.13'
@@ -1,7 +1,7 @@
1
1
  // src/native-protocol/generated/native-protocol-v2-schema.ts
2
2
 
3
3
  export const NATIVE_PROTOCOL_VERSION = 2
4
- export const NATIVE_PROTOCOL_ABI_VERSION = 6
4
+ export const NATIVE_PROTOCOL_ABI_VERSION = 7
5
5
  export const NATIVE_PROTOCOL_CONTROL_SURFACE_VERSION = 2
6
6
  export const MAXIMUM_CONTROL_RECORD_BYTES = 262144
7
7
  export const MAXIMUM_BINARY_PAYLOAD_BYTES = 524288