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

Code coverage improvements #2180

Merged
merged 3 commits into from Apr 22, 2023

Conversation

ghost
Copy link

@ghost ghost commented Apr 12, 2023

This improves coverage in 3 small cases.

For the generic dictionary one, it turns out that the other version of the method was length checking already which made the check redundant as it wasn't possible to hit that line in general.

Part of #1823

@coveralls
Copy link

coveralls commented Apr 12, 2023

Pull Request Test Coverage Report for Build 4768494688

Warning: This coverage report may be inaccurate.

We've detected an issue with your CI configuration that might affect the accuracy of this pull request's coverage report.
To ensure accuracy in future PRs, please see these guidelines.
A quick fix for this PR: rebase it; your next report should be accurate.

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage increased (+0.06%) to 97.243%

Totals Coverage Status
Change from base Build 4759863419: 0.06%
Covered Lines: 12849
Relevant Lines: 13085

💛 - Coveralls

@ghost ghost force-pushed the misc-code-coverage branch from 27b9952 to 93cba37 Compare April 13, 2023 14:10
@jnyrup jnyrup changed the title Misc code coverage improvements Code coverage improvements Apr 21, 2023
@jnyrup jnyrup added the testing Testing of Fluent Assertion itself label Apr 21, 2023
@ghost ghost force-pushed the misc-code-coverage branch from 93cba37 to 839fc3a Compare April 21, 2023 19:55
@jnyrup
Copy link
Member

jnyrup commented Apr 21, 2023

Did you intend to remove When_DataColumn_has_changes_but_is_excluded_in_all_tables_it_should_succeed as well?

[Fact]
public void When_DataColumn_has_changes_but_is_excluded_in_all_tables_it_should_succeed()
{
    // Arrange
    var dataSet1 = CreateDummyDataSet<TypedDataSetSubclass>();
    var dataSet2 = new TypedDataSetSubclass(dataSet1);

    var dataColumn1 = dataSet1.TypedDataTable1.DecimalColumn;
    var dataColumn2 = dataSet2.TypedDataTable1.DecimalColumn;

    dataColumn2.Unique = true;
    dataColumn2.Caption = "Test";

    // Act & Assert
    dataColumn1.Should().BeEquivalentTo(dataColumn2, options => options
        .ExcludingColumnInAllTables(dataColumn2.ColumnName));
}

@ghost
Copy link
Author

ghost commented Apr 21, 2023

Did you intend to remove When_DataColumn_has_changes_but_is_excluded_in_all_tables_it_should_succeed as well?

[Fact]
public void When_DataColumn_has_changes_but_is_excluded_in_all_tables_it_should_succeed()
{
    // Arrange
    var dataSet1 = CreateDummyDataSet<TypedDataSetSubclass>();
    var dataSet2 = new TypedDataSetSubclass(dataSet1);

    var dataColumn1 = dataSet1.TypedDataTable1.DecimalColumn;
    var dataColumn2 = dataSet2.TypedDataTable1.DecimalColumn;

    dataColumn2.Unique = true;
    dataColumn2.Caption = "Test";

    // Act & Assert
    dataColumn1.Should().BeEquivalentTo(dataColumn2, options => options
        .ExcludingColumnInAllTables(dataColumn2.ColumnName));
}

That wasn't intended, I restored it.

@jnyrup jnyrup merged commit 9421834 into fluentassertions:develop Apr 22, 2023
3 checks passed
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
testing Testing of Fluent Assertion itself
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

5 participants