@bash0816/claude-code 2.1.185 → 2.1.187

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/README.md CHANGED
@@ -37,7 +37,7 @@ npm が `claude` bin link を管理する状態になれば、通常の `npm ins
37
37
  Latest audited version / 最新監査済み版:
38
38
 
39
39
  ```sh
40
- npm install -g @bash0816/claude-code@2.1.183
40
+ npm install -g @bash0816/claude-code@2.1.186
41
41
  ```
42
42
 
43
43
  ## Update / 更新
@@ -328,6 +328,33 @@
328
328
  "entry_end_offset": 229091355,
329
329
  "tarball_integrity": "sha512-z/HIA74aQ2PKs0XqgI6G1mykAXrlbuOSun/EIcHRRm0sy1hA75H9fkGCR0d/DvKRq3+P2ehcXzGxlpmHmQCj0A==",
330
330
  "tarball_sha256": "0679a07d6a5da72c06c4557c3b48698065d1559e01746f9887c6fd7732b2986c",
331
+ "status": "termux_verified"
332
+ },
333
+ "2.1.176": {
334
+ "wrapper_spec": "@anthropic-ai/claude-code@2.1.176",
335
+ "native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.176",
336
+ "entry_js_offset": 231495236,
337
+ "entry_end_offset": 248526480,
338
+ "tarball_integrity": "sha512-akM/1Z8RVJuS2hss/XvcvoUCJcrkYrWLK2R/2bAUvz/dGIZ1sqXQRtVm5DDU6GPkfTHUlCHkcz8uSE9iKotoXg==",
339
+ "tarball_sha256": "c58f01017b9b235044304779d91101a1c83735ba237c827de045079a2e8001c4",
340
+ "status": "termux_verified"
341
+ },
342
+ "2.1.186": {
343
+ "wrapper_spec": "@anthropic-ai/claude-code@2.1.186",
344
+ "native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.186",
345
+ "entry_js_offset": 212736740,
346
+ "entry_end_offset": 229944324,
347
+ "tarball_integrity": "sha512-+O4cgs/Jmloy/gRx9Y/x8DG+whDSLCww2riwOYNM8FSl7J0gF0ecCU/7Wo6LdCjKYW8Jyy3g1FPP1xtln5Rj1w==",
348
+ "tarball_sha256": "8fb8a131d15d37a9ba825e634e9016aefd9e420853b9765664bf7eb36d95e89d",
349
+ "status": "termux_verified"
350
+ },
351
+ "2.1.187": {
352
+ "wrapper_spec": "@anthropic-ai/claude-code@2.1.187",
353
+ "native_spec": "@anthropic-ai/claude-code-linux-arm64@2.1.187",
354
+ "entry_js_offset": 213137668,
355
+ "entry_end_offset": 230384397,
356
+ "tarball_integrity": "sha512-vi7UxnBZTTukCDHa18ubpUHrsdsoMaK5saIr93abc3tMumBHUZqE/WScJb5/Ct9Go38xFDrfeRVpdIPZVTzUzA==",
357
+ "tarball_sha256": "ece8776faa8641c0670585a288793104f6648dcd0c1f067d22ad013c83cbb2f5",
331
358
  "status": "offset_discovered"
332
359
  }
333
360
  }
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "manifest_version": 1,
3
3
  "package_name": "@bash0816/claude-code",
4
- "latest_audited_version": "2.1.183",
5
- "latest_candidate_version": "2.1.185",
6
- "previous_stable_version": "2.1.181",
4
+ "latest_audited_version": "2.1.186",
5
+ "latest_candidate_version": "2.1.187",
6
+ "previous_stable_version": "2.1.185",
7
+ "stable_pinned_version": "2.1.176",
7
8
  "manifest_url": "https://raw.githubusercontent.com/bash0816/ClaudeCode-Termux/main/config/claude-termux-release-manifest.json"
8
9
  }
@@ -579,7 +579,7 @@ function rewriteNativeChunkSource(source) {
579
579
  /\bBun\./g,
580
580
  '__claudeBun.',
581
581
  'Bun property access',
582
- 33,
582
+ 34,
583
583
  );
584
584
  patched = replaceRequired(
585
585
  patched,
@@ -1250,7 +1250,7 @@ function rewriteNativeChunkSource(source) {
1250
1250
  /\bBun\./g,
1251
1251
  '__claudeBun.',
1252
1252
  'Bun property access',
1253
- 33,
1253
+ 34,
1254
1254
  );
1255
1255
  patched = replaceRequired(
1256
1256
  patched,
@@ -279,7 +279,7 @@ test('cleanupStaleEntryFiles removes only stale extracted files for the same off
279
279
 
280
280
  function buildSyntheticBundleSource() {
281
281
  const typeofBun = Array.from({ length: 3 }, () => 'typeof Bun').join('; ');
282
- const bunProps = Array.from({ length: 33 }, (_, index) => `Bun.p${index}`).join('; ');
282
+ const bunProps = Array.from({ length: 34 }, (_, index) => `Bun.p${index}`).join('; ');
283
283
  return `function(exports, require, module, __filename, __dirname) { ${typeofBun}; typeof globalThis.Bun; globalThis.Bun; ${bunProps}; npmInstallDeprecated:!0 }`;
284
284
  }
285
285
 
@@ -303,7 +303,7 @@ test('rewriteNativeChunkSource rejects unexpected replacement counts', () => {
303
303
 
304
304
  assert.throws(
305
305
  () => rewriteNativeChunkSource(source),
306
- /unexpected Bun property access count 32/,
306
+ /unexpected Bun property access count 33/,
307
307
  );
308
308
  });
309
309
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bash0816/claude-code",
3
- "version": "2.1.185",
3
+ "version": "2.1.187",
4
4
  "description": "Unofficial Termux-native Claude Code wrapper with audited native replay",
5
5
  "license": "GPL-3.0-only",
6
6
  "bin": {