v0.5.3
Patch release
doctor 画面の false-positive WARN を 2 件解消。
fix(doctor) #106
1. Listening port WARN
npx @youtyan/code-viewer を --port 指定なしで起動すると、doctor が常に port not yet bound を WARN 表示していた。startServer が OS に割り当てたポートを内部の listenPort 変数に反映していなかったため。server.port で同期するよう修正。
2. compose config WARN
profiles: [test] のような profile-gated サービスは docker compose config --services から外れるのが正常動作だが、doctor は常に discovered services not resolved by compose WARN を出していた。DockerDbInfo に profiled フラグを追加し、profile-gated を missing から除外。OK 行に OK (3 active, 1 profile-gated) のような内訳を表示するように。