Skip to content

Commit e7b78da

Browse files
Merge pull request #44 from FrendsPlatform/FSPES-64
update summary for host param
2 parents 3a932ad + 7786345 commit e7b78da

File tree

22 files changed

+62
-27
lines changed

22 files changed

+62
-27
lines changed

Frends.LDAP.AddUserToGroups/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [2.1.0] - 2026-02-03
4+
### Changed
5+
- Improved documentation for Host parameter usage
6+
37
## [2.0.0] - 2026-01-29
48
### Changed
59
- [Breaking] Input: Changed GroupDistinguishedName (string) to GroupDistinguishedNames (string[]) to support adding users to multiple groups in a single operation.

Frends.LDAP.AddUserToGroups/Frends.LDAP.AddUserToGroups/Definitions/Connection.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ namespace Frends.LDAP.AddUserToGroups.Definitions;
77
public class Connection
88
{
99
/// <summary>
10-
/// Host.
10+
/// LDAP server host.
11+
/// This must resolve to a Domain Controller (FQDN) in the same domain
12+
/// as the target group being modified.
1113
/// </summary>
12-
/// <example>adserver.westeurope.cloudapp.azure.com</example>
14+
/// <example>dc1.emea.company.com</example>
1315
public string Host { get; set; }
1416

1517
/// <summary>

Frends.LDAP.AddUserToGroups/Frends.LDAP.AddUserToGroups/Frends.LDAP.AddUserToGroups.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0</TargetFrameworks>
5-
<Version>2.0.0</Version>
5+
<Version>2.1.0</Version>
66
<Authors>Frends</Authors>
77
<Copyright>Frends</Copyright>
88
<Company>Frends</Company>

Frends.LDAP.CreateUser/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.2.0] - 2026-02-03
4+
### Changed
5+
- Improved documentation for Host parameter usage
6+
37
## [1.1.0] - 2025-09-26
48
### Updated
59
- Added option to set the password for the new user in Unicode.

Frends.LDAP.CreateUser/Frends.LDAP.CreateUser/Definitions/Connection.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ namespace Frends.LDAP.CreateUser.Definitions;
77
public class Connection
88
{
99
/// <summary>
10-
/// Host.
10+
/// LDAP server host.
11+
/// This must resolve to a Domain Controller (FQDN) in the same domain
12+
/// where the new object (user) will be created.
1113
/// </summary>
12-
/// <example>adserver.westeurope.cloudapp.azure.com</example>
14+
/// <example>dc1.emea.company.com</example>
1315
public string Host { get; set; }
1416

1517
/// <summary>

Frends.LDAP.CreateUser/Frends.LDAP.CreateUser/Frends.LDAP.CreateUser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0</TargetFrameworks>
5-
<Version>1.1.0</Version>
5+
<Version>1.2.0</Version>
66
<Authors>Frends</Authors>
77
<Copyright>Frends</Copyright>
88
<Company>Frends</Company>
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [1.1.0] - 2026-02-03
4+
### Changed
5+
- Improved documentation for Host parameter usage
6+
37
## [1.0.0] - 2022-09-26
48
### Added
59
- Initial implementation

Frends.LDAP.DeleteUser/Frends.LDAP.DeleteUser/Definitions/Connection.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ namespace Frends.LDAP.DeleteUser.Definitions;
77
public class Connection
88
{
99
/// <summary>
10-
/// Host.
10+
/// LDAP server host.
11+
/// This must resolve to a Domain Controller (FQDN) in the same domain
12+
/// as the object (user) being deleted.
1113
/// </summary>
12-
/// <example>adserver.westeurope.cloudapp.azure.com</example>
14+
/// <example>dc1.emea.company.com</example>
1315
public string Host { get; set; }
1416

1517
/// <summary>

Frends.LDAP.DeleteUser/Frends.LDAP.DeleteUser/DeleteUser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public static Result DeleteUser([PropertyTab] Input input, [PropertyTab] Connect
2727
{
2828
var defaultPort = connection.SecureSocketLayer ? 636 : 389;
2929
var entry = $"CN={input.CommonName},{input.Path}";
30-
30+
3131
conn.SecureSocketLayer = connection.SecureSocketLayer;
3232
conn.Connect(connection.Host, connection.Port == 0 ? defaultPort : connection.Port);
3333
if (connection.TLS) conn.StartTls();

Frends.LDAP.DeleteUser/Frends.LDAP.DeleteUser/Frends.LDAP.DeleteUser.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0</TargetFrameworks>
5-
<Version>1.0.0</Version>
5+
<Version>1.1.0</Version>
66
<Authors>Frends</Authors>
77
<Copyright>Frends</Copyright>
88
<Company>Frends</Company>

0 commit comments

Comments
 (0)