Skip to content

Commit 5b3a9c0

Browse files
committed
Fix 3 CodeRabbit issues + stale doc reference
- CHANGELOG: add #### Features sub-heading, rewrite bullet as user-facing - CLAUDE.md: forwardPorts is static, not dynamic discovery - CLAUDE.md: fix Claude Code version ref (:1 → :1.0.5) - devcontainer.json: pin dbr to 0.2.0 instead of :latest
1 parent 142f8d1 commit 5b3a9c0

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.devcontainer/CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
- **`/ship`** — Combined commit/push/PR command with full code review, commit message approval, and AskUserQuestion confirmation before PR creation; optionally links to tickets if context exists
1818
- **`/pr:review`** — Review any PR by number/URL or auto-detect from current branch; posts findings as PR comment with severity ratings; never approves or merges
1919

20-
#### Port Forwarding
21-
- **devcontainer-bridge (dbr)**Dynamic port auto-discovery and forwarding independent of VS Code. Container daemon polls for new listeners and forwards them to the host via reverse TCP connections. Requires `dbr host-daemon` running on the host machine. See [devcontainer-bridge](https://github.com/bradleybeddoes/devcontainer-bridge)
20+
#### Features
21+
- **devcontainer-bridge (dbr)**Ports opened inside the container are now automatically discovered and forwarded to the host, even outside VS Code. Requires `dbr host-daemon` running on the host. See [devcontainer-bridge](https://github.com/bradleybeddoes/devcontainer-bridge)
2222

2323
### Changed
2424

.devcontainer/CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Two mechanisms handle port access:
183183

184184
| Mechanism | When Active | Dynamic Discovery |
185185
|-----------|-------------|-------------------|
186-
| `forwardPorts` (devcontainer.json) | VS Code / Codespaces only | Yes (VS Code auto-detect) |
186+
| `forwardPorts` (devcontainer.json) | VS Code / Codespaces only | No (static list; VS Code auto-detects separately) |
187187
| devcontainer-bridge (`dbr`) | Any terminal client | Yes (polls `/proc/net/tcp`) |
188188

189189
`forwardPorts` is a no-op outside VS Code — the `devcontainer` CLI ignores it. `dbr` provides VS Code-independent dynamic port discovery via a reverse connection model (container→host). The container daemon auto-starts and is inert without the host daemon (`dbr host-daemon`). Both mechanisms coexist. See [devcontainer-bridge](https://github.com/bradleybeddoes/devcontainer-bridge).

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@
150150
"enableBell": true,
151151
"enableOsc": true
152152
},
153-
"ghcr.io/bradleybeddoes/devcontainer-bridge/dbr:latest": {}
153+
"ghcr.io/bradleybeddoes/devcontainer-bridge/dbr:0.2.0": {}
154154
},
155155

156156
"forwardPorts": [7847],

0 commit comments

Comments
 (0)