Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JasperFx/alba
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.1.0
Choose a base ref
...
head repository: JasperFx/alba
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 2 commits
  • 27 files changed
  • 2 contributors

Commits on Dec 30, 2024

  1. Update to xUnit v3 (#180)

    * Update to xUnit v3
    
    * Give the build pipeline a punt
    
    * Fix .NET 9 tests
    
    ---------
    
    Co-authored-by: JT <Hawxy@users.noreply.github.com>
    Hawxy and Hawxy authored Dec 30, 2024
    Copy the full SHA
    2b80fdd View commit details

Commits on Jan 11, 2025

  1. Fix JWT stub compatibility with IdentityWeb (#183)

    * Fix JWT stub compatibility with IdentityWeb
    
    * Version bump
    
    ---------
    
    Co-authored-by: JT <Hawxy@users.noreply.github.com>
    Hawxy and Hawxy authored Jan 11, 2025
    Copy the full SHA
    7fa9072 View commit details
4 changes: 2 additions & 2 deletions build/_build.csproj
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<RootNamespace></RootNamespace>
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
<NukeRootDirectory>..</NukeRootDirectory>
@@ -12,7 +12,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Nuke.Common" Version="9.0.1" />
<PackageReference Include="Nuke.Common" Version="9.0.3" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions docs/guide/xunit.md
Original file line number Diff line number Diff line change
@@ -40,15 +40,15 @@ public class WebAppFixture : IAsyncLifetime
{
public IAlbaHost AlbaHost = null!;

public async Task InitializeAsync()
public async ValueTask InitializeAsync()
{
AlbaHost = await Alba.AlbaHost.For<WebApp.Program>(builder =>
{
// Configure all the things
});
}

public async Task DisposeAsync()
public async ValueTask DisposeAsync()
{
await AlbaHost.DisposeAsync();
}
2 changes: 1 addition & 1 deletion docs/index.md
Original file line number Diff line number Diff line change
@@ -3,7 +3,7 @@ layout: home

hero:
name: Alba
text: Easy Integration testing for ASP.NET Core
text: Easy Integration Testing for ASP.NET Core
actions:
- theme: brand
text: Get Started
2 changes: 1 addition & 1 deletion docs/scenarios/setup.md
Original file line number Diff line number Diff line change
@@ -43,5 +43,5 @@ public void sample_usage(AlbaHost system)

}
```
<sup><a href='https://github.com/JasperFx/alba/blob/master/src/Alba.Testing/before_and_after_actions.cs#L33-L66' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_before_and_after' title='Start of snippet'>anchor</a></sup>
<sup><a href='https://github.com/JasperFx/alba/blob/master/src/Alba.Testing/before_and_after_actions.cs#L32-L65' title='Snippet source file'>snippet source</a> | <a href='#snippet-sample_before_and_after' title='Start of snippet'>anchor</a></sup>
<!-- endSnippet -->
Loading