fix: update default WebSocket port from 50509 to 7509#38
Merged
Conversation
Updates River to use the new default Freenet WebSocket port 7509 instead of 50509, which is blocked by Windows firewall. Changes: - CLI default WebSocket URL (cli/src/main.rs) - UI WebSocket constants (ui/src/components/app/freenet_api/constants.rs) - UI invite modal URL (ui/src/components/members/invite_member_modal.rs) - Documentation (CLAUDE.md, README.md, QUICK_START.md) Related to freenet/freenet-core#1751 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Ian Clarke <sanity@users.noreply.github.com>
Contributor
Author
|
@iduartgomez - This PR is ready for review. Key points: Purpose Coordinated Release Required Suggested Release Process:
Files Updated:
Let me know if you have any concerns about this approach. [AI-assisted debugging and comment] |
sanity
added a commit
that referenced
this pull request
Oct 18, 2025
Update CLI version to include port change (50509 → 7509) from PR #38. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates River to use the new default Freenet WebSocket port 7509 instead of 50509, which is blocked by Windows firewall.
Background
Port 50509 falls within Windows 10/11's excluded port range (50000-50059), preventing Freenet nodes from starting on Windows systems. The Freenet core is changing the default port to 7509 to fix this issue.
Changes
Updated default port from 50509 to 7509 across 6 files:
Code:
cli/src/main.rs- CLI default WebSocket URLui/src/components/app/freenet_api/constants.rs- UI WebSocket constantsui/src/components/members/invite_member_modal.rs- UI invite modal URLDocumentation:
CLAUDE.md- Development documentation (3 occurrences)cli/README.md- CLI documentationcli/QUICK_START.md- Quick start guideTesting
Backward Compatibility
Users on custom port configurations can override using:
river-cli --node-url "ws://127.0.0.1:50509/v1/contract/command?encodingProtocol=native"Coordinated Release
Related to freenet/freenet-core#1751
🤖 Generated with Claude Code
Co-Authored-By: Ian Clarke sanity@users.noreply.github.com