Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
515162d
feat: add ssh ui
fabiovincenzi Mar 31, 2025
9f1cb27
Merge branch 'G-Research:main' into ssh-ui
fabiovincenzi Apr 25, 2025
f514691
feat: adds ssh support for git operations
dcoric Apr 28, 2025
584d487
Merge remote-tracking branch 'denis/denis-coric/ssh-flow' into ssh-ui
fabiovincenzi May 21, 2025
c5e622e
feat: add getPublicKey in database
fabiovincenzi May 28, 2025
e474edf
feat: add endpoints for retrieving SHA fingerprint and delete SHA by …
fabiovincenzi May 28, 2025
c017a78
feat: use endpoints in SSH UI
fabiovincenzi May 28, 2025
0eca75b
feat: add tab for SSH in CodeActionButton
fabiovincenzi May 28, 2025
7f62e3b
feat: add icons
fabiovincenzi May 28, 2025
ee16489
Merge branch 'ssh-ui' of https://github.com/fabiovincenzi/git-proxy i…
fabiovincenzi May 28, 2025
2d205d5
fix: fetch ssh port to create the correct url
fabiovincenzi Jun 4, 2025
6667d15
feat: adds ssh support for git operations
dcoric Apr 28, 2025
21582e2
chore: merge ssh integration
fabiovincenzi Jun 16, 2025
a80b65b
chore: remove unused dependancy
fabiovincenzi Jun 16, 2025
49a11b7
Merge branch 'main' into ssh-ui
fabiovincenzi Jun 30, 2025
e6c0d5f
Merge branch 'main' into ssh-ui
JamieSlome Jul 1, 2025
eb5eecb
Merge branch 'main' into ssh-ui
fabiovincenzi Jul 7, 2025
ce5a80a
feat: add allert for bad ssh key
fabiovincenzi Jul 9, 2025
c3227e3
feat: store date and name of keys
fabiovincenzi Jul 9, 2025
55702c1
refactor: export into services api calls
fabiovincenzi Jul 9, 2025
bc0b2f6
feat: add SSH proxy server support
dcoric Sep 12, 2025
2bcb475
refactor: convert SSH files from JavaScript to TypeScript
dcoric Sep 12, 2025
0b38aee
feat: update SSH server to enhance client handling and logging
dcoric Sep 15, 2025
af69d45
Merge branch 'main' into denis-coric/ssh
dcoric Sep 15, 2025
8df000a
fix: enhance SSH server tests and client handling
dcoric Sep 15, 2025
719103a
feat: add findUserBySSHKey function to user database operations
dcoric Sep 15, 2025
2fd1703
refactor: enhance SSH server keepalive functionality and error handling
dcoric Sep 17, 2025
18b52ab
feat: implement SSH key retention feature for Git Proxy
dcoric Sep 17, 2025
91b58eb
feat: add SSH configuration and enhance server command handling
dcoric Sep 19, 2025
b2e7557
chore: update .gitignore to exclude Claude directory
dcoric Sep 19, 2025
7e3553c
fix: ensure SSH enabled configuration is a boolean and improve error …
dcoric Sep 19, 2025
2d56a76
Merge remote-tracking branch 'finos/main' into denis-coric/ssh-flow
dcoric Sep 25, 2025
61e6a0b
fix: fixes lint and refreshed package-lock.json
dcoric Sep 25, 2025
27b190b
Merge remote-tracking branch 'finos/main' into denis-coric/ssh-flow
dcoric Oct 3, 2025
d39e32e
fix: implement SSH pack data capture for security scanning
dcoric Oct 3, 2025
6192ee9
fix: adds test SSH keys to .gitignore
dcoric Oct 6, 2025
1f94f95
test: enhance SSHServer tests for git-receive-pack handling
dcoric Oct 6, 2025
3150f5d
feat: enhance configuration for SSH and git operations
dcoric Oct 7, 2025
2cc7553
feat: add comprehensive performance tests for HTTP/HTTPS and SSH prot…
dcoric Oct 9, 2025
107bac1
Merge branch 'main' into denis-coric/ssh-flow
dcoric Oct 9, 2025
8698ad1
Merge remote-tracking branch 'finos/main' into denis-coric/ssh-flow
dcoric Oct 13, 2025
cd47fb8
refactor: rename variables in performance tests for clarity
dcoric Oct 13, 2025
9d37ac9
Merge pr-987-ssh-integration into ssh-ui
fabiovincenzi Oct 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ dist

# testing
/coverage
.temp

# production
/build
Expand All @@ -269,3 +270,8 @@ website/.docusaurus

# Jetbrains IDE
.idea

.claude/

# Test SSH keys (generated during tests)
test/keys/
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v20
Loading
Loading