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

Qodana fixes #2221

Merged
merged 11 commits into from Aug 17, 2023
Merged

Qodana fixes #2221

merged 11 commits into from Aug 17, 2023

Conversation

IT-VBFK
Copy link
Contributor

@IT-VBFK IT-VBFK commented Jun 13, 2023

First few Qodana "fixes".

Please close safely if it does not suit you :)

Note that I have most likely not covered all "same errors".

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

@IT-VBFK IT-VBFK force-pushed the quodana-fixes branch 4 times, most recently from ca683c5 to 675037b Compare June 13, 2023 19:34
@coveralls
Copy link

coveralls commented Jun 13, 2023

Pull Request Test Coverage Report for Build 5717365346

Warning: This coverage report may be inaccurate.

This pull request's base commit is no longer the HEAD commit of its target branch. This means it includes changes from outside the original pull request, including, potentially, unrelated coverage changes.

Details

  • 3 of 4 (75.0%) changed or added relevant lines in 4 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage decreased (-0.007%) to 97.224%

Changes Missing Coverage Covered Lines Changed/Added Lines %
Src/FluentAssertions/Formatting/DefaultValueFormatter.cs 0 1 0.0%
Totals Coverage Status
Change from base Build 5708086092: -0.007%
Covered Lines: 12903
Relevant Lines: 13146

💛 - Coveralls

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Jun 13, 2023

Pretty sure that I would go straight to a closed institution after I am done here 😂

I also pretty sure that this is a never ending story ;)

@IT-VBFK IT-VBFK force-pushed the quodana-fixes branch 4 times, most recently from d4e6af6 to 028e0dc Compare June 14, 2023 15:48
@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Jun 15, 2023

To be honest... I'm in doubt whether this sort of changes have an end..

e.g. the latest Quodana run:
image

I am pretty sure that I have fixed less than 92 problems, but in return we have 92 new ones.

@dennisdoomen
Copy link
Member

I am pretty sure that I have fixed less than 92 problems, but in return we have 92 new ones.

Because you touched old code ;-). But this requires tweaking. Not everything should be checked by Quodana.

@jnyrup jnyrup mentioned this pull request Jul 2, 2023
7 tasks
@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Jul 31, 2023

Hi

I will close this, because I am not that familiar with the whole codebase 🤔

But I stay attentively on this topic 🙃

@IT-VBFK IT-VBFK closed this Jul 31, 2023
@jnyrup
Copy link
Member

jnyrup commented Jul 31, 2023

Ohh... I liked this PR.
I only had some final comments before I was ready to merge it.

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Jul 31, 2023

Oh.. in that case.. I will open it again 🫣

Copy link
Member

@dennisdoomen dennisdoomen left a comment

Choose a reason for hiding this comment

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

We need to disable the two rules (one only for the test projects).

@dennisdoomen dennisdoomen changed the title Quodana fixes Qodana fixes Aug 12, 2023
@dennisdoomen
Copy link
Member

It would be nice to use fix-up commits to remove those reversion commits from the PR

image

Copy link
Contributor

@Corniel Corniel left a comment

Choose a reason for hiding this comment

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

LGTM

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Aug 16, 2023

@jnyrup What should we do regarding var-qodana-problems?

@jnyrup
Copy link
Member

jnyrup commented Aug 16, 2023

Suspicious comparison: there is no type in the solution which is inherited from both 'FluentAssertions.Primitives.DateTimeOffsetRangeAssertions' and 'System.DateTimeOffset'

This looks like a bug in Qodana to me.

set { nonSerializable = value; }

I'm fine changing this to => nonSerializable = value;

someObject.Equals(someObject);

Can probably be changed to someObject.Equals(null);

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Aug 16, 2023

Suspicious comparison: there is no type in the solution which is inherited from both 'FluentAssertions.Primitives.DateTimeOffsetRangeAssertions' and 'System.DateTimeOffset'

This looks like a bug in Qodana to me.

