E528 Bump the patch group with 20 updates by dependabot[bot] · Pull Request #267 · DEFRA/pha-import-notifications · GitHub
[go: up one dir, main page]

Skip to content

Bump the patch group with 20 updates#267

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/dot-config/patch-9e9c699d35
Closed

Bump the patch group with 20 updates#267
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/nuget/dot-config/patch-9e9c699d35

Conversation

@dependabot
Copy link
Contributor
@dependabot dependabot bot commented on behalf of github Nov 6, 2025

Updated csharpier from 1.0.2 to 1.1.2.

Release notes

Sourced from csharpier's releases.

1.1.2

What's Changed

Inconsistencies with null-coalescing wrapping on method chains #​1573

On longer method chains, depending on the exact chain a null coalescing expression wouldn't always be preceded by a new line.

// input & expected output
var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallMethod__________()
    ?? throw new Exception();

var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallLongMethod___________________________________________________()
    ?? throw new Exception();

// 1.1.1
var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallMethod__________() ?? throw new Exception();

var x =
    someValue
        .Property.CallLongMethod_____________________________________()
        .CallLongMethod___________________________________________________()
    ?? throw new Exception();

Full Changelog: belav/csharpier@1.1.1...1.1.2

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)

Commits viewable in compare view.

Updated Elastic.CommonSchema.Serilog from 8.18.1 to 9.0.0.

Release notes

Sourced from Elastic.CommonSchema.Serilog's releases.

9.0.0

elastic/ecs-dotnet@8.19.0...9.0.0

View the full list of issues and PRs

8.19.0

elastic/ecs-dotnet@8.18.2...8.19.0

View the full list of issues and PRs

8.18.2

elastic/ecs-dotnet@8.18.1...8.18.2

View the full list of issues and PRs

Commits viewable in compare view.

Updated Elastic.Serilog.Enrichers.Web from 8.18.1 to 9.0.0.

Release notes

Sourced from Elastic.Serilog.Enrichers.Web's releases.

9.0.0

elastic/ecs-dotnet@8.19.0...9.0.0

View the full list of issues and PRs

8.19.0

elastic/ecs-dotnet@8.18.2...8.19.0

View the full list of issues and PRs

8.18.2

elastic/ecs-dotnet@8.18.1...8.18.2

View the full list of issues and PRs

Commits viewable in compare view.

Updated FluentValidation from 12.0.0 to 12.1.0.

Release notes

Sourced from FluentValidation's releases.

12.1.0

Release notes

Please read the upgrade guide if you are moving from 11.x to 12.x

Changes in 12.1.0

  • Add Tamil language (#​2334)
  • Add Telugu language (#​2333)
  • Fixes to Japanese translations (#​2340)

Changes in 12.0.0

  • Drops support for netstandard2.0, netstandard2.1, .net 5, .net 6 and .net 7. Minimum supported platform is now .net 8.
  • Add support for dependent rules for custom rules (#​2170)
  • Removes deprecated DI extensions
  • Removes deprecated transform methods (#​2027)
  • Remove the ability to disable the root-model null check (#​2069)
  • Use Zomp.SyncMethodGenerator to clean up internal sync/async code paths and increase performance (#​2136)
  • Add Serbian (Cyrillic) language; rename existing Serbian to Serbian (Latin) (#​2283)

Downloads

Binaries can be downloaded from nuget:

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Authentication.JwtBearer from 9.0.6 to 9.0.10.

Release notes

Sourced from Microsoft.AspNetCore.Authentication.JwtBearer's releases.

9.0.10

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.9...v9.0.10

9.0.9

Release

What's Changed

Full Changelog: dotnet/aspnetcore@v9.0.8...v9.0.9

9.0.7

Release

What's Changed

< FF8 ul dir="auto">
  • Update branding to 9.0.7 by @​vseanreesermsft in Update branding to 9.0.7 dotnet/aspnetcore#62242
  • [release/9.0] (deps): Bump src/submodules/googletest from 04ee1b4 to e9092b1 by @​dependabot in [release/9.0] (deps): Bump src/submodules/googletest from 04ee1b4 to e9092b1 dotnet/aspnetcore#62199
  • Fix OpenApiJsonSchema array parsing (#​62051) by @​BrennanConroy in Fix OpenApiJsonSchema array parsing (#62051) dotnet/aspnetcore#62118
  • [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in [release/9.0] Update dependencies from dotnet/extensions dotnet/aspnetcore#61986
  • [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in [release/9.0] Update dependencies from dotnet/arcade dotnet/aspnetcore#61945
  • [release/9.0] Update Alpine helix references by @​wtgodbe in [release/9.0] Update Alpine helix references dotnet/aspnetcore#62240
  • [Backport 9.0] [IIS] Manually parse exe bitness (#​61894) by @​BrennanConroy in [Backport 9.0] [IIS] Manually parse exe bitness (#61894) dotnet/aspnetcore#62038
  • [release/9.0] Associate tagged keys with entries so replacements are not evicted by @​github-actions in [release/9.0] Associate tagged keys with entries so replacements are not evicted dotnet/aspnetcore#62248
  • [release/9.0] Block test that is failing after switching to latest-chrome by @​github-actions in [release/9.0] Block test that is failing after switching to latest-chrome dotnet/aspnetcore#62283
  • [release/9.0] Update dependencies from dotnet/arcade by @​dotnet-maestro in [release/9.0] Update dependencies from dotnet/arcade dotnet/aspnetcore#62281
  • [release/9.0] Update dependencies from dotnet/extensions by @​dotnet-maestro in [release/9.0] Update dependencies from dotnet/extensions dotnet/aspnetcore#62282
  • Merging internal commits for release/9.0 by @​vseanreesermsft in Merging internal commits for release/9.0 dotnet/aspnetcore#62303
  • Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7

    Commits viewable in compare view.

    Updated Microsoft.AspNetCore.HeaderPropagation from 9.0.6 to 9.0.10.

    Release notes

    Sourced from Microsoft.AspNetCore.HeaderPropagation's releases.

    9.0.10

    Release

    What's Changed

    Full Changelog: dotnet/aspnetcore@v9.0.9...v9.0.10

    9.0.9

    Release

    What's Changed

    Full Changelog: dotnet/aspnetcore@v9.0.8...v9.0.9

    9.0.7

    Release

    What's Changed

    Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7

    Commits viewable in compare view.

    Updated Microsoft.AspNetCore.Mvc.Testing from 9.0.6 to 9.0.10.

    Release notes

    Sourced from Microsoft.AspNetCore.Mvc.Testing's releases.

    9.0.10

    Release

    What's Changed

    Full Changelog: dotnet/aspnetcore@v9.0.9...v9.0.10

    9.0.9

    Release

    What's Changed

    Full Changelog: dotnet/aspnetcore@v9.0.8...v9.0.9

    9.0.7

    Release

    What's Changed

    Full Changelog: dotnet/aspnetcore@v9.0.6...v9.0.7

    Commits viewable in compare view.

    Updated Microsoft.Extensions.Diagnostics.Testing from 9.7.0 to 9.10.0.

    Release notes

    Sourced from Microsoft.Extensions.Diagnostics.Testing's releases.

    9.10.0

    What's Changed

    New Contributors

    9.9.0

    Highlights

    AI

    • Abstractions for remote MCP servers; response/approval flow support via new experimental types
    • Function approvals via new experimental types (e.g., ApprovalRequiredAIFunction, user input/approval request & response content).
    • Reasoning text streaming for OpenAI Responses ChatClient streaming.
    • AIFunction split into a base class to improve extensibility.
    • IChatReducer moved to Microsoft.Extensions.AI.Abstractions.
    • Updated to OpenAI 2.4.0 and genai standard convention 1.37.
    • Coalescing logic now treats ChatMessage.Role changes as new messages.
    • GetResponseAsync<T> now reads only the last message (bug fix).
    • OpenTelemetry ChatClient/EmbeddingGenerator logs raw additional properties (no key mangling).
    • Fixed empty annotated text chunk handling in streaming with OpenAI Assistants.

    Telemetry & Diagnostics

    • HTTP diagnostics log query string params with proper redaction (emitted on url.query).
    • server.address telemetry emits host only (per OpenTelemetry semantic conventions).
    • Heuristics added to detect well-known model hosts.
    • Resource monitoring can consider Environment.CpuUsage.

    New Contributors

    Full Changelog: dotnet/extensions@v9.8.0...v9.9.0

    9.8.0

    What's Changed

    9.7.2

    Packages Released

    What's Changed

    • Target .NET 8 for more stable runtime requirement by @​joelverhagen in #​6617

    Full Changelog: dotnet/extensions@v9.7.1...v9.7.2

    9.7.1

    Packages Released

    What's Changed

    Full Changelog: dotnet/extensions@v9.7.0...v9.7.1

    Commits viewable in compare view.

    Updated Microsoft.Extensions.Http.Resilience from 9.6.0 to 9.10.0.

    Release notes

    Sourced from Microsoft.Extensions.Http.Resilience's releases.

    9.10.0

    What's Changed

    New Contributors

    9.9.0

    Highlights

    AI

    • Abstractions for remote MCP servers; response/approval flow support via new experimental types
    • Function approvals via new experimental types (e.g., ApprovalRequiredAIFunction, user input/approval request & response content).
    • Reasoning text streaming for OpenAI Responses ChatClient streaming.
    • AIFunction split into a base class to improve extensibility.
    • IChatReducer moved to Microsoft.Extensions.AI.Abstractions.
    • Updated to OpenAI 2.4.0 and genai standard convention 1.37.
    • Coalescing logic now treats ChatMessage.Role changes as new messages.
    • GetResponseAsync<T> now reads only the last message (bug fix).
    • OpenTelemetry ChatClient/EmbeddingGenerator logs raw additional properties (no key mangling).
    • Fixed empty annotated text chunk handling in streaming with OpenAI Assistants.

    Telemetry & Diagnostics

    • HTTP diagnostics log query string params with proper redaction (emitted on url.query).
    • server.address telemetry emits host only (per OpenTelemetry semantic conventions).
    • Heuristics added to detect well-known model hosts.
    • Resource monitoring can consider Environment.CpuUsage.

    New Contributors

    Full Changelog: dotnet/extensions@v9.8.0...v9.9.0

    9.8.0

    What's Changed

    9.7.2

    Packages Released

    What's Changed

    • Target .NET 8 for more stable runtime requirement by @​joelverhagen in #​6617

    Full Changelog: dotnet/extensions@v9.7.1...v9.7.2

    9.7.1

    Packages Released

    What's Changed

    Full Changelog: dotnet/extensions@v9.7.0...v9.7.1

    9.7.0

    What's Changed

    New Contributors

    Full Changelog: dotnet/extensions@v9.6.0...v9.7.0

    Commits viewable in compare view.

    Updated Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0.

    Release notes

    Sourced from Microsoft.NET.Test.Sdk's releases.

    18.0.0

    What's Changed

    Internal fixes and updates

    Description has been truncated

    Bumps csharpier from 1.0.2 to 1.1.2
    Bumps Elastic.CommonSchema.Serilog from 8.18.1 to 9.0.0
    Bumps Elastic.Serilog.Enrichers.Web from 8.18.1 to 9.0.0
    Bumps FluentValidation from 12.0.0 to 12.1.0
    Bumps Microsoft.AspNetCore.Authentication.JwtBearer from 9.0.6 to 9.0.10
    Bumps Microsoft.AspNetCore.HeaderPropagation from 9.0.6 to 9.0.10
    Bumps Microsoft.AspNetCore.Mvc.Testing from 9.0.6 to 9.0.10
    Bumps Microsoft.Extensions.Diagnostics.Testing from 9.7.0 to 9.10.0
    Bumps Microsoft.Extensions.Http.Resilience from 9.6.0 to 9.10.0
    Bumps Microsoft.NET.Test.Sdk from 17.14.1 to 18.0.0
    Bumps Microsoft.OpenApi.Readers from 1.6.24 to 1.6.28
    Bumps Serilog.Enrichers.ClientInfo from 2.2.0 to 2.6.0
    Bumps SonarAnalyzer.CSharp from 10.12.0.118525 to 10.15.0.120848
    Bumps Swashbuckle.AspNetCore from 9.0.1 to 9.0.6
    Bumps swashbuckle.aspnetcore.cli from 9.0.1 to 9.0.6
    Bumps Swashbuckle.AspNetCore.ReDoc from 9.0.1 to 9.0.6
    Bumps Verify.Xunit from 30.4.0 to 31.4.3
    Bumps WireMock.Net from 1.8.13 to 1.15.0
    Bumps WireMock.Net.FluentAssertions from 1.8.13 to 1.15.0
    Bumps xunit.runner.visualstudio from 3.1.1 to 3.1.5
    
    ---
    updated-dependencies:
    - dependency-name: csharpier
      dependency-version: 1.1.2
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: Elastic.CommonSchema.Serilog
      dependency-version: 9.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: patch
    - dependency-name: Elastic.Serilog.Enrichers.Web
      dependency-version: 9.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: patch
    - dependency-name: FluentValidation
      dependency-version: 12.1.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: Microsoft.AspNetCore.Authentication.JwtBearer
      dependency-version: 9.0.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: Microsoft.AspNetCore.HeaderPropagation
      dependency-version: 9.0.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: Microsoft.AspNetCore.Mvc.Testing
      dependency-version: 9.0.10
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: Microsoft.Extensions.Diagnostics.Testing
      dependency-version: 9.10.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: Microsoft.Extensions.Http.Resilience
      dependency-version: 9.10.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: Microsoft.NET.Test.Sdk
      dependency-version: 18.0.0
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: patch
    - dependency-name: Microsoft.OpenApi.Readers
      dependency-version: 1.6.28
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: Serilog.Enrichers.ClientInfo
      dependency-version: 2.6.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: SonarAnalyzer.CSharp
      dependency-version: 10.15.0.120848
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: Swashbuckle.AspNetCore
      dependency-version: 9.0.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: swashbuckle.aspnetcore.cli
      dependency-version: 9.0.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: Swashbuckle.AspNetCore.ReDoc
      dependency-version: 9.0.6
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    - dependency-name: Verify.Xunit
      dependency-version: 31.4.3
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: patch
    - dependency-name: WireMock.Net
      dependency-version: 1.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: WireMock.Net.FluentAssertions
      dependency-version: 1.15.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: patch
    - dependency-name: xunit.runner.visualstudio
      dependency-version: 3.1.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added .NET Pull requests that update .net code dependencies Pull requests that update a dependency file labels Nov 6, 2025
    @dependabot @github
    Copy link
    Contributor Author
    dependabot bot commented on behalf of github Nov 7, 2025

    Looks like these dependencies are no longer updatable, so this is no longer needed.

    @dependabot dependabot bot closed this Nov 7, 2025
    @dependabot dependabot bot deleted the dependabot/nuget/dot-config/patch-9e9c699d35 branch November 7, 2025 12:25
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file .NET Pull requests that update .net code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants

    0