Skip to content

Commit

Permalink
Merge pull request #220 from FrendsPlatform/issue-219
Browse files Browse the repository at this point in the history
SFTP.ListFiles - Fixed issue with thread safety
  • Loading branch information
jefim authored Jan 3, 2025
2 parents cf66b24 + 7ae68a2 commit 176bd6e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Frends.SFTP.ListFiles/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [2.4.0] - 2025-01-03
### Fixed
- Fixed issue with ConnectionInfoBuilder having static properties for connection and input paramaters which lead to Task not being thread safe.

## [2.3.0] - 2024-08-19
### Updated
- Updated Renci.SshNet library to version 2024.1.0.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ namespace Frends.SFTP.ListFiles.Definitions;

internal class ConnectionInfoBuilder
{
private static Input _input;
private static Connection _connection;
private Input _input;
private Connection _connection;

internal ConnectionInfoBuilder(Input input, Connection connect)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<AssemblyName>Frends.SFTP.ListFiles</AssemblyName>
<RootNamespace>Frends.SFTP.ListFiles</RootNamespace>

<Version>2.3.0</Version>
<Version>2.4.0</Version>
<Authors>Frends</Authors>
<Copyright>Frends</Copyright>
<Company>Frends</Company>
Expand Down

0 comments on commit 176bd6e

Please sign in to comment.