Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
b8738d3
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 15, 2025
b55da7b
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 15, 2025
da49054
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 16, 2025
8646c01
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 16, 2025
0cae9ad
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 16, 2025
f1307da
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 17, 2025
285d645
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 18, 2025
a01759b
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 19, 2025
df546ae
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 19, 2025
cd48b75
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 20, 2025
501d7e1
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 21, 2025
35089e5
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 21, 2025
6288c50
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 21, 2025
58aa156
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 22, 2025
33909c7
Try disabling inlining for the interactivity e2e test
lewing Apr 22, 2025
d7e2d9b
Disable preloading in tests
maraf Apr 22, 2025
a2a3665
Merge branch 'main' into darc-main-c522251f-421c-4560-8005-ac855da8cf24
lewing Apr 22, 2025
f65b65e
Update dependencies from https://github.com/dotnet/efcore build 20250…
dotnet-maestro[bot] Apr 22, 2025
8277261
Update dependencies from https://github.com/dotnet/runtime build 2025…
dotnet-maestro[bot] Apr 24, 2025
61601e1
Merge
wtgodbe Apr 24, 2025
3d8b5b0
Update HostingApplicationDiagnosticsTests.cs
wtgodbe Apr 24, 2025
ebcc248
Update RequestDelegateCreationTests.KeyServices.cs
wtgodbe Apr 24, 2025
ab32021
Update HubConnectionHandlerTests.Activity.cs
wtgodbe Apr 24, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
352 changes: 176 additions & 176 deletions eng/Version.Details.xml

Large diffs are not rendered by default.

176 changes: 88 additions & 88 deletions eng/Versions.props

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/Components/WebAssembly/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<ExcludeFromSourceOnlyBuild>true</ExcludeFromSourceOnlyBuild>
</PropertyGroup>
<PropertyGroup>
<WasmPreloadAssets>false</WasmPreloadAssets>
<WasmInlineBootConfig>false</WasmInlineBootConfig>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
Condition=" '$(ContinuousIntegrationBuild)' != 'true' AND '$(SkipTestBuild)' != 'true' ">true</_BuildAndTest>
<ExcludeFromBuild Condition=" !$(_BuildAndTest) ">true</ExcludeFromBuild>
<SkipTests Condition=" !$(_BuildAndTest) ">true</SkipTests>

<!-- disable inline boot config for these tests -->
<WasmInlineBootConfig>false</WasmInlineBootConfig>
</PropertyGroup>

<!-- Shared testing infrastructure for running E2E tests using selenium -->
Expand Down
1 change: 1 addition & 0 deletions src/Components/test/testassets/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
</AssemblyAttribute>
</ItemGroup>
<PropertyGroup>
<WasmPreloadAssets>false</WasmPreloadAssets>
<WasmInlineBootConfig>false</WasmInlineBootConfig>
</PropertyGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -740,13 +740,13 @@ public void ActivityParentIdAndBaggageReadFromHeaders()
{
Headers = new HeaderDictionary()
{
{"Request-Id", "ParentId1"},
{"Request-Id", "ParentId1"}, // non-standard header, won't apply to Activity
{"baggage", "Key1=value1, Key2=value2"}
}
});
hostingApplication.CreateContext(features);
Assert.Equal("Microsoft.AspNetCore.Hosting.HttpRequestIn", Activity.Current.OperationName);
Assert.Equal("ParentId1", Activity.Current.ParentId);
Assert.Null(Activity.Current.ParentId);
Assert.Contains(Activity.Current.Baggage, pair => pair.Key == "Key1" && pair.Value == "value1");
Assert.Contains(Activity.Current.Baggage, pair => pair.Key == "Key2" && pair.Value == "value2");
}
Expand Down Expand Up @@ -928,7 +928,7 @@ public void ActivityTraceParentAndTraceStateFromHeaders()
Headers = new HeaderDictionary()
{
{"traceparent", "00-0123456789abcdef0123456789abcdef-0123456789abcdef-01"},
{"tracestate", "TraceState1"},
{"tracestate", "tracestate=1"},
{"baggage", "Key1=value1, Key2=value2"}
}
});
Expand All @@ -937,7 +937,7 @@ public void ActivityTraceParentAndTraceStateFromHeaders()
Assert.Equal(ActivityIdFormat.W3C, Activity.Current.IdFormat);
Assert.Equal("0123456789abcdef0123456789abcdef", Activity.Current.TraceId.ToHexString());
Assert.Equal("0123456789abcdef", Activity.Current.ParentSpanId.ToHexString());
Assert.Equal("TraceState1", Activity.Current.TraceStateString);
Assert.Equal("tracestate=1", Activity.Current.TraceStateString);

Assert.Contains(Activity.Current.Baggage, pair => pair.Key == "Key1" && pair.Value == "value1");
Assert.Contains(Activity.Current.Baggage, pair => pair.Key == "Key2" && pair.Value == "value2");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public async Task ThrowsForUnregisteredRequiredKeyService()
var exception = await Assert.ThrowsAsync<InvalidOperationException>(
async () => await endpoint.RequestDelegate(httpContext));

Assert.Equal("No service for type 'Microsoft.AspNetCore.Http.Generators.Tests.TestService' has been registered.", exception.Message);
Assert.Equal("No keyed service for type 'Microsoft.AspNetCore.Http.Generators.Tests.TestService' using key type 'System.String' has been registered.", exception.Message);
}

[Fact]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public async Task HubMethodInvokesCreateActivities_ReadTraceHeaders()
var headers = new Dictionary<string, string>
{
{"traceparent", "00-0123456789abcdef0123456789abcdef-0123456789abcdef-01"},
{"tracestate", "TraceState1"},
{"tracestate", "tracestate=1"},
{"baggage", "Key1=value1, Key2=value2"}
};

Expand All @@ -149,7 +149,7 @@ public async Task HubMethodInvokesCreateActivities_ReadTraceHeaders()
Assert.Equal(ActivityIdFormat.W3C, invocationActivity.IdFormat);
Assert.Equal("0123456789abcdef0123456789abcdef", invocationActivity.TraceId.ToHexString());
Assert.Equal("0123456789abcdef", invocationActivity.ParentSpanId.ToHexString());
Assert.Equal("TraceState1", invocationActivity.TraceStateString);
Assert.Equal("tracestate=1", invocationActivity.TraceStateString);

client.Dispose();

Expand Down Expand Up @@ -262,7 +262,7 @@ public async Task StreamingHubMethodCreatesActivities_ReadTraceHeaders()
var headers = new Dictionary<string, string>
{
{"traceparent", "00-0123456789abcdef0123456789abcdef-0123456789abcdef-01"},
{"tracestate", "TraceState1"},
{"tracestate", "tracestate=1"},
{"baggage", "Key1=value1, Key2=value2"}
};

Expand All @@ -275,7 +275,7 @@ public async Task StreamingHubMethodCreatesActivities_ReadTraceHeaders()
Assert.Equal(ActivityIdFormat.W3C, invocationActivity.IdFormat);
Assert.Equal("0123456789abcdef0123456789abcdef", invocationActivity.TraceId.ToHexString());
Assert.Equal("0123456789abcdef", invocationActivity.ParentSpanId.ToHexString());
Assert.Equal("TraceState1", invocationActivity.TraceStateString);
Assert.Equal("tracestate=1", invocationActivity.TraceStateString);

client.Dispose();

Expand Down
Loading