@kahinmcp/kahin 0.3.2 → 0.3.3

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/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  Tüm önemli değişiklikler bu dosyada tutulur. Format: [Keep a Changelog](https://keepachangelog.com/tr/1.1.0/) — [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
4
4
 
5
+ ## [0.3.3] — 2026-08-05
6
+
7
+ ### Düzeltilen
8
+ - Firefox/Camoufox child süreci öldüğünde stale engine referansı erken silinmiyor; `kahin_browser_stop` artık sidecar'ı güvenle reap edip temizleyebiliyor.
9
+ - Ölü engine health/tool hataları açıkça `kahin_browser_stop` ardından `kahin_browser_start` akışını öneriyor.
10
+
11
+ ### Testler
12
+ - Gerçek Firefox child kill → health dead → stop → yeniden start regresyonu doğrulandı.
13
+ - Phantom liveness testleri: 13 passed.
14
+
5
15
  ## [0.3.2] — 2026-08-05
6
16
 
7
17
  ### Düzeltilen
@@ -93,6 +103,7 @@ Tüm önemli değişiklikler bu dosyada tutulur. Format: [Keep a Changelog](http
93
103
  - Zig Juggler harness: pipe transport, Browser/Page/Runtime/Network/Input/Emulation adapters, interception, process manager, perf + crash-recovery
94
104
  - CDP ansiklopedisi: 56 domain, 667 komut, 237 event, 609 type (Chrome 148)
95
105
 
106
+ [0.3.3]: https://gitlab.com/void0x14/kahin-mcp/-/compare/v0.3.2...v0.3.3
96
107
  [0.3.2]: https://gitlab.com/void0x14/kahin-mcp/-/compare/v0.3.1...v0.3.2
97
108
  [0.2.0]: https://gitlab.com/void0x14/kahin-mcp/-/compare/v0.1.8...v0.2.0
98
109
  [0.1.8]: https://gitlab.com/void0x14/kahin-mcp/-/compare/v0.1.7...v0.1.8
package/bin/setup.mjs CHANGED
@@ -324,7 +324,7 @@ export function setup() {
324
324
  const KAHIN_HOME = process.env.KAHIN_HOME || join(homedir(), ".local", "share", "kahin");
325
325
  const KAHIN_VENV = join(KAHIN_HOME, "venv");
326
326
  const KAHIN_PY = process.platform === "win32" ? join(KAHIN_VENV, "Scripts", "python.exe") : join(KAHIN_VENV, "bin", "python");
327
- const KAHIN_WHEEL = join(dirname(fileURLToPath(import.meta.url)), "..", "lib", "kahin-0.3.2-py3-none-any.whl");
327
+ const KAHIN_WHEEL = join(dirname(fileURLToPath(import.meta.url)), "..", "lib", "kahin-0.3.3-py3-none-any.whl");
328
328
 
329
329
  // Gömülü wheel'i venv'e kurar. Postinstall'da ve `kahin setup`'ta çalışır.
330
330
  // PyPI'a bağımlı DEĞİL — wheel paketle birlikte gelir.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kahinmcp/kahin",
3
- "version": "0.3.2",
3
+ "version": "0.3.3",
4
4
  "description": "Kahin — CDP ansiklopedisi + anti-detect browser otomasyon MCP sunucusu. Kurulumda 22 AI CLI aracını otomatik tespit edip kendini kaydeder. Obscura ve Camoufox motorlarını kullanır, motor seçimini ajana bırakır.",
5
5
  "bin": {
6
6
  "kahin": "bin/kahin.mjs"