Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

await Task when inside using block #2157

Merged
merged 1 commit into from
Mar 28, 2023

Conversation

jnyrup
Copy link
Member

@jnyrup jnyrup commented Mar 27, 2023

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

Some analyzer I played around with some time ago pointed out that we weren't awaiting these Tasks.

@coveralls
Copy link

Pull Request Test Coverage Report for Build 4535199538

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 96.273%

Totals Coverage Status
Change from base Build 4525662800: 0.0%
Covered Lines: 8762
Relevant Lines: 8990

💛 - Coveralls

@lg2de
Copy link
Contributor

lg2de commented Mar 27, 2023

I think the analyzers you mentioned created false positives.
In this casees returning the task and awaiting it creates same result.

@jnyrup
Copy link
Member Author

jnyrup commented Mar 28, 2023

In this casees returning the task and awaiting it creates same result.

Not sure what you mean by "same result" here.

I guess we can agree that in general awaiting a task or not within a using statement can make a difference.

async Task CompleteWithinAsync()
{
    Console.WriteLine("starting");
    await Task.Delay(1000);
    Console.WriteLine("done");
}

sealed class AssertionScope : IDisposable
{
    public void Dispose()
    {
        Console.WriteLine("disposing");
    }
}
var returning = async () =>
{
    using var _ = new AssertionScope();
    await CompleteWithinAsync();
};

await returning();
starting
disposing
done
var awaiting = async () =>
{
    using var _ = new AssertionScope();
    await CompleteWithinAsync();
};

await awaiting();
starting
done
disposing

I agree that it doesn't seem necessary here to extend the lifetime of the constructed AssertionScope to include the async part of CompleteWithinAsync, but it shouldn't harm and it brings the code closer to how an end-user would use an AssertionScope.

@dennisdoomen
Copy link
Member

I think the analyzers you mentioned created false positives.
In this casees returning the task and awaiting it creates same result.

You're right. It doesn't make a difference. I suspect that technically adding async makes it even slower because of the state machine it generates.

@lg2de
Copy link
Contributor

lg2de commented Mar 28, 2023

When looking on the code last night on my phone I did not realize the AssertionScope...
Yes, in this case there may be a difference.

@jnyrup
Copy link
Member Author

jnyrup commented Mar 28, 2023

I think the analyzers you mentioned created false positives.
In this casees returning the task and awaiting it creates same result.

You're right. It doesn't make a difference. I suspect that technically adding async makes it even slower because of the state machine it generates.

@dennisdoomen
Did you see that there's a using var _ = new AssertionScope() right before returning a Task?

@dennisdoomen
Copy link
Member

Did you see that there's a using var _ = new AssertionScope() right before returning a Task?

Damnit, I did, but didn't realize the subtle change in behavior.

Was it https://www.meziantou.net/enforcing-asynchronous-code-good-practices-using-a-roslyn-analyzer.htm#ma0100-await-tasks-b?

@jnyrup
Copy link
Member Author

jnyrup commented Mar 28, 2023

I just had a note lying around, so not sure, but I think it might have been Microsoft.CodeAnalysis.NetAnalyzers which is the successor to Microsoft.CodeAnalysis.FxCopAnalyzers

@jnyrup jnyrup merged commit 88cbf35 into fluentassertions:develop Mar 28, 2023
3 checks passed
@jnyrup jnyrup deleted the using_inside_async branch March 28, 2023 09:40
@jnyrup
Copy link
Member Author

jnyrup commented Mar 28, 2023

