Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
Xwilarg committed Dec 31, 2024
1 parent bd148fe commit 6566fb2
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Sanara.UnitTests/Sanara.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<PackageReference Include="coverlet.collector" Version="6.0.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="NUnit" Version="4.2.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageReference Include="NUnit" Version="4.3.2" />
<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />
</ItemGroup>

Expand Down
2 changes: 2 additions & 0 deletions Sanara.UnitTests/TestChannel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ public Task<IUserMessage> SendFileAsync(Stream stream, string filename, string t

public ulong Id => throw new NotImplementedException();

public ChannelType ChannelType => throw new NotImplementedException();

public Task DeleteMessageAsync(ulong messageId, RequestOptions options = null)
{
throw new NotImplementedException();
Expand Down
2 changes: 2 additions & 0 deletions Sanara/Module/Command/Context/UrlAttachment.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,7 @@ public UrlAttachment(string url)
public DateTimeOffset? ClipCreatedAt => throw new NotImplementedException();

public DateTimeOffset CreatedAt => throw new NotImplementedException();

public byte[] WaveformBytes => throw new NotImplementedException();
}
}
12 changes: 6 additions & 6 deletions Sanara/Sanara.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@

<ItemGroup>
<PackageReference Include="BooruSharp" Version="3.6.0" />
<PackageReference Include="Discord.Net" Version="3.16.0" />
<PackageReference Include="Discord.Net" Version="3.17.0" />
<PackageReference Include="DiscordBotsList.Api" Version="1.5.0" />
<PackageReference Include="Google.Cloud.Translate.V3" Version="3.8.0" />
<PackageReference Include="Google.Cloud.Translate.V3" Version="3.9.0" />
<PackageReference Include="Google.Cloud.Vision.V1" Version="3.7.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.65" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageReference Include="HtmlAgilityPack" Version="1.11.72" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.0" />
<PackageReference Include="Quickenshtein" Version="1.5.1" />
<PackageReference Include="RethinkDb.Driver" Version="2.3.150" />
<PackageReference Include="Sentry" Version="4.10.2" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.5" />
<PackageReference Include="Sentry" Version="5.0.0" />
<PackageReference Include="SixLabors.ImageSharp" Version="3.1.6" />
<PackageReference Include="SixLabors.ImageSharp.Drawing" Version="2.1.4" />
<PackageReference Include="VndbSharp" Version="1.1.1" />
</ItemGroup>
Expand Down

0 comments on commit 6566fb2

Please sign in to comment.