Skip to content

Added Should().Throw(), ThrowAsync() and ThrowWithinAsync() flavors that don’t require a specific exception type#3059

Merged
dennisdoomen merged 9 commits intofluentassertions:mainfrom
Xceed-DelvaJB:3056
Jun 24, 2025
Merged

Added Should().Throw(), ThrowAsync() and ThrowWithinAsync() flavors that don’t require a specific exception type#3059
dennisdoomen merged 9 commits intofluentassertions:mainfrom
Xceed-DelvaJB:3056

Conversation

@Xceed-DelvaJB
Copy link
Contributor

This implements issue #3056

IMPORTANT

  • If the PR touches the public API, the changes have been approved in a separate issue with the "api-approved" label.
  • The code complies with the Coding Guidelines for C#.
  • The changes are covered by unit tests which follow the Arrange-Act-Assert syntax and the naming conventions such as is used in these tests.
  • If the PR adds a feature or fixes a bug, please update the release notes with a functional description that explains what the change means to consumers of this library, which are published on the website.
  • If the PR changes the public API the changes needs to be included by running AcceptApiChanges.ps1 or AcceptApiChanges.sh.
  • If the PR affects the documentation, please include your changes in this pull request so the documentation will appear on the website.
    • Please also run ./build.sh --target spellcheck or .\build.ps1 --target spellcheck before pushing and check the good outcome

CONTRIBUTOR LICENSE GRANT

By submitting this contribution, the contributor hereby irrevocably grants to the project owners and maintainers a perpetual, worldwide, royalty-free, irrevocable license to use, reproduce, modify, distribute, sublicense, and create derivative works of the contribution for any purpose and under any terms, including proprietary licensing.

The contributor waives any moral rights in the contribution to the extent permitted by law and agrees not to assert any claim of authorship or control over the contribution. The contributor represents that they are the sole author of the contribution and that it is provided free of any third-party claims.

The contributor understands and agrees that the maintainers may, at their sole discretion, use, license, or redistribute the contribution as part of any work and under any terms they choose, without further permission or attribution.

  • I have read the Contributor License Grant and accept the conditions
  • I'm interested in a free license for Fluent Assertions and will share my email address through sales@xceed.com

@github-actions
Copy link

github-actions bot commented Jun 19, 2025

Qodana for .NET

It seems all right 👌

No new problems were found according to the checks applied

💡 Qodana analysis was run in the pull request mode: only the changed files were checked
☁️ View the detailed Qodana report

Contact Qodana team

Contact us at qodana-support@jetbrains.com

…() test.

Added When_async_method_throws_any_exception_within_timespan_it_should_succeed() test.
@dennisdoomen dennisdoomen reopened this Jun 20, 2025
@dennisdoomen
Copy link
Member

@Xceed-DelvaJB did you accidentally close the PR?

@coveralls
Copy link

coveralls commented Jun 20, 2025

Pull Request Test Coverage Report for Build 15834460770

Details

  • 5 of 5 (100.0%) changed or added relevant lines in 2 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.001%) to 97.319%

Totals Coverage Status
Change from base Build 15795830311: 0.001%
Covered Lines: 12474
Relevant Lines: 12673

💛 - Coveralls

}

[Fact]
public async Task When_async_method_throws_any_exception_it_should_succeed()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔧We try to use a more fact-based naming convention these days and avoid words like should and when. So in this case Succeeds_for_any_thrown_exception. We also started to group the test cases in nested classes named like the API. See for example CollectionAssertionSpecs. There we even used partial classes to keep things organized.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ok for the names and organizing. Take a look at my changes. I might have gone overboard with the nested classes. Let me know if it's presentable.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I'm afraid I've sent you into a rabbit hole. The idea is that we group the tests under the nested classes and use names to represent them based on API or capability, e.g. NotThrowAfterAsync, Actions or NogGenericAsyncFunctions (without the Assertions part). And if we do decide to refactor such a big class we either do that

  1. In a separate PR
  2. In a separate commit if your PR has been properly organized into focused commits we want to keep after merging.

In your case, we will squash the PR as you have merged the main branch into the feature branch. We only do rebases.

So let's remove these nested classed you've added so we can look at this at a later point of time.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No problem, done.

I read your article about source control history and will try to put it to use for the next pull request.