renovate bot added a commit to cythral/brighid-discord-adapter that referenced this pull request Apr 20, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [FluentAssertions](https://www.fluentassertions.com/)
([source](https://togithub.com/fluentassertions/fluentassertions)) |
nuget | minor | `6.10.0` -> `6.11.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions</summary>

###
[`v6.11.0`](https://togithub.com/fluentassertions/fluentassertions/releases/tag/6.11.0)

[Compare
Source](https://togithub.com/fluentassertions/fluentassertions/compare/6.10.0...6.11.0)

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

#### What's Changed

##### New features

- Added `ThrowWithinAsync` assertions by
[@&#8203;lg2de](https://togithub.com/lg2de) in
[fluentassertions/fluentassertions#1974
- Add `WithoutStrictOrderingFor` overload with an expression by
[@&#8203;chrischu](https://togithub.com/chrischu) in
[fluentassertions/fluentassertions#2151

##### Improvements

- Add support to convert into to enum by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2147
- Use `ToString` to format exceptions by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2150

##### Fixes

- Increase robustness of assertions when wrapped in an `AssertionScope`
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2133
- Ensured the maximum depth is properly respecting the "official"
definition of depth by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2145
- Prevent `NullReferenceException` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2154
- Make `Excluding()` work on nested collections if root is a collection
by [@&#8203;whymatter](https://togithub.com/whymatter) in
[fluentassertions/fluentassertions#2135
- Prevent `InvalidOperationException` when formatting lambda expression
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2176

##### Documentation

- Add missing xml docs for parameters by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2134
- Fix xml docs for time-related assertions by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2153
- fix link to PR in release notes by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2171
- Do not interpret double braces as liquid template by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2181

##### Others

- Add optional parameter to generate a `binlog` file by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2127
- Dynamic copyright year by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[fluentassertions/fluentassertions#2128
- Minor tweaks to the .editorconfig and reformatted the entire code base
by [@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2117
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2129
- Styling to please both VS and Rider by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2130
- Use a fixed seed for random generator by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2131
- Pluralize "key" in failure message by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2138
- Preparing upgrade of analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2136
- Exception cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2155
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2156
- await `Task` when inside using block by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2157
- Use init properties by [@&#8203;jnyrup](https://togithub.com/jnyrup)
in
[fluentassertions/fluentassertions#2158
- Introduce Roslynator with adjusted rules and addressed issues by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2159
- Regex cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2162
- Introduce the Meziantou.Analyzer to improve our code even more. by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2160
- Some internal naming improvements by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2164
- Extracts the type reflection logic into a dedicated class by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2165
- Update to C# 11 by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2166
- Improve the `DataRowCollectionEquivalency` code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2163
- Improve the ExpressionExtensions coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2168
- Improve the DateOnly and TimeOnly code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2167
- Update to Coveralls v2 by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2173
- Migrate from FxCop to .NET Analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2174
- Use builtin coveralls flag to ignore missing coverage file by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2178
- Revert "Use builtin coveralls flag to ignore missing coverage file" by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2183
- Ensure running the site works again by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2185
- Prepare for .NET 8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2184
- Update Ruby dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2182

#### New Contributors

- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[fluentassertions/fluentassertions#2128
- [@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) made their
first contribution in
[fluentassertions/fluentassertions#2147
- [@&#8203;chrischu](https://togithub.com/chrischu) made their first
contribution in
[fluentassertions/fluentassertions#2151

**Full Changelog**:
fluentassertions/fluentassertions@6.10.0...6.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/cythral/brighid-discord-adapter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS41NC4wIiwidXBkYXRlZEluVmVyIjoiMzUuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to cythral/brighid-commands that referenced this pull request Apr 20, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [FluentAssertions](https://www.fluentassertions.com/)
([source](https://togithub.com/fluentassertions/fluentassertions)) |
nuget | minor | `6.10.0` -> `6.11.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions</summary>

###
[`v6.11.0`](https://togithub.com/fluentassertions/fluentassertions/releases/tag/6.11.0)

[Compare
Source](https://togithub.com/fluentassertions/fluentassertions/compare/6.10.0...6.11.0)

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

#### What's Changed

##### New features

- Added `ThrowWithinAsync` assertions by
[@&#8203;lg2de](https://togithub.com/lg2de) in
[fluentassertions/fluentassertions#1974
- Add `WithoutStrictOrderingFor` overload with an expression by
[@&#8203;chrischu](https://togithub.com/chrischu) in
[fluentassertions/fluentassertions#2151

##### Improvements

- Add support to convert into to enum by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2147
- Use `ToString` to format exceptions by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2150

##### Fixes

- Increase robustness of assertions when wrapped in an `AssertionScope`
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2133
- Ensured the maximum depth is properly respecting the "official"
definition of depth by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2145
- Prevent `NullReferenceException` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2154
- Make `Excluding()` work on nested collections if root is a collection
by [@&#8203;whymatter](https://togithub.com/whymatter) in
[fluentassertions/fluentassertions#2135
- Prevent `InvalidOperationException` when formatting lambda expression
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2176

##### Documentation

- Add missing xml docs for parameters by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2134
- Fix xml docs for time-related assertions by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2153
- fix link to PR in release notes by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2171
- Do not interpret double braces as liquid template by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2181

##### Others

- Add optional parameter to generate a `binlog` file by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2127
- Dynamic copyright year by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[fluentassertions/fluentassertions#2128
- Minor tweaks to the .editorconfig and reformatted the entire code base
by [@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2117
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2129
- Styling to please both VS and Rider by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2130
- Use a fixed seed for random generator by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2131
- Pluralize "key" in failure message by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2138
- Preparing upgrade of analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2136
- Exception cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2155
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2156
- await `Task` when inside using block by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2157
- Use init properties by [@&#8203;jnyrup](https://togithub.com/jnyrup)
in
[fluentassertions/fluentassertions#2158
- Introduce Roslynator with adjusted rules and addressed issues by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2159
- Regex cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2162
- Introduce the Meziantou.Analyzer to improve our code even more. by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2160
- Some internal naming improvements by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2164
- Extracts the type reflection logic into a dedicated class by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2165
- Update to C# 11 by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2166
- Improve the `DataRowCollectionEquivalency` code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2163
- Improve the ExpressionExtensions coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2168
- Improve the DateOnly and TimeOnly code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2167
- Update to Coveralls v2 by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2173
- Migrate from FxCop to .NET Analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2174
- Use builtin coveralls flag to ignore missing coverage file by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2178
- Revert "Use builtin coveralls flag to ignore missing coverage file" by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2183
- Ensure running the site works again by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2185
- Prepare for .NET 8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2184
- Update Ruby dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2182

#### New Contributors

- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[fluentassertions/fluentassertions#2128
- [@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) made their
first contribution in
[fluentassertions/fluentassertions#2147
- [@&#8203;chrischu](https://togithub.com/chrischu) made their first
contribution in
[fluentassertions/fluentassertions#2151

**Full Changelog**:
fluentassertions/fluentassertions@6.10.0...6.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/cythral/brighid-commands).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS41NC4wIiwidXBkYXRlZEluVmVyIjoiMzUuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
vbreuss pushed a commit to Testably/Testably.Abstractions that referenced this pull request Apr 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [FluentAssertions](https://www.fluentassertions.com/)
([source](https://togithub.com/fluentassertions/fluentassertions)) |
nuget | minor | `6.10.0` -> `6.11.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions</summary>

###
[`v6.11.0`](https://togithub.com/fluentassertions/fluentassertions/releases/tag/6.11.0)

[Compare
Source](https://togithub.com/fluentassertions/fluentassertions/compare/6.10.0...6.11.0)

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

##### What's Changed

##### New features

- Added `ThrowWithinAsync` assertions by
[@&#8203;lg2de](https://togithub.com/lg2de) in
[fluentassertions/fluentassertions#1974
- Add `WithoutStrictOrderingFor` overload with an expression by
[@&#8203;chrischu](https://togithub.com/chrischu) in
[fluentassertions/fluentassertions#2151

##### Improvements

- Add support to convert into to enum by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2147
- Use `ToString` to format exceptions by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2150

##### Fixes

- Increase robustness of assertions when wrapped in an `AssertionScope`
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2133
- Ensured the maximum depth is properly respecting the "official"
definition of depth by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2145
- Prevent `NullReferenceException` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2154
- Make `Excluding()` work on nested collections if root is a collection
by [@&#8203;whymatter](https://togithub.com/whymatter) in
[fluentassertions/fluentassertions#2135
- Prevent `InvalidOperationException` when formatting lambda expression
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2176

##### Documentation

- Add missing xml docs for parameters by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2134
- Fix xml docs for time-related assertions by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2153
- fix link to PR in release notes by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2171
- Do not interpret double braces as liquid template by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2181

##### Others

- Add optional parameter to generate a `binlog` file by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2127
- Dynamic copyright year by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[fluentassertions/fluentassertions#2128
- Minor tweaks to the .editorconfig and reformatted the entire code base
by [@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2117
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2129
- Styling to please both VS and Rider by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2130
- Use a fixed seed for random generator by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2131
- Pluralize "key" in failure message by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2138
- Preparing upgrade of analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2136
- Exception cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2155
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2156
- await `Task` when inside using block by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2157
- Use init properties by [@&#8203;jnyrup](https://togithub.com/jnyrup)
in
[fluentassertions/fluentassertions#2158
- Introduce Roslynator with adjusted rules and addressed issues by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2159
- Regex cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2162
- Introduce the Meziantou.Analyzer to improve our code even more. by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2160
- Some internal naming improvements by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2164
- Extracts the type reflection logic into a dedicated class by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2165
- Update to C# 11 by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2166
- Improve the `DataRowCollectionEquivalency` code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2163
- Improve the ExpressionExtensions coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2168
- Improve the DateOnly and TimeOnly code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2167
- Update to Coveralls v2 by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2173
- Migrate from FxCop to .NET Analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2174
- Use builtin coveralls flag to ignore missing coverage file by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2178
- Revert "Use builtin coveralls flag to ignore missing coverage file" by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2183
- Ensure running the site works again by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2185
- Prepare for .NET 8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2184
- Update Ruby dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2182

##### New Contributors

- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[fluentassertions/fluentassertions#2128
- [@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) made their
first contribution in
[fluentassertions/fluentassertions#2147
- [@&#8203;chrischu](https://togithub.com/chrischu) made their first
contribution in
[fluentassertions/fluentassertions#2151

**Full Changelog**:
fluentassertions/fluentassertions@6.10.0...6.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Testably/Testably.Abstractions).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS41NC4wIiwidXBkYXRlZEluVmVyIjoiMzUuNTQuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
ThorstenSauter pushed a commit to ThorstenSauter/NoPlan that referenced this pull request Apr 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [FluentAssertions](https://www.fluentassertions.com/)
([source](https://togithub.com/fluentassertions/fluentassertions)) |
nuget | minor | `6.10.0` -> `6.11.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions</summary>

###
[`v6.11.0`](https://togithub.com/fluentassertions/fluentassertions/releases/tag/6.11.0)

[Compare
Source](https://togithub.com/fluentassertions/fluentassertions/compare/6.10.0...6.11.0)

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

#### What's Changed

##### New features

- Added `ThrowWithinAsync` assertions by
[@&#8203;lg2de](https://togithub.com/lg2de) in
[fluentassertions/fluentassertions#1974
- Add `WithoutStrictOrderingFor` overload with an expression by
[@&#8203;chrischu](https://togithub.com/chrischu) in
[fluentassertions/fluentassertions#2151

##### Improvements

- Add support to convert into to enum by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2147
- Use `ToString` to format exceptions by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2150

##### Fixes

- Increase robustness of assertions when wrapped in an `AssertionScope`
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2133
- Ensured the maximum depth is properly respecting the "official"
definition of depth by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2145
- Prevent `NullReferenceException` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2154
- Make `Excluding()` work on nested collections if root is a collection
by [@&#8203;whymatter](https://togithub.com/whymatter) in
[fluentassertions/fluentassertions#2135
- Prevent `InvalidOperationException` when formatting lambda expression
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2176

##### Documentation

- Add missing xml docs for parameters by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2134
- Fix xml docs for time-related assertions by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2153
- fix link to PR in release notes by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2171
- Do not interpret double braces as liquid template by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2181

##### Others

- Add optional parameter to generate a `binlog` file by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2127
- Dynamic copyright year by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[fluentassertions/fluentassertions#2128
- Minor tweaks to the .editorconfig and reformatted the entire code base
by [@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2117
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2129
- Styling to please both VS and Rider by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2130
- Use a fixed seed for random generator by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2131
- Pluralize "key" in failure message by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2138
- Preparing upgrade of analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2136
- Exception cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2155
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2156
- await `Task` when inside using block by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2157
- Use init properties by [@&#8203;jnyrup](https://togithub.com/jnyrup)
in
[fluentassertions/fluentassertions#2158
- Introduce Roslynator with adjusted rules and addressed issues by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2159
- Regex cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2162
- Introduce the Meziantou.Analyzer to improve our code even more. by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2160
- Some internal naming improvements by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2164
- Extracts the type reflection logic into a dedicated class by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2165
- Update to C# 11 by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2166
- Improve the `DataRowCollectionEquivalency` code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2163
- Improve the ExpressionExtensions coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2168
- Improve the DateOnly and TimeOnly code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2167
- Update to Coveralls v2 by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2173
- Migrate from FxCop to .NET Analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2174
- Use builtin coveralls flag to ignore missing coverage file by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2178
- Revert "Use builtin coveralls flag to ignore missing coverage file" by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2183
- Ensure running the site works again by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2185
- Prepare for .NET 8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2184
- Update Ruby dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2182

#### New Contributors

- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[fluentassertions/fluentassertions#2128
- [@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) made their
first contribution in
[fluentassertions/fluentassertions#2147
- [@&#8203;chrischu](https://togithub.com/chrischu) made their first
contribution in
[fluentassertions/fluentassertions#2151

**Full Changelog**:
fluentassertions/fluentassertions@6.10.0...6.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 2am" (UTC), Automerge - At any
time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/ThorstenSauter/NoPlan).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS41Ni4wIiwidXBkYXRlZEluVmVyIjoiMzUuNTYuMCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to orso-co/Orso.Arpa.Api that referenced this pull request Apr 23, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [FluentAssertions](https://www.fluentassertions.com/)
([source](https://togithub.com/fluentassertions/fluentassertions)) |
nuget | minor | `6.10.0` -> `6.11.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions</summary>

###
[`v6.11.0`](https://togithub.com/fluentassertions/fluentassertions/releases/tag/6.11.0)

[Compare
Source](https://togithub.com/fluentassertions/fluentassertions/compare/6.10.0...6.11.0)

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

#### What's Changed

##### New features

- Added `ThrowWithinAsync` assertions by
[@&#8203;lg2de](https://togithub.com/lg2de) in
[fluentassertions/fluentassertions#1974
- Add `WithoutStrictOrderingFor` overload with an expression by
[@&#8203;chrischu](https://togithub.com/chrischu) in
[fluentassertions/fluentassertions#2151

##### Improvements

- Add support to convert into to enum by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2147
- Use `ToString` to format exceptions by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2150

##### Fixes

- Increase robustness of assertions when wrapped in an `AssertionScope`
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2133
- Ensured the maximum depth is properly respecting the "official"
definition of depth by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2145
- Prevent `NullReferenceException` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2154
- Make `Excluding()` work on nested collections if root is a collection
by [@&#8203;whymatter](https://togithub.com/whymatter) in
[fluentassertions/fluentassertions#2135
- Prevent `InvalidOperationException` when formatting lambda expression
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2176

##### Documentation

- Add missing xml docs for parameters by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2134
- Fix xml docs for time-related assertions by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2153
- fix link to PR in release notes by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2171
- Do not interpret double braces as liquid template by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2181

##### Others

- Add optional parameter to generate a `binlog` file by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2127
- Dynamic copyright year by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[fluentassertions/fluentassertions#2128
- Minor tweaks to the .editorconfig and reformatted the entire code base
by [@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2117
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2129
- Styling to please both VS and Rider by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2130
- Use a fixed seed for random generator by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2131
- Pluralize "key" in failure message by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2138
- Preparing upgrade of analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2136
- Exception cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2155
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2156
- await `Task` when inside using block by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2157
- Use init properties by [@&#8203;jnyrup](https://togithub.com/jnyrup)
in
[fluentassertions/fluentassertions#2158
- Introduce Roslynator with adjusted rules and addressed issues by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2159
- Regex cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2162
- Introduce the Meziantou.Analyzer to improve our code even more. by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2160
- Some internal naming improvements by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2164
- Extracts the type reflection logic into a dedicated class by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2165
- Update to C# 11 by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2166
- Improve the `DataRowCollectionEquivalency` code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2163
- Improve the ExpressionExtensions coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2168
- Improve the DateOnly and TimeOnly code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2167
- Update to Coveralls v2 by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2173
- Migrate from FxCop to .NET Analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2174
- Use builtin coveralls flag to ignore missing coverage file by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2178
- Revert "Use builtin coveralls flag to ignore missing coverage file" by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2183
- Ensure running the site works again by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2185
- Prepare for .NET 8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2184
- Update Ruby dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2182

#### New Contributors

- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[fluentassertions/fluentassertions#2128
- [@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) made their
first contribution in
[fluentassertions/fluentassertions#2147
- [@&#8203;chrischu](https://togithub.com/chrischu) made their first
contribution in
[fluentassertions/fluentassertions#2151

**Full Changelog**:
fluentassertions/fluentassertions@6.10.0...6.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 10pm every weekday,every
weekend,before 5am every weekday" in timezone Europe/Berlin, Automerge -
At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/orso-co/Orso.Arpa.Api).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS41Ny40IiwidXBkYXRlZEluVmVyIjoiMzUuNTcuNCJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
vbreuss pushed a commit to Testably/Testably.Architecture.Rules that referenced this pull request May 22, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [FluentAssertions](https://www.fluentassertions.com/)
([source](https://togithub.com/fluentassertions/fluentassertions)) |
nuget | minor | `6.10.0` -> `6.11.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions</summary>

###
[`v6.11.0`](https://togithub.com/fluentassertions/fluentassertions/releases/tag/6.11.0)

[Compare
Source](https://togithub.com/fluentassertions/fluentassertions/compare/6.10.0...6.11.0)

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

#### What's Changed

##### New features

- Added `ThrowWithinAsync` assertions by
[@&#8203;lg2de](https://togithub.com/lg2de) in
[fluentassertions/fluentassertions#1974
- Add `WithoutStrictOrderingFor` overload with an expression by
[@&#8203;chrischu](https://togithub.com/chrischu) in
[fluentassertions/fluentassertions#2151

##### Improvements

- Add support to convert into to enum by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2147
- Use `ToString` to format exceptions by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2150

##### Fixes

- Increase robustness of assertions when wrapped in an `AssertionScope`
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2133
- Ensured the maximum depth is properly respecting the "official"
definition of depth by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2145
- Prevent `NullReferenceException` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2154
- Make `Excluding()` work on nested collections if root is a collection
by [@&#8203;whymatter](https://togithub.com/whymatter) in
[fluentassertions/fluentassertions#2135
- Prevent `InvalidOperationException` when formatting lambda expression
by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2176

##### Documentation

- Add missing xml docs for parameters by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2134
- Fix xml docs for time-related assertions by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2153
- fix link to PR in release notes by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2171
- Do not interpret double braces as liquid template by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2181

##### Others

- Add optional parameter to generate a `binlog` file by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2127
- Dynamic copyright year by
[@&#8203;martincostello](https://togithub.com/martincostello) in
[fluentassertions/fluentassertions#2128
- Minor tweaks to the .editorconfig and reformatted the entire code base
by [@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2117
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2129
- Styling to please both VS and Rider by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2130
- Use a fixed seed for random generator by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2131
- Pluralize "key" in failure message by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2138
- Preparing upgrade of analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2136
- Exception cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2155
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2156
- await `Task` when inside using block by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2157
- Use init properties by [@&#8203;jnyrup](https://togithub.com/jnyrup)
in
[fluentassertions/fluentassertions#2158
- Introduce Roslynator with adjusted rules and addressed issues by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2159
- Regex cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2162
- Introduce the Meziantou.Analyzer to improve our code even more. by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2160
- Some internal naming improvements by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2164
- Extracts the type reflection logic into a dedicated class by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2165
- Update to C# 11 by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2166
- Improve the `DataRowCollectionEquivalency` code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2163
- Improve the ExpressionExtensions coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2168
- Improve the DateOnly and TimeOnly code coverage by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2167
- Update to Coveralls v2 by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2173
- Migrate from FxCop to .NET Analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2174
- Use builtin coveralls flag to ignore missing coverage file by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2178
- Revert "Use builtin coveralls flag to ignore missing coverage file" by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2183
- Ensure running the site works again by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2185
- Prepare for .NET 8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2184
- Update Ruby dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2182

#### New Contributors

- [@&#8203;martincostello](https://togithub.com/martincostello) made
their first contribution in
[fluentassertions/fluentassertions#2128
- [@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) made their
first contribution in
[fluentassertions/fluentassertions#2147
- [@&#8203;chrischu](https://togithub.com/chrischu) made their first
contribution in
[fluentassertions/fluentassertions#2151

**Full Changelog**:
fluentassertions/fluentassertions@6.10.0...6.11.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/Testably/Testably.Architecture.Rules).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS45Ny4wIiwidXBkYXRlZEluVmVyIjoiMzUuOTcuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants