Skip to content

Bump the nuget group with 14 updates#1565

Merged
Tyrrrz merged 1 commit into
primefrom
dependabot/nuget/nuget-84a62d5d75
Jul 4, 2026
Merged

Bump the nuget group with 14 updates#1565
Tyrrrz merged 1 commit into
primefrom
dependabot/nuget/nuget-84a62d5d75

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 1, 2026

Copy link
Copy Markdown
Contributor

Updated AngleSharp from 1.4.0 to 1.5.1.

Release notes

Sourced from AngleSharp's releases.

1.5.0

Released on Saturday, June 6 2026

  • Fixed vulnerability via annoation-xml elements (GHSA-pgww-w46g-26qg)
  • Updated benchmarks (#​1246) @​jafin
  • Added ability to pass in cookie container to MemoryCookieProvider (#​1249) @​riina
  • Added HTML parser selector optimizations (#​1245) @​jafin

Full Changelog: AngleSharp/AngleSharp@v1.4.0...1.5.0

Commits viewable in compare view.

Updated Avalonia from 12.0.4 to 12.0.5.

Release notes

Sourced from Avalonia's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Avalonia.Desktop from 12.0.4 to 12.0.5.

Release notes

Sourced from Avalonia.Desktop's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated CSharpier.MsBuild from 1.2.6 to 1.3.0.

Release notes

Sourced from CSharpier.MsBuild'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-warnings argument has been renamed to --syntax-errors-as-warnings and 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 xaml or axaml is treated as strict whitespace. See details

Feature: 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.

<!-- input & expected output -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute>

<!-- 1.2.6 -->
<ElementWithAttribute Attribute="AttributeValue__________________"
  >TextValue</ElementWithAttribute
>

Feature: Support for csharpier-ignore with XML formatter #​1788

CSharpier now supports csharpier-ignore in xml files. See details

Feature: 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 check command now supports a --use-cache option.

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 server to 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

// input and expected output
var x = 1;
    
// csharpier-ignore
var y=1;

/// 1.2.6
var x = 1;
// csharpier-ignore
var y=1;
 ... (truncated)

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

Updated [JsonExtensions](https://github.com/Tyrrrz/JsonExtensions) from 1.2.0 to 1.2.3.

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

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

## 1.2.3

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



**Full Changelog**: https://github.com/Tyrrrz/JsonExtensions/compare/1.2.2...1.2.3

## 1.2.2

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



**Full Changelog**: https://github.com/Tyrrrz/JsonExtensions/compare/1.2.1...1.2.2

## 1.2.1

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

## What's Changed
### Enhancements
* Migrate to Centralized NuGet Package Management (CPM) by @​Copilot in https://github.com/Tyrrrz/JsonExtensions/pull/21
* Avoid intermediate byte[] allocation in Json.Parse/TryParse(string) by @​Copilot in https://github.com/Tyrrrz/JsonExtensions/pull/22
* Remove explicit Microsoft.SourceLink.GitHub package reference by @​Copilot in https://github.com/Tyrrrz/JsonExtensions/pull/24

## New Contributors
* @​dependabot[bot] made their first contribution in https://github.com/Tyrrrz/JsonExtensions/pull/1
* @​Copilot made their first contribution in https://github.com/Tyrrrz/JsonExtensions/pull/21

**Full Changelog**: https://github.com/Tyrrrz/JsonExtensions/compare/1.2...1.2.1

Commits viewable in [compare view](https://github.com/Tyrrrz/JsonExtensions/commits/1.2.3).
</details>

Updated [Markdig](https://github.com/xoofx/markdig) from 1.2.0 to 1.3.2.

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

_Sourced from [Markdig's releases](https://github.com/xoofx/markdig/releases)._

## 1.3.2

# Changes

## 🐛 Bug Fixes

- Fix emoji table alignment regression (#​943) (fc705234)

**Full Changelog**: [1.3.1...1.3.2](https://github.com/xoofx/markdig/compare/1.3.1...1.3.2)

<sub>Published with [dotnet-releaser](https://github.com/xoofx/dotnet-releaser/)</sub>


## 1.3.1

# Changes

## 🐛 Bug Fixes

- Fix LinkHelper non-ASCII urilize (#​942) (50061841)
- Fix plus superscript parsing (#​791) (25506f20)

**Full Changelog**: [1.3.0...1.3.1](https://github.com/xoofx/markdig/compare/1.3.0...1.3.1)

<sub>Published with [dotnet-releaser](https://github.com/xoofx/dotnet-releaser/)</sub>


## 1.3.0

# Changes

## 🐛 Bug Fixes

- Fix CJK emphasis after HTML entity newlines (#​941) (fcbf8170)
- Fix pipe table cells with unmatched subscript (#​932) (0f98267a)
- Fix roundtrip autolink URLs (#​919) (b8364135)
- Fix configurable nesting depth limit (#​892) (d7f13b03)
- Fix NormalizeRenderer auto identifiers output (#​930) (9dffce52)
- Fix blockquote ordered list parsing (#​887) (bc4e3990)

## 📚 Documentation

- add InferColumnWidthsFromSeparator docs (PR #​939) by @​SimonCropp

## 🧰 Misc

- Update readme with Alert extension details (PR #​940) by @​AndrewTriesToCode
- Update AGENTS.md (5dca4149)

**Full Changelog**: [1.2.0...1.3.0](https://github.com/xoofx/markdig/compare/1.2.0...1.3.0)

<sub>Published with [dotnet-releaser](https://github.com/xoofx/dotnet-releaser/)</sub>


Commits viewable in [compare view](https://github.com/xoofx/markdig/compare/1.2.0...1.3.2).
</details>

Updated [Microsoft.Extensions.Configuration](https://github.com/dotnet/dotnet) from 10.0.8 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Configuration's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

Updated [Microsoft.Extensions.Configuration.EnvironmentVariables](https://github.com/dotnet/dotnet) from 10.0.8 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Configuration.EnvironmentVariables's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

Updated [Microsoft.Extensions.Configuration.UserSecrets](https://github.com/dotnet/dotnet) from 10.0.8 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.Configuration.UserSecrets's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

Updated [Microsoft.Extensions.DependencyInjection](https://github.com/dotnet/dotnet) from 10.0.8 to 10.0.9.

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

_Sourced from [Microsoft.Extensions.DependencyInjection's releases](https://github.com/dotnet/dotnet/releases)._

No release notes found for this version range.

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

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

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

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

## 18.7.0

## What's Changed
* Add ARM64 msdia140.dll support to test platform packages by @​jamesmcroft in https://github.com/microsoft/vstest/pull/15689
* Update System.Memory from 4.5.5 to 4.6.3 by @​nohwnd in https://github.com/microsoft/vstest/pull/15706

## New Contributors
* @​jamesmcroft made their first contribution in https://github.com/microsoft/vstest/pull/15689

**Full Changelog**: https://github.com/microsoft/vstest/compare/v18.6.0...v18.7.0

Commits viewable in [compare view](https://github.com/microsoft/vstest/compare/v18.6.0...v18.7.0).
</details>

Updated [Polly](https://github.com/App-vNext/Polly) from 8.6.6 to 8.7.0.

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

_Sourced from [Polly's releases](https://github.com/App-vNext/Polly/releases)._

## 8.7.0

## Highlights

* Adds caller cancellation token propagation in hedging and timeout strategies by @​DaRosenberg in https://github.com/App-vNext/Polly/pull/3094
* Telemetry refactoring by @​martincostello in https://github.com/App-vNext/Polly/pull/2985

## What's Changed

* Update zizmor to 1.22.0 by @​martincostello in https://github.com/App-vNext/Polly/pull/2955
* Increase test timeout by @​martincostello in https://github.com/App-vNext/Polly/pull/2956
* Disable secrets-outside-env audit by @​martincostello in https://github.com/App-vNext/Polly/pull/2969
* Update zizmor to 1.23.1 by @​martincostello in https://github.com/App-vNext/Polly/pull/2970
* Update .NET NuGet packages by @​martincostello in https://github.com/App-vNext/Polly/pull/2982
* Add AGENTS.md by @​martincostello in https://github.com/App-vNext/Polly/pull/2983
* Fix typo in HTTP client integrations documentation by @​alexravenna in https://github.com/App-vNext/Polly/pull/2984
* Remove unused constant by @​martincostello in https://github.com/App-vNext/Polly/pull/2986
* Fix non-deterministic branch coverage in HedgingExecutionContext hedging delay tests by @​Copilot in https://github.com/App-vNext/Polly/pull/2997
* Bump GitHubActionsTestLogger to 3.0.2 by @​martincostello in https://github.com/App-vNext/Polly/pull/3000
* Bump actionlint to v1.7.12 by @​martincostello in https://github.com/App-vNext/Polly/pull/3006
* Bump sign by @​martincostello in https://github.com/App-vNext/Polly/pull/3008
* Move Public API baselines by @​martincostello in https://github.com/App-vNext/Polly/pull/3016
* Formatting tweaks by @​martincostello in https://github.com/App-vNext/Polly/pull/3017
* Formatting tweaks by @​martincostello in https://github.com/App-vNext/Polly/pull/3018
* Remove ZIZMOR_VERSION by @​martincostello in https://github.com/App-vNext/Polly/pull/3025
* Assert nullable has result by @​martincostello in https://github.com/App-vNext/Polly/pull/3028
* Update deprecated action input by @​martincostello in https://github.com/App-vNext/Polly/pull/3035
* Move dependabot to Friday by @​martincostello in https://github.com/App-vNext/Polly/pull/3044
* Fix tag comment by @​martincostello in https://github.com/App-vNext/Polly/pull/3045
* Fix dependabot group by @​martincostello in https://github.com/App-vNext/Polly/pull/3047
* Pin runner images by @​martincostello in https://github.com/App-vNext/Polly/pull/3065
* Bump Refit to 10.2.0 by @​martincostello in https://github.com/App-vNext/Polly/pull/3096
* Disable Azure deployments by @​martincostello in https://github.com/App-vNext/Polly/pull/3105

## New Contributors

* @​alexravenna made their first contribution in https://github.com/App-vNext/Polly/pull/2984
* @​DaRosenberg made their first contribution in https://github.com/App-vNext/Polly/pull/3094

**Full Changelog**: https://github.com/App-vNext/Polly/compare/8.6.6...8.7.0


Commits viewable in [compare view](https://github.com/App-vNext/Polly/compare/8.6.6...8.7.0).
</details>

Updated [PowerKit](https://github.com/Tyrrrz/PowerKit) from 2.0.1 to 2.0.2.

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

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

## 2.0.2

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



**Full Changelog**: https://github.com/Tyrrrz/PowerKit/compare/2.0.1...2.0.2

Commits viewable in [compare view](https://github.com/Tyrrrz/PowerKit/compare/2.0.1...2.0.2).
</details>

Updated [Spectre.Console](https://github.com/spectreconsole/spectre.console) from 0.55.2 to 0.57.1.

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

_Sourced from [Spectre.Console's releases](https://github.com/spectreconsole/spectre.console/releases)._

## 0.57.1

## What's Changed

* GH2153: Fix async stack traces rendering as MoveNext() instead of source methods by [@​devlead](https://github.com/devlead) in [#​2154](https://github.com/spectreconsole/spectre.console/pull/2154)

**Full Changelog**: https://github.com/spectreconsole/spectre.console/compare/0.57.0...0.57.1

## 0.57.0

## What's Changed
* Make source generator output deterministic (LF, no BOM) by [@​phil-scott-78](https://github.com/phil-scott-78) in [#​2143](https://github.com/spectreconsole/spectre.console/pull/2143)
* Add new box border styles including beveled, dashed, dotted, heavy, and rounded variants by [@​phil-scott-78](https://github.com/phil-scott-78) in [#​2142](https://github.com/spectreconsole/spectre.console/pull/2142)
* Should preserve auto links when wrapped in grid by [@​patriksvensson](https://github.com/patriksvensson) in [#​2149](https://github.com/spectreconsole/spectre.console/pull/2149)

**Full Changelog**: https://github.com/spectreconsole/spectre.console/compare/0.56.0...0.57.0

## 0.56.0

## What's Changed

* Ensure redirected output works as expected by [@​patriksvensson](https://github.com/patriksvensson) in [#​2098](https://github.com/spectreconsole/spectre.console/pull/2098)
* Add missing text prompt suffix by [@​merklegroot](https://github.com/merklegroot) in [#​2102](https://github.com/spectreconsole/spectre.console/pull/2102)
* Fix Align measure to respect explicitly set width by [@​GrantTotinov](https://github.com/GrantTotinov) in [#​2101](https://github.com/spectreconsole/spectre.console/pull/2101)
* Option to exclude vertical padding for live progress renderer by [@​james-newell-forge](https://github.com/james-newell-forge) in [#​2100](https://github.com/spectreconsole/spectre.console/pull/2100)
* Don't emit ANSI sequence for 0 movement by [@​merklegroot](https://github.com/merklegroot) in [#​2104](https://github.com/spectreconsole/spectre.console/pull/2104)
* ConfirmationPrompt: Allow submission without Enter key by [@​patriksvensson](https://github.com/patriksvensson) in [#​2111](https://github.com/spectreconsole/spectre.console/pull/2111)
* Add two new layout modes for FigletText by [@​patriksvensson](https://github.com/patriksvensson) in [#​2066](https://github.com/spectreconsole/spectre.console/pull/2066)
* Fix escaping of interpolated arguments in markup by [@​GrantTotinov](https://github.com/GrantTotinov) in [#​2118](https://github.com/spectreconsole/spectre.console/pull/2118)
* Allow validation chaining by [@​AntekOlszewski](https://github.com/AntekOlszewski) in [#​2116](https://github.com/spectreconsole/spectre.console/pull/2116)
* Fix grid regression where expansion did not work by [@​patriksvensson](https://github.com/patriksvensson) in [#​2127](https://github.com/spectreconsole/spectre.console/pull/2127)
* Preserve links in segments by [@​patriksvensson](https://github.com/patriksvensson) in [#​2135](https://github.com/spectreconsole/spectre.console/pull/2135)

## New Contributors

* [@​merklegroot](https://github.com/merklegroot) made their first contribution in [#​2102](https://github.com/spectreconsole/spectre.console/pull/2102)
* [@​GrantTotinov](https://github.com/GrantTotinov) made their first contribution in [#​2101](https://github.com/spectreconsole/spectre.console/pull/2101)
* [@​james-newell-forge](https://github.com/james-newell-forge) made their first contribution in [#​2100](https://github.com/spectreconsole/spectre.console/pull/2100)

**Full Changelog**: https://github.com/spectreconsole/spectre.console/compare/0.55.2...0.56.0

Commits viewable in [compare view](https://github.com/spectreconsole/spectre.console/compare/0.55.2...0.57.1).
</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 show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions


</details>

Bumps AngleSharp from 1.4.0 to 1.5.1
Bumps Avalonia from 12.0.4 to 12.0.5
Bumps Avalonia.Desktop from 12.0.4 to 12.0.5
Bumps CSharpier.MsBuild from 1.2.6 to 1.3.0
Bumps JsonExtensions from 1.2.0 to 1.2.3
Bumps Markdig from 1.2.0 to 1.3.2
Bumps Microsoft.Extensions.Configuration from 10.0.8 to 10.0.9
Bumps Microsoft.Extensions.Configuration.EnvironmentVariables from 10.0.8 to 10.0.9
Bumps Microsoft.Extensions.Configuration.UserSecrets from 10.0.8 to 10.0.9
Bumps Microsoft.Extensions.DependencyInjection from 10.0.8 to 10.0.9
Bumps Microsoft.NET.Test.Sdk from 18.6.0 to 18.7.0
Bumps Polly from 8.6.6 to 8.7.0
Bumps PowerKit from 2.0.1 to 2.0.2
Bumps Spectre.Console from 0.55.2 to 0.57.1

---
updated-dependencies:
- dependency-name: AngleSharp
  dependency-version: 1.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Avalonia
  dependency-version: 12.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Avalonia.Desktop
  dependency-version: 12.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CSharpier.MsBuild
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: JsonExtensions
  dependency-version: 1.2.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Markdig
  dependency-version: 1.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.EnvironmentVariables
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.Configuration.UserSecrets
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.Extensions.DependencyInjection
  dependency-version: 10.0.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 18.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: Polly
  dependency-version: 8.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: PowerKit
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: Spectre.Console
  dependency-version: 0.57.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@Tyrrrz
Tyrrrz merged commit 623c688 into prime Jul 4, 2026
24 of 25 checks passed
@Tyrrrz
Tyrrrz deleted the dependabot/nuget/nuget-84a62d5d75 branch July 4, 2026 15:48
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant