@onekeyfe/hardware-cli 1.2.2-alpha.7 → 1.2.2-alpha.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onekeyfe/hardware-cli",
3
- "version": "1.2.2-alpha.7",
3
+ "version": "1.2.2-alpha.9",
4
4
  "description": "OneKey hardware wallet CLI for testing device communication",
5
5
  "author": "OneKey",
6
6
  "license": "Apache-2.0",
@@ -31,12 +31,12 @@
31
31
  "test": "jest"
32
32
  },
33
33
  "dependencies": {
34
- "@onekeyfe/hd-common-connect-sdk": "1.2.2-alpha.7",
35
- "@onekeyfe/hd-core": "1.2.2-alpha.7",
36
- "@onekeyfe/hd-shared": "1.2.2-alpha.7",
37
- "@onekeyfe/hd-transport-usb": "1.2.2-alpha.7",
34
+ "@onekeyfe/hd-common-connect-sdk": "1.2.2-alpha.9",
35
+ "@onekeyfe/hd-core": "1.2.2-alpha.9",
36
+ "@onekeyfe/hd-shared": "1.2.2-alpha.9",
37
+ "@onekeyfe/hd-transport-usb": "1.2.2-alpha.9",
38
38
  "@stoprocent/noble": "2.3.16",
39
39
  "commander": "^12.0.0"
40
40
  },
41
- "gitHead": "29b87f1c04fea60459d900ef1f61cb9f17eaa4d3"
41
+ "gitHead": "c097e98f32c451ccdda468da1195daf679e991e6"
42
42
  }
@@ -388,7 +388,7 @@ describe('Noble BLE plugin notification routing', () => {
388
388
 
389
389
  test('uses the connected peripheral write capacity without padding', async () => {
390
390
  const device = createPeripheral('device-a');
391
- device.peripheral.mtu = 244;
391
+ device.peripheral.mtu = process.platform === 'linux' ? 247 : 244;
392
392
  const noble = new EventEmitter() as EventEmitter & {
393
393
  state: string;
394
394
  startScanning: jest.Mock;