feat(connections): Cloudflare Access TCP tunnel integration (#1285)#1407
Merged
Conversation
…en SSH and Cloudflare (#1285)
datlechin
added a commit
that referenced
this pull request
May 24, 2026
datlechin
added a commit
that referenced
this pull request
May 24, 2026
…1410) * feat(datagrid): add native date/time picker for date columns (#1405) * refactor(datagrid): centralize chevron-kind check and extract testable picker components (#1405) * fix(connections): add missing TableProPluginKit import for tunnel SSL rewrite (#1407) * refactor(datagrid): use native SwiftUI graphical DatePicker for date cells (#1405) * fix(datagrid): use .hourAndMinute on macOS and preserve original seconds in date picker (#1405) * feat(datagrid): custom SwiftUI calendar picker with seconds for date cells (#1405) * refactor(datagrid): extract testable CalendarMonth and add accessibility labels to date picker (#1405) --------- Signed-off-by: Ngô Quốc Đạt <datlechin@gmail.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.
Closes #1285.
Connect to a database behind Cloudflare Access without running
cloudflaredby hand. TablePro now starts and stopscloudflared access tcpwith the connection, the same way it manages SSH tunnels: it picks a free loopback port, supervises the process, waits until the local port accepts connections, points the driver at127.0.0.1:<port>, and tears the process down on disconnect, app quit, or crash.What's included
cloudflared access loginso the SSO happens up front) and service tokens (stored in the Keychain, passed via environment variables, never on the command line).CloudflaredRunnerprotocol with aProcess-backed implementation, supervised by aCloudflareTunnelManageractor that mirrorsSSHTunnelManager(App Nap hold, death-triggered backoff reconnect, synchronous teardown on quit).applicationWillTerminate, plus a launch-time sweep of PIDs recorded by a previous session that crashed. The sweep verifies the live PID is still cloudflared (proc_pidpath) before signalling, so a recycled PID is never killed.Notes
brew install cloudflared).Testing
swiftlint lint --strictis clean.