* Clarify the date/time type when comparing non-compatible dates and times in `BeEquivalentTo` - [3049](https://github.com/fluentassertions/fluentassertions/pull/3049)
* Improve the rendering of exception messages when using `WithMessage` for better readability - [3039](https://github.com/fluentassertions/fluentassertions/pull/3039)
* Added `Should().Throw()`, `ThrowAsync()` and `ThrowWithinAsync()` flavors that don’t require a specific exception type - [3056](https://github.com/fluentassertions/fluentassertions/issues/3056)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔧 This needs to become part of a new 8.4.0 section.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additionally we link to the PR resolving an issue and not the issue itself.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I should have noticed that. For future reference, I need to create a pull request, then update the release notes files with the number and link?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, exactly.

@dennisdoomen dennisdoomen added this to the 8.4.0 milestone Jun 20, 2025
@dennisdoomen dennisdoomen requested review from Copilot and jnyrup June 20, 2025 05:32
Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

Adds non-generic overloads for exception assertions so consumers can assert “any exception” without specifying a type.

  • Introduces Should().Throw() on delegates and actions.
  • Adds ThrowAsync() and ThrowWithinAsync() on async functions.
  • Updates release notes and API approvals to reflect the new overloads.

Reviewed Changes

Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.

Show a summary per file
File Description
docs/_pages/releases.md Added release note for new Throw()/ThrowAsync()/ThrowWithinAsync() overloads
Tests/FluentAssertions.Specs/Exceptions/ThrowAssertionsSpecs.cs Added unit tests for new non-generic Throw() overload
Tests/FluentAssertions.Specs/Exceptions/AsyncFunctionExceptionAssertionSpecs.cs Added tests for ThrowAsync() and ThrowWithinAsync()
Tests/Approval.Tests/ApprovedApi/FluentAssertions/*.verified.txt Updated approved API files to include new overload signatures
Src/FluentAssertions/Specialized/DelegateAssertions.cs Implemented non-generic Throw() in delegate assertions
Src/FluentAssertions/Specialized/AsyncFunctionAssertions.cs Implemented non-generic ThrowAsync() and ThrowWithinAsync()
Comments suppressed due to low confidence (3)

docs/_pages/releases.md:16

  • Consider adding a new version header (e.g., ## 8.3.0) above this entry to group the new feature under the correct release section, ensuring consistency in the release notes structure.
* Added `Should().Throw()`, `ThrowAsync()` and `ThrowWithinAsync()` flavors that don’t require a specific exception type - [3056](https://github.com/fluentassertions/fluentassertions/issues/3056)

Tests/FluentAssertions.Specs/Exceptions/ThrowAssertionsSpecs.cs:9

  • Add a negative test to verify that invoking Should().Throw() on a delegate that does not throw any exception results in an assertion failure, covering the failure path for the new overload.
    [Fact]

Tests/FluentAssertions.Specs/Exceptions/AsyncFunctionExceptionAssertionSpecs.cs:938

  • Add a test case to verify that ThrowAsync() and ThrowWithinAsync() fail as expected when the asynchronous operation does not throw an exception, covering the negative scenario for the new overloads.
    [Fact]

Copy link
Member

@jnyrup jnyrup left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Besides a tiny comment, I don't have anything to add to Dennis' review.


* Clarify the date/time type when comparing non-compatible dates and times in `BeEquivalentTo` - [3049](https://github.com/fluentassertions/fluentassertions/pull/3049)
* Improve the rendering of exception messages when using `WithMessage` for better readability - [3039](https://github.com/fluentassertions/fluentassertions/pull/3039)
* Added `Should().Throw()`, `ThrowAsync()` and `ThrowWithinAsync()` flavors that don’t require a specific exception type - [3056](https://github.com/fluentassertions/fluentassertions/issues/3056)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Additionally we link to the PR resolving an issue and not the issue itself.

@dennisdoomen dennisdoomen marked this pull request as ready for review June 20, 2025 13:40
Xceed-DelvaJB and others added 3 commits June 22, 2025 11:25
Grouped tests in nested classes based on API.
Updated some test names to fit with new naming-style.

## 8.4.0

* Added `Should().Throw()`, `ThrowAsync()` and `ThrowWithinAsync()` flavors that don’t require a specific exception type - [3059](https://github.com/fluentassertions/fluentassertions/pull/3059)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔧 This should be placed under the "enhancements" section. See also previous versions.

}

[Fact]
public async Task When_async_method_throws_any_exception_it_should_succeed()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yeah, I'm afraid I've sent you into a rabbit hole. The idea is that we group the tests under the nested classes and use names to represent them based on API or capability, e.g. NotThrowAfterAsync, Actions or NogGenericAsyncFunctions (without the Assertions part). And if we do decide to refactor such a big class we either do that

  1. In a separate PR
  2. In a separate commit if your PR has been properly organized into focused commits we want to keep after merging.

In your case, we will squash the PR as you have merged the main branch into the feature branch. We only do rebases.

So let's remove these nested classed you've added so we can look at this at a later point of time.

Put release note in its proper section.
@dennisdoomen dennisdoomen merged commit cc607f1 into fluentassertions:main Jun 24, 2025
8 checks passed
@dennisdoomen
Copy link
Member

Thanks @Xceed-DelvaJB

ITHedgeHog pushed a commit to ITHedgeHog/IntervalGenerator that referenced this pull request Jan 27, 2026
Updated
[FluentAssertions](https://github.com/fluentassertions/fluentassertions)
from 8.0.0 to 8.8.0.

<details>
<summary>Release notes</summary>

_Sourced from [FluentAssertions's
releases](https://github.com/fluentassertions/fluentassertions/releases)._

## 8.8.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### New features
* Add support for MSTest4 by @​jnyrup in
fluentassertions/fluentassertions#3111
### Improvements
* Allow WithoutMessage when using Should().Throw() and ThrowAsync() by
@​dennisdoomen in
fluentassertions/fluentassertions#3100
* Improve reporting of the differences between long strings by
@​dennisdoomen in
fluentassertions/fluentassertions#3101
* Allow customizing the equivalency behavior for BeXmlSerializable by
@​logiclrd in
fluentassertions/fluentassertions#3107
### Documentation
* Add docs for `config` parameter by @​jnyrup in
fluentassertions/fluentassertions#3104
### Others
* Refreshed readme by @​dennisdoomen in
fluentassertions/fluentassertions#3106
* Merge hotfix 8.7.1 back to main by @​dennisdoomen in
fluentassertions/fluentassertions#3109
* Fix release notes by @​jnyrup in
fluentassertions/fluentassertions#3112
* Bump github/codeql-action from 3 to 4 by @​dependabot[bot] in
fluentassertions/fluentassertions#3113


**Full Changelog**:
fluentassertions/fluentassertions@8.7.1...8.8.0

## 8.7.1

<!-- Release notes generated using configuration in .github/release.yml
at hotfix/8.7.1 -->

## What's Changed
### Others
* JSON assertions did not properly handle floats, doubles and unsigned …
by @​dennisdoomen in
fluentassertions/fluentassertions#3105
* Fixed ambiguity when using Should on a JsonNode derived class ... by
@​JSkimming in
fluentassertions/fluentassertions#3102


**Full Changelog**:
fluentassertions/fluentassertions@8.7.0...8.7.1

## 8.7.0

<!-- Release notes generated using configuration in .github/release.yml
at ae620add07cf6666841e568fd3bf8a0733478bb5 -->

## What's Changed
### New features
* Added System.Text.Json assertion APIs and BeEquivalentTo support by
@​dennisdoomen in
fluentassertions/fluentassertions#3094
### Others
* Address a bunch of Qodana issues by @​dennisdoomen in
fluentassertions/fluentassertions#3082
* Bump actions/checkout from 4 to 5 by @​dependabot[bot] in
fluentassertions/fluentassertions#3085
* Bump JetBrains/qodana-action from 2025.1 to 2025.2 by
@​dependabot[bot] in
fluentassertions/fluentassertions#3086
* Bump actions/download-artifact from 4 to 5 by @​dependabot[bot] in
fluentassertions/fluentassertions#3087
* Bump cspell from 9.2.0 to 9.2.1 by @​dependabot[bot] in
fluentassertions/fluentassertions#3090
* Bump actions/setup-dotnet from 4 to 5 by @​dependabot[bot] in
fluentassertions/fluentassertions#3092
* Add lock file for nuget packages by @​jnyrup in
fluentassertions/fluentassertions#3084
* Set `DisableImplicitNuGetFallbackFolder` by @​jnyrup in
fluentassertions/fluentassertions#3095
* Bump Nugets by @​jnyrup in
fluentassertions/fluentassertions#3096
* Revert package locking by @​jnyrup in
fluentassertions/fluentassertions#3098
* Clean-up tests related to exceptions by @​dennisdoomen in
fluentassertions/fluentassertions#3099


**Full Changelog**:
fluentassertions/fluentassertions@8.6.0...8.7.0

## 8.6.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Improvements
* Add support for inline assertions using `Value.ThatMatches` and
`Value.ThatSatisfies` by @​dennisdoomen in
fluentassertions/fluentassertions#3076
### Others
* Remove Microsoft.SourceLink.GitHub by @​SimonCropp in
fluentassertions/fluentassertions#3072
* Bump cspell from 9.1.3 to 9.1.5 by @​dependabot[bot] in
fluentassertions/fluentassertions#3073
* Added PackageGuard to the build pipeline by @​dennisdoomen in
fluentassertions/fluentassertions#3075
* Bump cspell from 9.1.5 to 9.2.0 by @​dependabot[bot] in
fluentassertions/fluentassertions#3077
* Remove dependencies on Bogus by @​jnyrup in
fluentassertions/fluentassertions#3080
* Update nuget packages by @​jnyrup in
fluentassertions/fluentassertions#3081
* Follow-up to #​3076 by @​jnyrup in
fluentassertions/fluentassertions#3079
* Documentation and typo fixes by @​jnyrup in
fluentassertions/fluentassertions#3078

## New Contributors
* @​SimonCropp made their first contribution in
fluentassertions/fluentassertions#3072

**Full Changelog**:
fluentassertions/fluentassertions@8.5.0...8.6.0

## 8.5.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### New features
* Extended BeEquivalentTo with support for checking the type of the
properties by @​dennisdoomen in
fluentassertions/fluentassertions#3066
### Fixes
* Ensured WithTracing is safe when used with BeEquivalentTo globally by
@​dennisdoomen in
fluentassertions/fluentassertions#3067
### Others
* Revisit the .editorconfig rules by @​dennisdoomen in
fluentassertions/fluentassertions#3063
* Bump cspell from 9.1.1 to 9.1.2 by @​dependabot[bot] in
fluentassertions/fluentassertions#3068
* Use .NET 9 SDK by @​jnyrup in
fluentassertions/fluentassertions#3069
* Bump cspell from 9.1.2 to 9.1.3 by @​dependabot[bot] in
fluentassertions/fluentassertions#3071


**Full Changelog**:
fluentassertions/fluentassertions@8.4.0...8.5.0

## 8.4.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Improvements
* Allow excluding properties by name anywhere in the graph by
@​dennisdoomen in
fluentassertions/fluentassertions#3062
* Added Should().Throw(), ThrowAsync() and ThrowWithinAsync() flavors
that don’t require a specific exception type by @​Xceed-DelvaJB in
fluentassertions/fluentassertions#3059
### Others
* Bump cspell from 9.0.1 to 9.0.2 by @​dependabot in
fluentassertions/fluentassertions#3050
* Bump JetBrains/qodana-action from 2024.2 to 2025.1 by @​dependabot in
fluentassertions/fluentassertions#3044
* Fix qodana warnings by @​jnyrup in
fluentassertions/fluentassertions#3053
* Add contributor grant by @​dennisdoomen in
fluentassertions/fluentassertions#3055
* Bump cspell from 9.0.2 to 9.1.1 by @​dependabot in
fluentassertions/fluentassertions#3058

## New Contributors
* @​Xceed-DelvaJB made their first contribution in
fluentassertions/fluentassertions#3059

**Full Changelog**:
fluentassertions/fluentassertions@8.3.0...8.4.0

## 8.3.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Improvements
* Improve rendering of exception messages when using WithMessage by
@​dennisdoomen in
fluentassertions/fluentassertions#3039
* Clarify the date/time type when comparing dates, times and
combinations of those by @​dennisdoomen in
fluentassertions/fluentassertions#3049
### Others
* Bump cspell from 8.17.5 to 8.18.1 by @​dependabot in
fluentassertions/fluentassertions#3041
* Bump cspell from 8.18.1 to 8.19.2 by @​dependabot in
fluentassertions/fluentassertions#3042
* Bump cspell from 8.19.2 to 8.19.3 by @​dependabot in
fluentassertions/fluentassertions#3043
* Bump cspell from 8.19.3 to 9.0.0 by @​dependabot in
fluentassertions/fluentassertions#3045
* Bump cspell from 9.0.0 to 9.0.1 by @​dependabot in
fluentassertions/fluentassertions#3046
* Fix links to test suites in bug report template by @​robvanuden in
fluentassertions/fluentassertions#3047


**Full Changelog**:
fluentassertions/fluentassertions@8.2.0...8.3.0

## 8.2.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Improvements
* Optimize various string operations by @​jnyrup in
fluentassertions/fluentassertions#3037
* Reworked formatting and support multi-dimensional arrays. by
@​dennisdoomen in
fluentassertions/fluentassertions#3009
### Fixes
* Restore `StringSyntax` annotations by @​jnyrup in
fluentassertions/fluentassertions#3033
* Regex fixups by @​jnyrup in
fluentassertions/fluentassertions#3034
* Handle missing caller identifier by @​jnyrup in
fluentassertions/fluentassertions#3036
### Others
* Bump cspell from 8.17.3 to 8.17.5 by @​dependabot in
fluentassertions/fluentassertions#3035


**Full Changelog**:
fluentassertions/fluentassertions@8.1.1...8.2.0

## 8.1.1

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Fixes
* Fix a formatting exception when {} is used as a dictionary key. by
@​dennisdoomen in
fluentassertions/fluentassertions#3029
* Removed the PS script that opens the FA website because it misbehaves.
by @​dennisdoomen in
fluentassertions/fluentassertions#3030


**Full Changelog**:
fluentassertions/fluentassertions@8.1.0...8.1.1

## 8.1.0

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Improvements
* Add [NotNull] attribute on the Should() method for object assertions
by @​0xced in
fluentassertions/fluentassertions#2987
* Improves the subject identification for chained assertions and those
that use Which by @​dennisdoomen in
fluentassertions/fluentassertions#3000
### Fixes
* Fixed a regression in which CompleteWithinAsync treated a canceled
task as an exception by @​dennisdoomen in
fluentassertions/fluentassertions#2853
### Documentation
* Reconnected the new license to the history of the old license by
@​dennisdoomen in
fluentassertions/fluentassertions#2985
* Removed an incorrect date/time example from the docs by @​dennisdoomen
in fluentassertions/fluentassertions#2989
### Others
* Make sure developers don't accidentally update to v8 without
understanding the new license by @​dennisdoomen in
fluentassertions/fluentassertions#2988
* Bump Microsoft.Testing.Extensions.TrxReport from 1.5.1 to 1.5.3 by
@​dependabot in
fluentassertions/fluentassertions#2993
* Bump TUnit from 0.6.154 to 0.7.24 by @​dependabot in
fluentassertions/fluentassertions#2992
* Bump the mstest group with 2 updates by @​dependabot in
fluentassertions/fluentassertions#2991
* Backport updates to pipelines by @​jnyrup in
fluentassertions/fluentassertions#3001
* Bump cspell from 8.17.2 to 8.17.3 by @​dependabot in
fluentassertions/fluentassertions#3005
* Bump Roslynator.Analyzers from 4.12.10 to 4.12.11 by @​dependabot in
fluentassertions/fluentassertions#3004
* Bump TUnit from 0.7.24 to 0.10.6 by @​dependabot in
fluentassertions/fluentassertions#3002
* Upmerge from v7 by @​dennisdoomen in
fluentassertions/fluentassertions#3006
* Renamed CallerStatementBuilder to StatementParser by @​dennisdoomen in
fluentassertions/fluentassertions#3007
* Bump Meziantou.Analyzer and Microsoft.NETFramework.ReferenceAssemblies
by @​dependabot in
fluentassertions/fluentassertions#3014
* Bump Microsoft.NET.Test.Sdk,
Microsoft.NETFramework.ReferenceAssemblies and Newtonsoft.Json by
@​dependabot in
fluentassertions/fluentassertions#3013
* Bump Microsoft.NETFramework.ReferenceAssemblies and
Roslynator.Analyzers by @​dependabot in
fluentassertions/fluentassertions#3012
* Bump the xunit group with 3 updates by @​dependabot in
fluentassertions/fluentassertions#3010
* Adjust dependencies by @​jnyrup in
fluentassertions/fluentassertions#3015
* Bump NUnit3TestAdapter from 4.6.0 to 5.0.0 in the nunit group by
@​dependabot in
fluentassertions/fluentassertions#3011
* Fixed typo in introduction page by @​tealamore in
fluentassertions/fluentassertions#3019
* Bump Verify.Xunit from 28.10.1 to 28.11.0 in the xunit group by
@​dependabot in
fluentassertions/fluentassertions#3022
* Bump TUnit from 0.10.6 to 0.13.3 by @​dependabot in
fluentassertions/fluentassertions#3026
* Bump Microsoft.Testing.Extensions.CodeCoverage from 17.13.1 to 17.14.1
by @​dependabot in
fluentassertions/fluentassertions#3024
* Bump the mstest group with 2 updates by @​dependabot in
fluentassertions/fluentassertions#3023
* Bump Microsoft.NETFramework.ReferenceAssemblies,
System.Collections.Immutable and System.Reflection.Metadata by
@​dependabot in
fluentassertions/fluentassertions#3025
* Upmerge from v7 by @​jnyrup in
fluentassertions/fluentassertions#3028
* Fixed a regression in which CompleteWithinAsync treated a canceled ta…
by @​dennisdoomen in
fluentassertions/fluentassertions#3027

## New Contributors
* @​tealamore made their first contribution in
fluentassertions/fluentassertions#3019

**Full Changelog**:
fluentassertions/fluentassertions@8.0.1...8.1.0

## 8.0.1

<!-- Release notes generated using configuration in .github/release.yml
at main -->

## What's Changed
### Improvements
* Provide a toggle to suppress the soft warning about commercial use by
@​dennisdoomen in
fluentassertions/fluentassertions#2984

### Others
* Update docs to make license change more clear by @​jnyrup in
fluentassertions/fluentassertions#2953
* Bump all dependencies by @​dennisdoomen in
fluentassertions/fluentassertions#2962
* Bump System.Collections.Immutable and System.Reflection.Metadata by
@​dependabot in
fluentassertions/fluentassertions#2969
* Bump SharpCompress from 0.38.0 to 0.39.0 by @​dependabot in
fluentassertions/fluentassertions#2968
* Bump the nuke group with 2 updates by @​dependabot in
fluentassertions/fluentassertions#2967
* Bump Verify.Xunit from 28.8.1 to 28.9.0 in the xunit group by
@​dependabot in
fluentassertions/fluentassertions#2965
* Bump the mstest group with 2 updates by @​dependabot in
fluentassertions/fluentassertions#2966
* Bump cspell from 8.17.1 to 8.17.2 by @​dependabot in
fluentassertions/fluentassertions#2964
* Discard backported changes from 7 by @​dennisdoomen in
fluentassertions/fluentassertions#2974
* Various textual and styling fixes as well as some clarification of v7
and v8. by @​dennisdoomen in
fluentassertions/fluentassertions#2978
* Bump Xunit.StaFact from 1.1.11 to 1.2.69 in the xunit group by
@​dependabot in
fluentassertions/fluentassertions#2979
* Bump TUnit from 0.6.33 to 0.6.154 by @​dependabot in
fluentassertions/fluentassertions#2980
* Bump Reflectify from 1.4.0 to 1.5.0 by @​dependabot in
fluentassertions/fluentassertions#2981
* Bump System.Formats.Asn1 from 9.0.0 to 9.0.1 by @​dependabot in
fluentassertions/fluentassertions#2983
* Bump coverlet.collector from 6.0.3 to 6.0.4 by @​dependabot in
fluentassertions/fluentassertions#2982


**Full Changelog**:
fluentassertions/fluentassertions@8.0.0...8.0.1

Commits viewable in [compare
view](fluentassertions/fluentassertions@8.0.0...8.8.0).
</details>

[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=FluentAssertions&package-manager=nuget&previous-version=8.0.0&new-version=8.8.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

Dependabot will resolve any conflicts with this PR as long as you don't
alter it yourself. You can also trigger a rebase manually by commenting
`@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits
that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)


</details>

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants