Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Aug 4, 2025

Updated csharpier from 0.30.6 to 1.1.1.

Release notes

Sourced from csharpier's releases.

1.1.1

What's Changed

Unhandled exception: System.ArgumentOutOfRangeException: startIndex cannot be larger than length of string. (Parameter 'startIndex') #​1673

CSharpier was throwing an exception when formating a directory contained a file without an extension.

1.1.0

What's Changed

.gitignore from parent folders impacts formatting of children #​1627

CSharpier will no longer consider .gitignore files located above the root of the current git repository.

Changes to stdin formatting #​288 #​1657

There is a new option --stdin-filepath that is used to specify the filepath CSharpier should use for resolving options and ignore files.
When no path is specified via stdin-path

  • No ignore files are considered.
  • The current directory is considered when locating options
  • The file is assumed to be c# unless the first non-whitespace character is < in which case it is assumed to be xml.

Support for C# 14 and .NET 10 #​1654 #​1646

Changes were required to support the following

  • Extension Declarations
  • File level directives in file based C# Apps

Support --ignore-path CLI option #​1585

It is now possible to specify the path to an ignore file

dotnet csharpier format . --ignore-path .config/.csharpierignore

Format xaml and slnx by default #​1628 #​1604

CSharpier now formats xaml and slnx by default without the need for configuration changes.

XML formatting is not taking into account EOL configuration on multiline comments #​1660

When formatting the following XML, CSharpier would always use the system system default for ending lines within the comment instead of the respecting the configured EOL setting.

<Element>
  <!--
  Comment with EOL
  -->
</Element>

Error when no read access to intermediate containing folder #​1656

In the case that CSharpier had access to a sub directory but not the parent of that sub directory, it was failing with an exception. That has been resolved.

Misleading message after "csharpier check" #​1645

Previously the format and check commands both used the same output message. The check command now correctly reports that it checked files and did not format them.

# 1.0.3
dotnet csharpier check .
Formatted 13226 files in 21986ms.

# 1.1.0
dotnet csharpier check .
Checked 13226 files in 21986ms.

Multiline collection expressions should not be indented #​1635

CSharpier now formats collection expressions consistently when they are in a property

// input & expected output
public class ClassName
{
    public SomeObject LongValue = new
 ... (truncated)

## 1.0.3

## What's Changed
### Switch block case with conditionals adding newlines [#​1630](https://github.com/belav/csharpier/issues/1630)
Switch blocks were breaking on conditions within patterns.
```c#
// input and expected output
switch ("")
{
    case "" or "":
        break;
}

// 1.0.2
switch ("")
{
    case ""
    or "":
        break;
}

switch expression formatting adds odd newlines #​1620

CSharpier was breaking after a discard with a when, resulting in extra new lines

// input and expected output
_ = someValue switch
{
    _ when KeepWhenWithDiscard() => "",
    _ when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "",
    _ when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "LongString_____________________________________________________________________",
};

// 1.0.2
_ = someValue switch
{
    _ when KeepWhenWithDiscard() => "",
    _
        when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "",
    _
        when KeepWhenWithDiscard_________________(
            SomeObject_______________________________________________
        ) => "LongString_____________________________________________________________________",
};

multi-line raw string in linq query causes a subsequent linq query to be printed on one line #​1617

... (truncated)

1.0.2

What's Changed

Performance issues when supporting .gitignore. #​1588

CSharpier was using a naive algorithm for parsing and evaluating gitignore rules that caused significant perfomance issues. @​kevinboss reworked the implementation to drastically increate performance.

Exclude bin/ and obj/ directory content from xml formatting #​1600

CSharpier now excludes all files in bin/ and obj/ by default.

Error on syntactically valid conditional with is #​1612

The following c# is valid and compiles with 9.0.300+. CSharpier was updated to properly parse it.

var x = y is y ? [] : z ?? [];

Xml formatting with comments in text element inserts extra new lines #​1607

CSharpier has some issues with formatting text that contained xml comments. That has been improved.

Input & expected output

<NoWarn>
  CA1031; <!-- Since this is not a library project, catching general exceptions is OK -->
  IDE0005; <!-- Allow unused usings -->
</NoWarn>

1.0.1

<NoWarn
    >
      CA1031;
    <!-- Since this is not a library project, catching general exceptions is OK -->

    
      IDE0005;
    <!-- Allow unused usings -->
</NoWarn>

Inconsistent formatting of single-line lambda expressions #​1594

CSharpier 1.0.0 introduced a regression that caused the following formatting. This is now working as expected.

// input & expected output
        CallMethod(() => CallAnotherMethod______________________________________________________());
        CallMethod(() =>
            CallAnotherMethod______________________________________________________1()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________12()
        );
        CallMethod(() =>
            CallAnotherMethod______________________________________________________123()
        );

// 1.0.0
 ... (truncated)

## 1.0.1

## What's Changed
### CSharpier's support for .gitignore is causing performance issues [#​1584](https://github.com/belav/csharpier/issues/1584)
The support for `.gitignore` has some major performance problems when there are a large number of `.gitignore` files and/or ignore rules. The feature has been disabled for now until it can be fixed.
### CSharpier.MsBuild issues [#​1586](https://github.com/belav/csharpier/issues/1586)
CSharpier.MsBuild was not properly logging errors when performing a formatting check. This would result in the build passing when files were not formatted.
Setting `CSharpier_LogLevel` was passing an invalid parameter of `--loglevel` to CSharpier, resulting in a build failure


**Full Changelog**: https://github.com/belav/csharpier/compare/1.0.0...1.0.1

## 1.0.0

## Major Changes
### Support for formatting XML [#​819](https://github.com/belav/csharpier/issues/819)
CSharpier now formats xml files by default. It will try to format ".csproj", ".props", ".targets", ".xml", ".config" as if they were xml. \
If a file is not valid xml it will be treated as a warning. \
The default indent size is `2` instead of `4`

### Performance Improvements
@​TimothyMakkison put a lot of effort into improving the performance of CSharpier. These benchmark numbers show drastic improvement for both speed and memory usage.

Baseline
Method Mean Error StdDev Median Gen0 Gen1 Gen2 Allocated
Default_CodeFormatter_Tests 233.3 ms 4.63 ms 8.23 ms 229.7 ms 11000.0000 4000.0000 1000.0000 101.41 MB
Default_CodeFormatter_Complex 433.7 ms 8.53 ms 7.56 ms 433.4 ms 20000.0000 5000.0000 1000.0000 182.44 MB

After Improvements
Method Mean Error StdDev Gen0 Gen1 Allocated
Default_CodeFormatter_Tests 64.72 ms 0.548 ms 0.512 ms 1666.6667 1000.0000 18.33 MB
Default_CodeFormatter_Complex 137.83 ms 2.730 ms 4.708 ms 3000.0000 1000.0000 30.78 MB
## Breaking Changes
### ConfigurationFile - rename TabWidth to IndentSize [#​1377](https://github.com/belav/csharpier/issues/1377)
In order to get consistency between an `.editorconfig` and `.csharpierconfig` the option `TabWidth` has been renamed to `IndentSize`. This is also a more accurate name considering by default indentation is done with spaces and not tabs.
### Rework the CLI to use commands and arguments. [#​1321](https://github.com/belav/csharpier/issues/1321)
The CLI has been reworked to use commands. This helps make it clear which arguments apply to which commands. The two common commands are below, see https://csharpier.com/docs/CLI for more details.

dotnet csharpier format .
dotnet csharpier check .

### Changing the tool command to csharpier. Changing the assembly/exe to CSharpier [#​1418](https://github.com/belav/csharpier/pull/1418)
Prior to `1.0.0` the tool command was `dotnet-csharpier` and assembly/exe were named `dotnet_csharpier`. 
The tool command name was changed to just `csharpier`
- Running a local tool remains the same `dotnet csharpier --version`
- Running a global tool is changed to `csharpier --version`

The assembly/exe names have changed to just `CSharpier`

### Support for ignoring files via a .gitignore [#​631](https://github.com/belav/csharpier/issues/631)
CSharpier now works as follows when determining if a file should be ignored.

- .gitignore files are considered when determining if a file will be ignored. A .gitignore file at the same level as a given file will take priority over a .gitignore file above it in the directory tree.
- If a .csharpierignore file is present at the same level or anywhere above the given file in the tree and it contains a pattern for a given file, that will take priority.
- The patterns within .csharpierignore work the same as a .gitignore, with patterns lower in the file taking priority over patterns above
- CSharpier does not currently look further up the directory tree for additional .csharpierignore files if it finds one. But it does look for .gitignore files. If there is demand this could be added later.
## What's Changed
 ... (truncated)

Commits viewable in [compare view](https://github.com/belav/csharpier/compare/0.30.6...1.1.1).
</details>

Updated [FluentAssertions](https://github.com/fluentassertions/fluentassertions) from 8.2.0 to 8.5.0.

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

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

## 8.5.0

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

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


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.4.0...8.5.0

## 8.4.0

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

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

## New Contributors
* @​Xceed-DelvaJB made their first contribution in https://github.com/fluentassertions/fluentassertions/pull/3059

**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.3.0...8.4.0

## 8.3.0

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

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


**Full Changelog**: https://github.com/fluentassertions/fluentassertions/compare/8.2.0...8.3.0

Commits viewable in [compare view](https://github.com/fluentassertions/fluentassertions/compare/8.2.0...8.5.0).
</details>

Updated [Microsoft.NET.Test.Sdk](https://github.com/microsoft/vstest) from 17.13.0 to 17.14.1.

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

_Sourced from [Microsoft.NET.Test.Sdk's releases](https://github.com/microsoft/vstest/releases)._

## 17.14.1

## What's Changed
* Error on unsupported target frameworks to prevent silently not running tests by @​nohwnd in https://github.com/microsoft/vstest/pull/15072 and https://github.com/microsoft/vstest/pull/15078
* Revert writing additional properties to TRX by @​nohwnd  in https://github.com/microsoft/vstest/commit/47eb51b15ad8ca4a84ad7be5881fcd1713a0f68a

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.14.0...v17.14.1

## 17.14.0

## What's Changed

### .NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does **NOT** prevent you from:

- Updating to the latest VS, and running tests from net6.0 test projects.
- Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

* Drop unsupported frameworks by @​nohwnd in https://github.com/microsoft/vstest/pull/10565

### Changes

* Adding Process Query Flag For UWP .NET 9 Support by @​adstep in https://github.com/microsoft/vstest/pull/15003
* Fix builds on WinUI and UWP .NET 9 projects by @​Sergio0694 in https://github.com/microsoft/vstest/pull/15004
* don't report communication error on discovery abort by @​nohwnd in https://github.com/microsoft/vstest/pull/14992
* Add dump minitool to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/14707
* Make test runners long-path aware (#​5179) by @​peetw in https://github.com/microsoft/vstest/pull/15014
* Fix trace in DataCollectionRequestSender.cs by @​stan-sz in https://github.com/microsoft/vstest/pull/15025
* Fix/readme grammar parallelism by @​dellch in https://github.com/microsoft/vstest/pull/15030
* Add binding redirects by @​nohwnd in https://github.com/microsoft/vstest/pull/15041
* Write props of tests into trx by @​nohwnd in https://github.com/microsoft/vstest/pull/14905

### Internal version updates and fixes

* Update io.redist by @​nohwnd in https://github.com/microsoft/vstest/pull/13872
* Use preview image for public build by @​nohwnd in https://github.com/microsoft/vstest/pull/13888
* Remove xcopy-msbuild by @​nohwnd in https://github.com/microsoft/vstest/pull/14138
* Move to macos14 by @​nohwnd in https://github.com/microsoft/vstest/pull/14137
* Update diagnose.md by @​nohwnd in https://github.com/microsoft/vstest/pull/14776
* hash with sha2 for mutex lock by @​nohwnd in https://github.com/microsoft/vstest/pull/14777
* Update test projects for vmr by @​nohwnd in https://github.com/microsoft/vstest/pull/14894
* 17.14 branding by @​nohwnd in https://github.com/microsoft/vstest/pull/14903
* Update filter.md for NUnit by @​OsirisTerje in https://github.com/microsoft/vstest/pull/14987
* Flag netstandard1.x dependencies in source-build by @​ViktorHofer in https://github.com/microsoft/vstest/pull/14986
* Use VS dependencies versions from release VS to have archived symbols by @​nohwnd in https://github.com/microsoft/vstest/pull/14991
* Remove extra ; by @​nohwnd in https://github.com/microsoft/vstest/pull/14995
* Use dependencymodel 6.0.2 by @​nohwnd in https://github.com/microsoft/vstest/pull/14996
* Make Testhost packable only on Windows by @​mmitche in https://github.com/microsoft/vstest/pull/15001
* Add system text json to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/15034
* Add more files to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/15038
* Remove unnecessary CA2022 suppressions by @​Winniexu01 in https://github.com/microsoft/vstest/pull/15035
* Update package project url by @​mmitche in https://github.com/microsoft/vstest/pull/15040
 
## New Contributors

* @​OsirisTerje made their first contribution in https://github.com/microsoft/vstest/pull/14987
* @​adstep made their first contribution in https://github.com/microsoft/vstest/pull/15003
 ... (truncated)

## 17.14.0-preview-25107-01

## What's Changed

### .NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does **NOT** prevent you from:

- Updating to the latest VS, and running tests from net6.0 test projects.
- Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

* Drop unsupported frameworks by @​nohwnd in https://github.com/microsoft/vstest/pull/10565


### Changes

* Adding Process Query Flag For UWP .NET 9 Support by @​adstep in https://github.com/microsoft/vstest/pull/15003
* Fix builds on WinUI and UWP .NET 9 projects by @​Sergio0694 in https://github.com/microsoft/vstest/pull/15004
* don't report communication error on discovery abort by @​nohwnd in https://github.com/microsoft/vstest/pull/14992
* Add dump minitool to vsix by @​nohwnd in https://github.com/microsoft/vstest/pull/14707

### Internal version updates and fixes

* Update io.redist by @​nohwnd in https://github.com/microsoft/vstest/pull/13872
* Use preview image for public build by @​nohwnd in https://github.com/microsoft/vstest/pull/13888
* Remove xcopy-msbuild by @​nohwnd in https://github.com/microsoft/vstest/pull/14138
* Move to macos14 by @​nohwnd in https://github.com/microsoft/vstest/pull/14137
* Update diagnose.md by @​nohwnd in https://github.com/microsoft/vstest/pull/14776
* hash with sha2 for mutex lock by @​nohwnd in https://github.com/microsoft/vstest/pull/14777
* Update test projects for vmr by @​nohwnd in https://github.com/microsoft/vstest/pull/14894
* 17.14 branding by @​nohwnd in https://github.com/microsoft/vstest/pull/14903
* Update filter.md for NUnit by @​OsirisTerje in https://github.com/microsoft/vstest/pull/14987
* Flag netstandard1.x dependencies in source-build by @​ViktorHofer in https://github.com/microsoft/vstest/pull/14986
* Use VS dependencies versions from release VS to have archived symbols by @​nohwnd in https://github.com/microsoft/vstest/pull/14991
* Remove extra ; by @​nohwnd in https://github.com/microsoft/vstest/pull/14995
* Use dependencymodel 6.0.2 by @​nohwnd in https://github.com/microsoft/vstest/pull/14996
* Make Testhost packable only on Windows by @​mmitche in https://github.com/microsoft/vstest/pull/15001


### Will probably revert before release:

* Write props of tests into trx by @​nohwnd in https://github.com/microsoft/vstest/pull/14905
 
## New Contributors

* @​OsirisTerje made their first contribution in https://github.com/microsoft/vstest/pull/14987
* @​adstep made their first contribution in https://github.com/microsoft/vstest/pull/15003
* @​Sergio0694 made their first contribution in https://github.com/microsoft/vstest/pull/15004

**Full Changelog**: https://github.com/microsoft/vstest/compare/v17.13.0...v17.14.0-preview-25107-01

Commits viewable in [compare view](https://github.com/microsoft/vstest/compare/v17.13.0...v17.14.1).
</details>

Updated [Testcontainers](https://github.com/testcontainers/testcontainers-dotnet) from 4.3.0 to 4.6.0.

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

_Sourced from [Testcontainers's releases](https://github.com/testcontainers/testcontainers-dotnet/releases)._

## 4.6.0

# What's Changed

This is a patch release (but the minor version was already set). It fixes a bug in our Docker.DotNet fork where a wrong HTTP `Connection` header break Podman and possibly other environments. Shipped a quick fix. Thanks again to @​ahaeber and @​victor-lambret for the help.

## 🐛 Bug Fixes

* chore: Bump Docker.DotNet version to 3.128.3 (#​1462) @​HofmeisterAn

## 🧹 Housekeeping

* chore: Bump Docker.DotNet version to 3.128.3 (#​1462) @​HofmeisterAn


## 4.5.0

# What's Changed

Big thanks to everyone who contributed to this release 🤜🤛.

## 🚀 Features

* feat: Add OpenSearch module (#​1395) @​digital88
* feat: Add Typesense module (#​1446) @​brainded
* feat: Add `Task<ExecResult>` extension method `ThrowOnFailure` (#​1448) @​HofmeisterAn
* feat: Throw `DockerUnavailableException` when Docker is not available (#​1308) @​0xced
* feat: Improve error reporting when loading the Docker configuration file (#​1263) @​0xced
* feat: Add a wait strategy that waits until the ADO.NET database is available (#​1401) @​0xced
* feat: Add Ollama module (#​1099) @​frankhaugen
* feat: Allow canceling container start in xUnit.net v3 fixtures (#​1431) @​TheConstructor
* fix(EventHubs): Support default consumer group name (#​1432) @​scrocquesel-ml150
* feat: Add Lowkey Vault module (#​1344) @​Xor-el
* feat(ServiceBus): Add builder API to upload config file (#​1424) @​chasewallis

## 🐛 Bug Fixes

* fix: Set container created, started, stopped time from inspect response (#​1455) @​HofmeisterAn
* fix(EventHubs): Change predicate that it does not always evaluate to true (#​1433) @​HofmeisterAn
* fix(EventHubs): Support default consumer group name (#​1432) @​scrocquesel-ml150

## 📖 Documentation

* docs(ClickHouse): Add example (#​1421) @​digital88
* docs: Mention the xUnit.net v3 module (package) (#​1442) @​TheConstructor

## 🧹 Housekeeping

* chore: Add ExecResult serializable test data (#​1456) @​HofmeisterAn
* chore: Remove Sonar findings (#​1450) @​HofmeisterAn
* chore: Replace Cake .NET Tool with Cake Frosting (#​1437) @​0xced
* chore: Update test-framework to xUnit.net v3 (#​1441) @​TheConstructor
* chore: Bump Docker.DotNet version to `3.128.1` (#​1443) @​HofmeisterAn
* chore: Add xUnit.net v3 tests (#​1430) @​TheConstructor
* chore: Bump CI .NET SDK and Cake version (#​1434) @​HofmeisterAn


## 4.4.0

# What's Changed

Time for a new release! Big thanks to everyone who helped out with this one. It's got some awesome new features and fixes 😎. Seriously, I can't thank you enough. This wouldn't be possible without your ongoing support 🙏.

## 🚀 Features

* feat: Add Socat container implementation (#​1416) @​eddumelendez
* feat(Keycloak): Support admin bootstrapping for version 26 onwards (#​1400) @​paulomorgado
* feat: Add Qdrant module (#​1149) @​russcam
* feat(EventHubs, ServiceBus): Replace wait strategy with HTTP health check (#​1398) @​scrocquesel-ml150
* fix: Reflect Unix file mode when building tarball from .NET 7 onwards (#​1397) @​kfarnung

## 🐛 Bug Fixes

* fix(Pulsar): Set memory limits (#​1420) @​HofmeisterAn
* fix: Add Docker Hub image name prefix to image builder API `WithName(IImage)` (#​1413) @​HofmeisterAn
* fix: Reflect Unix file mode when building tarball from .NET 7 onwards (#​1397) @​kfarnung
* fix: Retrieve logs since `CreatedTime` for `UntilMessageIsLogged` wait strategy (#​1384) @​0xced

## 📖 Documentation

* docs: Bump `testcontainers/helloworld` image in docs to version `1.2.0` (#​1419) @​VishnuJin
* docs(ActiveMq): Add example (#​1415) @​digital88
* docs: Add binding redirects doc for .NET framework (#​1414) @​HofmeisterAn
* docs: Add Bitbucket Pipelines configuration (#​1402) @​boeckie-xenopz
* docs(EventHubs, ServiceBus): Add example (#​1396) @​HofmeisterAn
* docs(Cassandra): Add example (#​1382) @​gavindekock

## 🧹 Housekeeping

* fix(Pulsar): Set memory limits (#​1420) @​HofmeisterAn
* chore: Add wrapper module for Google Cloud modules (#​1411) @​digital88
* chore: Use Docker Compose to host documentation locally (#​1410) @​digital88
* feat(EventHubs, ServiceBus): Replace wait strategy with HTTP health check (#​1398) @​scrocquesel-ml150


Commits viewable in [compare view](https://github.com/testcontainers/testcontainers-dotnet/compare/4.3.0...4.6.0).
</details>

Updated [WireMock.Net](https://github.com/wiremock/WireMock.Net) from 1.7.4 to 1.8.17.

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

_Sourced from [WireMock.Net's releases](https://github.com/wiremock/WireMock.Net/releases)._

## 1.8.16

## What's Changed
* Use correct Handlebars.Net.Helpers.Xslt (2.5.2) by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1332


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.8.15...1.8.16

## 1.8.15

## What's Changed
* Correctly map the Pact Interaction Description property by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1331


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.8.14...1.8.15

## 1.8.14

## What's Changed
* Add method CreateHttpClientFactory by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1325
* Implement IMimeMessageData by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1326
* Fix HandlebarsContext.ParseAndEvaluate by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1329


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.8.13...1.8.14

## 1.8.13

## What's Changed
* Add Scenario set State method by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1322


**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.8.12...1.8.13

## 1.8.12

## What's Changed
* Use default resource cleaning behavior in test by @​scrocquesel in https://github.com/wiremock/WireMock.Net/pull/1316
* Set description when converting MappingModel to IRespondWithAProvider by @​BodrickLight in https://github.com/wiremock/WireMock.Net/pull/1317
* Fix TypeLoader by @​StefH in https://github.com/wiremock/WireMock.Net/pull/1320

## New Contributors
* @​BodrickLight made their first contribution in https://github.com/wiremock/WireMock.Net/pull/1317

**Full Changelog**: https://github.com/wiremock/WireMock.Net/compare/1.8.11...1.8.12

## 1.8.11



## 1.8.10



## 1.8.9



## 1.8.8



## 1.8.7



## 1.8.6



## 1.8.5



## 1.8.3



## 1.8.2



## 1.8.1



## 1.8.0



Commits viewable in [compare view](https://github.com/wiremock/WireMock.Net/commits).
</details>

Updated [xunit.runner.visualstudio](https://github.com/xunit/visualstudio.xunit) from 3.0.2 to 3.1.3.

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

_Sourced from [xunit.runner.visualstudio's releases](https://github.com/xunit/visualstudio.xunit/releases)._

No release notes found for this version range.

Commits viewable in [compare view](https://github.com/xunit/visualstudio.xunit/commits).
</details>

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

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

---

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

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


</details>

Bumps csharpier from 0.30.6 to 1.1.1
Bumps FluentAssertions to 8.5.0
Bumps Microsoft.NET.Test.Sdk to 17.14.1
Bumps Testcontainers from 4.3.0 to 4.6.0
Bumps WireMock.Net from 1.7.4 to 1.8.17
Bumps xunit.runner.visualstudio to 3.1.3

---
updated-dependencies:
- dependency-name: csharpier
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: FluentAssertions
  dependency-version: 8.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: FluentAssertions
  dependency-version: 8.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 17.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: Testcontainers
  dependency-version: 4.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: WireMock.Net
  dependency-version: 1.8.17
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
- dependency-name: xunit.runner.visualstudio
  dependency-version: 3.1.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Aug 4, 2025

Reviewers

The following users could not be added as reviewers: guibranco. Either the username does not exist or it does not have the correct permissions to be added as a reviewer.

Assignees

The following users could not be added as assignees: guibranco. Either the username does not exist or it does not have the correct permissions to be added as an assignee.

Labels

The following labels could not be found: .NET, dependencies, nuget, packages. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Aug 4, 2025

The reviewers field in the dependabot.yml file will be removed soon. Please use the code owners file to specify reviewers for Dependabot PRs. For more information, see this blog post.

@dependabot dependabot bot mentioned this pull request Aug 4, 2025
@github-actions github-actions bot added the size/S label Aug 4, 2025
@github-actions
Copy link

github-actions bot commented Aug 4, 2025

Infisical secrets check: ✅ No secrets leaked!

💻 Scan logs
Update Required: Your current package installation script is outdated and will no longer receive updates.
Please update to the new installation script which can be found here https://infisical.com/docs/cli/overview#installation debian section

A new release of infisical is available: 0.38.0 -> 0.41.90

To update, run: sudo apt-get update && sudo apt-get install infisical

6:02AM INF scanning for exposed secrets...
6:02AM INF 8 commits scanned.
6:02AM INF scan completed in 69.8ms
6:02AM INF no leaks found

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant