Skip to content

Commit

Permalink
Merge branch 'master' into enable-signing
Browse files Browse the repository at this point in the history
  • Loading branch information
chkr1011 authored May 17, 2024
2 parents d0a06bd + 3a73ec2 commit 414747a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
* All nuget packages are now signed.
* [Client] Remove the obsolete attribute from the _WithConnectionUri_ methods (#1979).

* All nuget packages are now signed.
2 changes: 0 additions & 2 deletions Source/MQTTnet/Client/Options/MqttClientOptionsBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,6 @@ public MqttClientOptionsBuilder WithClientId(string value)
return this;
}

[Obsolete("Use WithTcpServer(... configure) or WithWebSocketServer(... configure) instead.")]
public MqttClientOptionsBuilder WithConnectionUri(Uri uri)
{
if (uri == null)
Expand Down Expand Up @@ -196,7 +195,6 @@ public MqttClientOptionsBuilder WithConnectionUri(Uri uri)
return this;
}

[Obsolete("Use WithTcpServer(... configure) or WithWebSocketServer(... configure) instead.")]
public MqttClientOptionsBuilder WithConnectionUri(string uri)
{
return WithConnectionUri(new Uri(uri, UriKind.Absolute));
Expand Down

0 comments on commit 414747a

Please sign in to comment.