Skip to content

Commit 3b9071c

Browse files
committed
Update dependency: [email protected]
1 parent 8b1c85e commit 3b9071c

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

Supabase/Supabase.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<PackageReference Include="functions-csharp" Version="1.3.2" />
4545
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
4646
<PackageReference Include="postgrest-csharp" Version="3.5.1" />
47-
<PackageReference Include="gotrue-csharp" Version="4.2.6" />
47+
<PackageReference Include="gotrue-csharp" Version="4.2.7" />
4848
<PackageReference Include="realtime-csharp" Version="6.0.4" />
4949
<PackageReference Include="supabase-core" Version="0.0.3" />
5050
<PackageReference Include="supabase-storage-csharp" Version="1.4.0" />

SupabaseTests/Stubs/FakeAuthClient.cs

+5
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,11 @@ public Task<Session> SignInWithPassword(string email, string password)
149149

150150
public Task<ProviderAuthState> SignIn(Constants.Provider provider, SignInOptions options = null) { throw new NotImplementedException(); }
151151
public Task<Session> SignInWithIdToken(Constants.Provider provider, string idToken, string nonce = null, string captchaToken = null) { throw new NotImplementedException(); }
152+
public Task<Session> SignInAnonymously(SignInAnonymouslyOptions options = null)
153+
{
154+
throw new NotImplementedException();
155+
}
156+
152157
public Task<Session> ExchangeCodeForSession(string codeVerifier, string authCode) { throw new NotImplementedException(); }
153158

154159
public Task<bool> Reauthenticate()

SupabaseTests/SupabaseTests.csproj

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@
99
</PropertyGroup>
1010

1111
<ItemGroup>
12-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
13-
<PackageReference Include="MSTest.TestAdapter" Version="3.0.4" />
14-
<PackageReference Include="MSTest.TestFramework" Version="3.0.4" />
15-
<PackageReference Include="coverlet.collector" Version="6.0.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
12+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
13+
<PackageReference Include="MSTest.TestAdapter" Version="3.2.2" />
14+
<PackageReference Include="MSTest.TestFramework" Version="3.2.2" />
15+
<PackageReference Include="coverlet.collector" Version="6.0.2"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1616
<PrivateAssets>all</PrivateAssets>
1717
</PackageReference>
1818
</ItemGroup>

modules/gotrue-csharp

Submodule gotrue-csharp updated 45 files

0 commit comments

Comments
 (0)