Ok
I find it really weird, that qodana even takes a feature (https://dotnetfiddle.net/hCSuRg) (which C# doesn't have) into consideration 😂

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Aug 16, 2023

var action = () => someDateTimeOffset.Should().BeLessThan(0.Seconds()).Equals(someDateTimeOffset);

Or we change this also to e.g. var action = () => someDateTimeOffset.Should().BeLessThan(0.Seconds()).Equals(null);

@dennisdoomen
Copy link
Member

I find it really weird, that qodana even takes a feature (https://dotnetfiddle.net/hCSuRg) (which C# doesn't have) into consideration

It's not just Qodana. Rider is warning about the same issue.

image

So maybe we can just suppress that inspection for all *.specs files?

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Aug 16, 2023

If @jnyrup agrees with that :)

@jnyrup
Copy link
Member

jnyrup commented Aug 16, 2023

Now I understand the issue. Thought it was about the use of var. I'm quite sure it's warning about using Equals on two types, that besides object, type-hierachy-wise are completely disconnected and will probably never return true.

Can we silence the analyzer bu passing null in?

@IT-VBFK
Copy link
Contributor Author

IT-VBFK commented Aug 16, 2023

Let's find out ;)

Edit: Works like a charm :D

@dennisdoomen dennisdoomen merged commit f028ea3 into fluentassertions:develop Aug 17, 2023
5 checks passed
@IT-VBFK IT-VBFK deleted the quodana-fixes branch August 18, 2023 12:51
@jnyrup jnyrup added the building Building and Infrastructure of Fluent Assertions label Aug 19, 2023
mergify bot pushed a commit to Testably/Testably.Abstractions that referenced this pull request Aug 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.11.0` -> `6.12.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions (FluentAssertions)</summary>

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

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

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

#### What's Changed

##### New features

- Added `Be`, `NotBe` and `BeOneOf` for object comparisons with custom
comparer by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2243
- Extend `AssemblyAssertions` with `HavePublicKey` and `BeUnsigned` by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2207
- Add `NotContainItemsAssignableTo` by
[@&#8203;Leo506](https://togithub.com/Leo506) in
[fluentassertions/fluentassertions#2266

##### Improvements

- Format records and anonymous types with their member values by
[@&#8203;benagain](https://togithub.com/benagain) in
[fluentassertions/fluentassertions#2144
- Improve caller identification for Visual Basic by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2254

##### Fixes

- Avoid quoting newlines by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2202
- Include because+becauseArgs when comparing collections of enums for
equivalency by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2214
- Fix auto conversion to enums by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2261

##### Documentation

- Github -> GitHub by
[@&#8203;danielchalmers](https://togithub.com/danielchalmers) in
[fluentassertions/fluentassertions#2190
- Fix badge links by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2193
- Fix example wording by [@&#8203;cskwrd](https://togithub.com/cskwrd)
in
[fluentassertions/fluentassertions#2206
- Improve documentation on `ExcludingNestedObjects` by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2211
- Add missing `HaveElement()` occurrence docs by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2217
- Add documentation for `IComparer<T>` overload by
[@&#8203;ITaluone](https://togithub.com/ITaluone) in
[fluentassertions/fluentassertions#2220
- Update docs about thread safety by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2238

##### Others

- CA1860: Avoid using 'Enumerable.Any()' extension method by
[@&#8203;Evangelink](https://togithub.com/Evangelink) in
[fluentassertions/fluentassertions#2196
- Update PR template by
[@&#8203;eNeRGy164](https://togithub.com/eNeRGy164) in
[fluentassertions/fluentassertions#2188
- Code coverage improvements by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2180
- Remove sponsor Semantic Merge from the website by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2194
- Upmerge master to develop by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2195
- Simplify `GenericDictionaryEquivalencyStep` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2191
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2201
- Bump all dependencies by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2198
- Add Qodana by [@&#8203;matkoch](https://togithub.com/matkoch) in
[fluentassertions/fluentassertions#2204
- Bump nuget dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2227
- Prepare for .NET8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2228
- Qodana fixes by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2229
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2240
- Analyzer cleanups by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2250
- Group framework dependent configuration by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2247
- Update cspell by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2255
- Update ruby gems by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2257
- Another Qodana test from the same repository by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2258
- Qodana fixes by [@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2221
- Add a pre-check if a user can help with a PR by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2262
- Fix qodana issues part 2 by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2264
- Release 6.12 by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2270

#### New Contributors

- [@&#8203;benagain](https://togithub.com/benagain) made their first
contribution in
[fluentassertions/fluentassertions#2144
- [@&#8203;cskwrd](https://togithub.com/cskwrd) made their first
contribution in
[fluentassertions/fluentassertions#2206
- [@&#8203;Corniel](https://togithub.com/Corniel) made their first
contribution in
[fluentassertions/fluentassertions#2247
- [@&#8203;Leo506](https://togithub.com/Leo506) made their first
contribution in
[fluentassertions/fluentassertions#2266

**Full Changelog**:
fluentassertions/fluentassertions@6.11.0...6.12.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://developer.mend.io/github/Testably/Testably.Abstractions).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Testably/Testably.Architecture.Rules that referenced this pull request Aug 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.11.0` -> `6.12.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions (FluentAssertions)</summary>

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

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

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

#### What's Changed

##### New features

- Added `Be`, `NotBe` and `BeOneOf` for object comparisons with custom
comparer by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2243
- Extend `AssemblyAssertions` with `HavePublicKey` and `BeUnsigned` by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2207
- Add `NotContainItemsAssignableTo` by
[@&#8203;Leo506](https://togithub.com/Leo506) in
[fluentassertions/fluentassertions#2266

##### Improvements

- Format records and anonymous types with their member values by
[@&#8203;benagain](https://togithub.com/benagain) in
[fluentassertions/fluentassertions#2144
- Improve caller identification for Visual Basic by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2254

##### Fixes

- Avoid quoting newlines by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2202
- Include because+becauseArgs when comparing collections of enums for
equivalency by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2214
- Fix auto conversion to enums by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2261

##### Documentation

- Github -> GitHub by
[@&#8203;danielchalmers](https://togithub.com/danielchalmers) in
[fluentassertions/fluentassertions#2190
- Fix badge links by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2193
- Fix example wording by [@&#8203;cskwrd](https://togithub.com/cskwrd)
in
[fluentassertions/fluentassertions#2206
- Improve documentation on `ExcludingNestedObjects` by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2211
- Add missing `HaveElement()` occurrence docs by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2217
- Add documentation for `IComparer<T>` overload by
[@&#8203;ITaluone](https://togithub.com/ITaluone) in
[fluentassertions/fluentassertions#2220
- Update docs about thread safety by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2238

##### Others

- CA1860: Avoid using 'Enumerable.Any()' extension method by
[@&#8203;Evangelink](https://togithub.com/Evangelink) in
[fluentassertions/fluentassertions#2196
- Update PR template by
[@&#8203;eNeRGy164](https://togithub.com/eNeRGy164) in
[fluentassertions/fluentassertions#2188
- Code coverage improvements by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2180
- Remove sponsor Semantic Merge from the website by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2194
- Upmerge master to develop by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2195
- Simplify `GenericDictionaryEquivalencyStep` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2191
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2201
- Bump all dependencies by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2198
- Add Qodana by [@&#8203;matkoch](https://togithub.com/matkoch) in
[fluentassertions/fluentassertions#2204
- Bump nuget dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2227
- Prepare for .NET8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2228
- Qodana fixes by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2229
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2240
- Analyzer cleanups by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2250
- Group framework dependent configuration by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2247
- Update cspell by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2255
- Update ruby gems by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2257
- Another Qodana test from the same repository by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2258
- Qodana fixes by [@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2221
- Add a pre-check if a user can help with a PR by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2262
- Fix qodana issues part 2 by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2264
- Release 6.12 by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2270

#### New Contributors

- [@&#8203;benagain](https://togithub.com/benagain) made their first
contribution in
[fluentassertions/fluentassertions#2144
- [@&#8203;cskwrd](https://togithub.com/cskwrd) made their first
contribution in
[fluentassertions/fluentassertions#2206
- [@&#8203;Corniel](https://togithub.com/Corniel) made their first
contribution in
[fluentassertions/fluentassertions#2247
- [@&#8203;Leo506](https://togithub.com/Leo506) made their first
contribution in
[fluentassertions/fluentassertions#2266

**Full Changelog**:
fluentassertions/fluentassertions@6.11.0...6.12.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://developer.mend.io/github/Testably/Testably.Architecture.Rules).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mergify bot pushed a commit to Testably/Testably.Abstractions.FluentAssertions that referenced this pull request Aug 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.11.0` -> `6.12.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions (FluentAssertions)</summary>

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

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

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

##### What's Changed

##### New features

- Added `Be`, `NotBe` and `BeOneOf` for object comparisons with custom
comparer by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2243
- Extend `AssemblyAssertions` with `HavePublicKey` and `BeUnsigned` by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2207
- Add `NotContainItemsAssignableTo` by
[@&#8203;Leo506](https://togithub.com/Leo506) in
[fluentassertions/fluentassertions#2266

##### Improvements

- Format records and anonymous types with their member values by
[@&#8203;benagain](https://togithub.com/benagain) in
[fluentassertions/fluentassertions#2144
- Improve caller identification for Visual Basic by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2254

##### Fixes

- Avoid quoting newlines by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2202
- Include because+becauseArgs when comparing collections of enums for
equivalency by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2214
- Fix auto conversion to enums by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2261

##### Documentation

- Github -> GitHub by
[@&#8203;danielchalmers](https://togithub.com/danielchalmers) in
[fluentassertions/fluentassertions#2190
- Fix badge links by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2193
- Fix example wording by [@&#8203;cskwrd](https://togithub.com/cskwrd)
in
[fluentassertions/fluentassertions#2206
- Improve documentation on `ExcludingNestedObjects` by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2211
- Add missing `HaveElement()` occurrence docs by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2217
- Add documentation for `IComparer<T>` overload by
[@&#8203;ITaluone](https://togithub.com/ITaluone) in
[fluentassertions/fluentassertions#2220
- Update docs about thread safety by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2238

##### Others

- CA1860: Avoid using 'Enumerable.Any()' extension method by
[@&#8203;Evangelink](https://togithub.com/Evangelink) in
[fluentassertions/fluentassertions#2196
- Update PR template by
[@&#8203;eNeRGy164](https://togithub.com/eNeRGy164) in
[fluentassertions/fluentassertions#2188
- Code coverage improvements by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2180
- Remove sponsor Semantic Merge from the website by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2194
- Upmerge master to develop by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2195
- Simplify `GenericDictionaryEquivalencyStep` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2191
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2201
- Bump all dependencies by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2198
- Add Qodana by [@&#8203;matkoch](https://togithub.com/matkoch) in
[fluentassertions/fluentassertions#2204
- Bump nuget dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2227
- Prepare for .NET8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2228
- Qodana fixes by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2229
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2240
- Analyzer cleanups by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2250
- Group framework dependent configuration by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2247
- Update cspell by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2255
- Update ruby gems by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2257
- Another Qodana test from the same repository by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2258
- Qodana fixes by [@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2221
- Add a pre-check if a user can help with a PR by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2262
- Fix qodana issues part 2 by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2264
- Release 6.12 by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2270

##### New Contributors

- [@&#8203;benagain](https://togithub.com/benagain) made their first
contribution in
[fluentassertions/fluentassertions#2144
- [@&#8203;cskwrd](https://togithub.com/cskwrd) made their first
contribution in
[fluentassertions/fluentassertions#2206
- [@&#8203;Corniel](https://togithub.com/Corniel) made their first
contribution in
[fluentassertions/fluentassertions#2247
- [@&#8203;Leo506](https://togithub.com/Leo506) made their first
contribution in
[fluentassertions/fluentassertions#2266

**Full Changelog**:
fluentassertions/fluentassertions@6.11.0...6.12.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://developer.mend.io/github/Testably/Testably.Abstractions.FluentAssertions).

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

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 Aug 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.11.0` -> `6.12.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions (FluentAssertions)</summary>

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

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

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

##### What's Changed

##### New features

- Added `Be`, `NotBe` and `BeOneOf` for object comparisons with custom
comparer by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2243
- Extend `AssemblyAssertions` with `HavePublicKey` and `BeUnsigned` by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2207
- Add `NotContainItemsAssignableTo` by
[@&#8203;Leo506](https://togithub.com/Leo506) in
[fluentassertions/fluentassertions#2266

##### Improvements

- Format records and anonymous types with their member values by
[@&#8203;benagain](https://togithub.com/benagain) in
[fluentassertions/fluentassertions#2144
- Improve caller identification for Visual Basic by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2254

##### Fixes

- Avoid quoting newlines by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2202
- Include because+becauseArgs when comparing collections of enums for
equivalency by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2214
- Fix auto conversion to enums by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2261

##### Documentation

- Github -> GitHub by
[@&#8203;danielchalmers](https://togithub.com/danielchalmers) in
[fluentassertions/fluentassertions#2190
- Fix badge links by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2193
- Fix example wording by [@&#8203;cskwrd](https://togithub.com/cskwrd)
in
[fluentassertions/fluentassertions#2206
- Improve documentation on `ExcludingNestedObjects` by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2211
- Add missing `HaveElement()` occurrence docs by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2217
- Add documentation for `IComparer<T>` overload by
[@&#8203;ITaluone](https://togithub.com/ITaluone) in
[fluentassertions/fluentassertions#2220
- Update docs about thread safety by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2238

##### Others

- CA1860: Avoid using 'Enumerable.Any()' extension method by
[@&#8203;Evangelink](https://togithub.com/Evangelink) in
[fluentassertions/fluentassertions#2196
- Update PR template by
[@&#8203;eNeRGy164](https://togithub.com/eNeRGy164) in
[fluentassertions/fluentassertions#2188
- Code coverage improvements by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2180
- Remove sponsor Semantic Merge from the website by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2194
- Upmerge master to develop by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2195
- Simplify `GenericDictionaryEquivalencyStep` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2191
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2201
- Bump all dependencies by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2198
- Add Qodana by [@&#8203;matkoch](https://togithub.com/matkoch) in
[fluentassertions/fluentassertions#2204
- Bump nuget dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2227
- Prepare for .NET8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2228
- Qodana fixes by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2229
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2240
- Analyzer cleanups by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2250
- Group framework dependent configuration by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2247
- Update cspell by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2255
- Update ruby gems by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2257
- Another Qodana test from the same repository by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2258
- Qodana fixes by [@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2221
- Add a pre-check if a user can help with a PR by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2262
- Fix qodana issues part 2 by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2264
- Release 6.12 by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2270

##### New Contributors

- [@&#8203;benagain](https://togithub.com/benagain) made their first
contribution in
[fluentassertions/fluentassertions#2144
- [@&#8203;cskwrd](https://togithub.com/cskwrd) made their first
contribution in
[fluentassertions/fluentassertions#2206
- [@&#8203;Corniel](https://togithub.com/Corniel) made their first
contribution in
[fluentassertions/fluentassertions#2247
- [@&#8203;Leo506](https://togithub.com/Leo506) made their first
contribution in
[fluentassertions/fluentassertions#2266

**Full Changelog**:
fluentassertions/fluentassertions@6.11.0...6.12.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://developer.mend.io/github/cythral/brighid-commands).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi41Ni4wIiwidXBkYXRlZEluVmVyIjoiMzYuNTYuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
ThorstenSauter pushed a commit to ThorstenSauter/NoPlan that referenced this pull request Aug 24, 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.11.0` -> `6.12.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions (FluentAssertions)</summary>

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

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

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

#### What's Changed

##### New features

- Added `Be`, `NotBe` and `BeOneOf` for object comparisons with custom
comparer by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2243
- Extend `AssemblyAssertions` with `HavePublicKey` and `BeUnsigned` by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2207
- Add `NotContainItemsAssignableTo` by
[@&#8203;Leo506](https://togithub.com/Leo506) in
[fluentassertions/fluentassertions#2266

##### Improvements

- Format records and anonymous types with their member values by
[@&#8203;benagain](https://togithub.com/benagain) in
[fluentassertions/fluentassertions#2144
- Improve caller identification for Visual Basic by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2254

##### Fixes

- Avoid quoting newlines by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2202
- Include because+becauseArgs when comparing collections of enums for
equivalency by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2214
- Fix auto conversion to enums by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2261

##### Documentation

- Github -> GitHub by
[@&#8203;danielchalmers](https://togithub.com/danielchalmers) in
[fluentassertions/fluentassertions#2190
- Fix badge links by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2193
- Fix example wording by [@&#8203;cskwrd](https://togithub.com/cskwrd)
in
[fluentassertions/fluentassertions#2206
- Improve documentation on `ExcludingNestedObjects` by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2211
- Add missing `HaveElement()` occurrence docs by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2217
- Add documentation for `IComparer<T>` overload by
[@&#8203;ITaluone](https://togithub.com/ITaluone) in
[fluentassertions/fluentassertions#2220
- Update docs about thread safety by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2238

##### Others

- CA1860: Avoid using 'Enumerable.Any()' extension method by
[@&#8203;Evangelink](https://togithub.com/Evangelink) in
[fluentassertions/fluentassertions#2196
- Update PR template by
[@&#8203;eNeRGy164](https://togithub.com/eNeRGy164) in
[fluentassertions/fluentassertions#2188
- Code coverage improvements by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2180
- Remove sponsor Semantic Merge from the website by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2194
- Upmerge master to develop by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2195
- Simplify `GenericDictionaryEquivalencyStep` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2191
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2201
- Bump all dependencies by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2198
- Add Qodana by [@&#8203;matkoch](https://togithub.com/matkoch) in
[fluentassertions/fluentassertions#2204
- Bump nuget dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2227
- Prepare for .NET8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2228
- Qodana fixes by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2229
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2240
- Analyzer cleanups by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2250
- Group framework dependent configuration by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2247
- Update cspell by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2255
- Update ruby gems by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2257
- Another Qodana test from the same repository by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2258
- Qodana fixes by [@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2221
- Add a pre-check if a user can help with a PR by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2262
- Fix qodana issues part 2 by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2264
- Release 6.12 by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2270

#### New Contributors

- [@&#8203;benagain](https://togithub.com/benagain) made their first
contribution in
[fluentassertions/fluentassertions#2144
- [@&#8203;cskwrd](https://togithub.com/cskwrd) made their first
contribution in
[fluentassertions/fluentassertions#2206
- [@&#8203;Corniel](https://togithub.com/Corniel) made their first
contribution in
[fluentassertions/fluentassertions#2247
- [@&#8203;Leo506](https://togithub.com/Leo506) made their first
contribution in
[fluentassertions/fluentassertions#2266

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am" (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://developer.mend.io/github/ThorstenSauter/NoPlan).

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

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 Aug 26, 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.11.0` -> `6.12.0` |

---

### Release Notes

<details>
<summary>fluentassertions/fluentassertions (FluentAssertions)</summary>

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

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

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

#### What's Changed

##### New features

- Added `Be`, `NotBe` and `BeOneOf` for object comparisons with custom
comparer by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2243
- Extend `AssemblyAssertions` with `HavePublicKey` and `BeUnsigned` by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2207
- Add `NotContainItemsAssignableTo` by
[@&#8203;Leo506](https://togithub.com/Leo506) in
[fluentassertions/fluentassertions#2266

##### Improvements

- Format records and anonymous types with their member values by
[@&#8203;benagain](https://togithub.com/benagain) in
[fluentassertions/fluentassertions#2144
- Improve caller identification for Visual Basic by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2254

##### Fixes

- Avoid quoting newlines by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2202
- Include because+becauseArgs when comparing collections of enums for
equivalency by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2214
- Fix auto conversion to enums by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2261

##### Documentation

- Github -> GitHub by
[@&#8203;danielchalmers](https://togithub.com/danielchalmers) in
[fluentassertions/fluentassertions#2190
- Fix badge links by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2193
- Fix example wording by [@&#8203;cskwrd](https://togithub.com/cskwrd)
in
[fluentassertions/fluentassertions#2206
- Improve documentation on `ExcludingNestedObjects` by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2211
- Add missing `HaveElement()` occurrence docs by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2217
- Add documentation for `IComparer<T>` overload by
[@&#8203;ITaluone](https://togithub.com/ITaluone) in
[fluentassertions/fluentassertions#2220
- Update docs about thread safety by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2238

##### Others

- CA1860: Avoid using 'Enumerable.Any()' extension method by
[@&#8203;Evangelink](https://togithub.com/Evangelink) in
[fluentassertions/fluentassertions#2196
- Update PR template by
[@&#8203;eNeRGy164](https://togithub.com/eNeRGy164) in
[fluentassertions/fluentassertions#2188
- Code coverage improvements by
[@&#8203;sdelarosbil](https://togithub.com/sdelarosbil) in
[fluentassertions/fluentassertions#2180
- Remove sponsor Semantic Merge from the website by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2194
- Upmerge master to develop by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2195
- Simplify `GenericDictionaryEquivalencyStep` by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2191
- Cleanup by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2201
- Bump all dependencies by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2198
- Add Qodana by [@&#8203;matkoch](https://togithub.com/matkoch) in
[fluentassertions/fluentassertions#2204
- Bump nuget dependencies by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2227
- Prepare for .NET8 analyzers by
[@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2228
- Qodana fixes by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2229
- Update Nugets by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2240
- Analyzer cleanups by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2250
- Group framework dependent configuration by
[@&#8203;Corniel](https://togithub.com/Corniel) in
[fluentassertions/fluentassertions#2247
- Update cspell by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2255
- Update ruby gems by [@&#8203;jnyrup](https://togithub.com/jnyrup) in
[fluentassertions/fluentassertions#2257
- Another Qodana test from the same repository by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2258
- Qodana fixes by [@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2221
- Add a pre-check if a user can help with a PR by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2262
- Fix qodana issues part 2 by
[@&#8203;IT-VBFK](https://togithub.com/IT-VBFK) in
[fluentassertions/fluentassertions#2264
- Release 6.12 by
[@&#8203;dennisdoomen](https://togithub.com/dennisdoomen) in
[fluentassertions/fluentassertions#2270

#### New Contributors

- [@&#8203;benagain](https://togithub.com/benagain) made their first
contribution in
[fluentassertions/fluentassertions#2144
- [@&#8203;cskwrd](https://togithub.com/cskwrd) made their first
contribution in
[fluentassertions/fluentassertions#2206
- [@&#8203;Corniel](https://togithub.com/Corniel) made their first
contribution in
[fluentassertions/fluentassertions#2247
- [@&#8203;Leo506](https://togithub.com/Leo506) made their first
contribution in
[fluentassertions/fluentassertions#2266

**Full Changelog**:
fluentassertions/fluentassertions@6.11.0...6.12.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://developer.mend.io/github/orso-co/Orso.Arpa.Api).

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

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
building Building and Infrastructure of Fluent Assertions
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants