Bump the dependencies group with 12 updates#936
Conversation
Bumps csharpier from 1.2.6 to 1.3.0 Bumps Elastic.Clients.Elasticsearch from 9.3.4 to 9.4.2 Bumps log4net from 3.3.0 to 3.3.1 Bumps Microsoft.Extensions.Http from 10.0.8 to 10.0.9 Bumps Microsoft.NET.Test.Sdk from 18.5.1 to 18.6.0 Bumps RabbitMQ.Client from 6.8.1 to 7.2.1 Bumps SonarAnalyzer.CSharp from 10.22.0.136894 to 10.27.0.140913 Bumps StackExchange.Redis from 2.12.14 to 2.13.17 Bumps System.Diagnostics.EventLog from 10.0.5 to 10.0.9 Bumps System.Security.Permissions from 10.0.3 to 10.0.9 Bumps System.Text.Encoding.CodePages from 10.0.5 to 10.0.9 Bumps System.Text.Json from 10.0.5 to 10.0.9 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: Elastic.Clients.Elasticsearch dependency-version: 9.4.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: log4net dependency-version: 3.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: Microsoft.Extensions.Http dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.6.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: RabbitMQ.Client dependency-version: 7.2.1 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies - dependency-name: SonarAnalyzer.CSharp dependency-version: 10.27.0.140913 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: StackExchange.Redis dependency-version: 2.13.17 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies - dependency-name: System.Diagnostics.EventLog dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: System.Security.Permissions dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: System.Text.Encoding.CodePages dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies - dependency-name: System.Text.Json dependency-version: 10.0.9 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
|
Review the following changes in direct dependencies. Learn more about Socket for GitHub. |
|
Caution Review the following alerts detected in dependencies. According to your organization's Security Policy, you must resolve all "Block" alerts before proceeding. Learn more about Socket for GitHub.
|
|
Infisical secrets check: ✅ No secrets leaked! 💻 Scan logs2026-06-12T15:35:47Z INF scanning for exposed secrets...
3:35PM INF 802 commits scanned.
2026-06-12T15:35:49Z INF scan completed in 1.21s
2026-06-12T15:35:49Z INF no leaks found
|
guibranco
left a comment
There was a problem hiding this comment.
Automatically approved by gstraccini[bot]
Updated csharpier from 1.2.6 to 1.3.0.
Release notes
Sourced from csharpier's releases.
1.3.0
1.3.0
Breaking Changes
Change xml formatting to return error when it runs into syntax error so it is consistent with c# #1854
Previously CSharpier treated an invalid xml file as a warning instead of an error. This was inconsistent with how it treated c# files.
Invalid c# or xml files are not treated as errors.
The
--compilation-errors-as-warningsargument has been renamed to--syntax-errors-as-warningsand can be used to return warnings instead of errors when encountering invalid files.What's Changed
Feature: Configurable whitespace handling for xml #1790
CSharpier now supports two types of xml whitespace formatting strict or ignore.
By default all xml except
xamloraxamlis treated as strict whitespace. See detailsFeature: Move closing bracket for xml elements to the same line. #1598
With strict xml whitespace handling, csharpier now keeps the closing bracket for an element on the same line instead of breaking it to a new line.
Feature: Support for csharpier-ignore with XML formatter #1788
CSharpier now supports
csharpier-ignorein xml files. See detailsFeature: Add MSBuild transitive and multi-target support #1833
CSharpier.MSBuild can now work as a transitive dependency.
Feature: allow checking formatting with cache #1830
The
csharpier checkcommand now supports a--use-cacheoption.Feature: remove dependency on Microsoft.AspNetCore.App #1508
Previously CSharpier required that Microsoft.AspNetCore.App be installed. CSharpier has been modified to use an HttpListener when it is run using
serverto remove the need for this dependency.Fix: csharpier-ignore comment removes linespaces before block #1867
CSharpier was removing blank lines before csharpier-ignore comments in some cases