forked from vicajilau/dartssh2
-
Notifications
You must be signed in to change notification settings - Fork 3
Merge upstream v2.22.5 #16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
48 commits
Select commit
Hold shift + click to select a range
2cbbc3a
fix: harden dynamic forwarding, ssh-agent, and EC key parsing
GT-610 4e707e1
Format
GT-610 f4b3e9e
feat: add SSHSession waitForExit timeout
GT-610 ab12899
Merge pull request #175 from lollipopkit/upstream/dynamic-forward-age…
vicajilau 942707c
chore: bump version to 2.21.0 and harden SOCKS5, SSH agent, and EC ke…
vicajilau 6a9ac34
Merge pull request #176 from lollipopkit/upstream/session-wait-for-ex…
vicajilau 1d3ed4a
feat: add waitForExit with optional timeout to SSHSession
vicajilau 1c59654
fix: prevent SSHTransport busy-loop on partial packets
vicajilau 9078dfe
test: add test case for rescheduling transport processing when extra …
vicajilau b53960a
style: wrap test description line in ssh_transport_version_test.dart
vicajilau 212074e
Merge pull request #179 from TerminalStudio/fix/transport-partial-pac…
vicajilau 2733387
chore: bump version to 2.21.1 and update CHANGELOG
vicajilau 84a3166
chore: add github-actions ecosystem and timezone configuration to dep…
vicajilau ba0a5bc
chore(deps): bump actions/checkout from 6 to 7
dependabot[bot] 7489686
chore(deps): bump codecov/codecov-action from 5 to 7
dependabot[bot] a2719d2
chore: disable CI failure on codecov upload error in workflow
vicajilau 00589de
Merge branch 'master' into dependabot/github_actions/actions/checkout-7
vicajilau f4927ab
Merge branch 'master' into dependabot/github_actions/codecov/codecov-…
vicajilau b93e182
Merge pull request #181 from TerminalStudio/dependabot/github_actions…
vicajilau c44b7a8
Merge branch 'master' into dependabot/github_actions/actions/checkout-7
vicajilau c2bf398
Merge pull request #180 from TerminalStudio/dependabot/github_actions…
vicajilau 796b42e
feat: add SSHClient handshake and auth timeouts
GT-610 3982646
Merge pull request #182 from lollipopkit/upstream/client-handshake-au…
vicajilau 23da78d
feat: add optional handshakeTimeout and authTimeout to SSHClient
vicajilau fa64eb7
fix(keepalive): prevent overlapping pings and catch errors
vicajilau 7de4469
chore: added SSHKeepAlive tests
vicajilau 8b9252e
fix: resolve keepalive ping overlap and add error handling in version…
vicajilau a1fdb16
Merge pull request #184 from vicajilau/fix/keepalive-robustness
vicajilau d8df20a
feat(socket): add flush() to SSHSocket, SSHClient and SSHChannel
vicajilau 7cac210
docs(changelog): add entry for 2.22.2 with flush() changes
vicajilau f8cac95
chore: update release dates in changelog
vicajilau 88c2859
Merge branch 'master' into fix/keepalive-robustness
vicajilau f2e8118
chore: update release date for version 2.22.0 in CHANGELOG.md
vicajilau 1047270
test: add unit tests for flush() to cover new API
vicajilau f83aae1
test: add unit tests for flush functionality across sockets, transpor…
vicajilau 233bfed
Merge pull request #185 from vicajilau/fix/keepalive-robustness
vicajilau f0c06de
chore: bump version to 2.22.2 and update changelog date
vicajilau 3e9ab0e
fix(sftp): close the underlying channel in SftpClient.close()
keinstn 90e5272
fix: resolve SSH channel leak in SftpClient.close() and update versio…
vicajilau 0d2900d
Merge pull request #186 from keinstn/upstream/sftp-close-channel
vicajilau e09f8db
Support the RFC 8731 name curve25519-sha256
4a1a10d
Merge pull request #187 from NEXT176-s-r-o/nviper/curve25519-sha256-a…
vicajilau 6213203
feat: prioritize RFC 8731 curve25519-sha256 key exchange in algorithm…
vicajilau a2de640
fix: export ssh_userauth.dart in public API (#188)
vicajilau 6e37986
style: apply line formatting to SSH userauth export tests
vicajilau 86cdb88
Merge pull request #189 from vicajilau/fix/export-ssh-userauth
vicajilau 144697c
Merge upstream dartssh2 v2.22.5
GT-610 9880173
fix: address v2.22.5 merge review findings
GT-610 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -87,4 +87,4 @@ DateTime? parseHttpDate(String input) { | |
| } | ||
|
|
||
| return null; | ||
| } | ||
| } | ||
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
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
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
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
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
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.