Skip to content

Commit b4ecbad

Browse files
committed
Update mediator.mdx
1 parent ff7e052 commit b4ecbad

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/content/docs/release-notes/mediator.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import RN from '/src/components/ReleaseNote.astro';
99
<RN type="feature" breaking={true}>Moving to .NET 8 & 10 as minimum target</RN>
1010
<RN type="feature" breaking={true}>New HTTP Client Source Generation now generates handlers, contracts, JSON converters, and registration to make it fully compatible. This will require you to call a new registration method, but its setup through MediatorHttpItem remains the same</RN>
1111
<RN type="feature" breaking={true}>DirectHttpRequest is gone. You can create your own HTTP objects as before which will source generate a handler</RN>
12+
<RN type="enhancement">New PublishToBackground on IMediator and IMediatorContext intended to fix scoping issues that can occur on aspnet fire & forget scenarios. This new method spawns a new child scope so you can continue to run without worrying about disposal. Note that you can still use Publish to await all event completions using the same service scope</RN>
1213
<RN type="enhancement">The HTTP Client source generation no longer ignores missing OperationIDs. It inferes the contact name using the HTTP verb and path info (ie. GET /user/list = GetUserList)</RN>
1314
<RN type="enhancement">ASPNET no longer enforces operation ID in the attribute setup</RN>
1415
<RN type="enhancement">We now support async enumerable responses. Sample below:</RN>

0 commit comments

Comments
 (0)