Skip to content

Bump AsyncKeyedLock and 4 others#7

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/DiscordChatExporter.Cli/nuget-84c45994f5
Closed

Bump AsyncKeyedLock and 4 others#7
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/nuget/DiscordChatExporter.Cli/nuget-84c45994f5

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Aug 1, 2025

Pinned AsyncKeyedLock at 7.1.6.

Release notes

Sourced from AsyncKeyedLock's releases.

7.1.6

Minor StripedAsyncKeyedLocker optimizations; implements IDisposable.

Commits viewable in compare view.

Updated CliFx from 2.3.5 to 2.3.6.

Release notes

Sourced from CliFx's releases.

2.3.6

What's Changed

New Contributors

Full Changelog: Tyrrrz/CliFx@2.3.5...2.3.6

Note:
Going forward, new release notes will appear here instead of the Changelog.md file.
If you want to see the release notes for older versions, you can find them here.

Commits viewable in compare view.

Updated CSharpier.MsBuild from 0.30.6 to 1.0.3.

Release notes

Sourced from CSharpier.MsBuild's releases.

1.0.3

What's Changed

Switch block case with conditionals adding newlines #​1630

Switch blocks were breaking on conditions within patterns.

// 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.0.3).
</details>

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

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

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

## 0.50.0

## What's Changed

### General

* Strong name the assemblies by [@​KirillOsenkov](https://github.com/KirillOsenkov) in [#​1623](https://github.com/spectreconsole/spectre.console/pull/1623)
* Update MSDN link to learn.microsoft.com by [@​Kissaki](https://github.com/Kissaki) in [#​1575](https://github.com/spectreconsole/spectre.console/pull/1575)
* Add spanish translation for help strings by [@​kzu](https://github.com/kzu) in [#​1597](https://github.com/spectreconsole/spectre.console/pull/1597)
* Update documentation: add example for the Text Prompt usage by [@​davide-pi](https://github.com/davide-pi) in [#​1636](https://github.com/spectreconsole/spectre.console/pull/1636)
* Fix typos xml docs by [@​devlead](https://github.com/devlead) in [#​1684](https://github.com/spectreconsole/spectre.console/pull/1684)
* Upgrade SixLabors.ImageSharp to 3.1.7 by [@​Moustafaa91](https://github.com/Moustafaa91) in [#​1779](https://github.com/spectreconsole/spectre.console/pull/1779)

### Console

* AOT Support for Spectre.Console by [@​phil-scott-78](https://github.com/phil-scott-78) in [#​1690](https://github.com/spectreconsole/spectre.console/pull/1690)
* Make method reference to Markup.Escape more obvious by [@​Kissaki](https://github.com/Kissaki) in [#​1574](https://github.com/spectreconsole/spectre.console/pull/1574)
* Fix `HtmlEncoder` Incorrectly Applying Italics to Bold Text by [@​z4ryy](https://github.com/z4ryy) in [#​1590](https://github.com/spectreconsole/spectre.console/pull/1590)
* Fix Console Display Issue with Deleting Wide Characters by [@​TonWin618](https://github.com/TonWin618) in [#​1595](https://github.com/spectreconsole/spectre.console/pull/1595)
* Fix search bug in prompt related to custom item types by [@​patriksvensson](https://github.com/patriksvensson) in [#​1627](https://github.com/spectreconsole/spectre.console/pull/1627)
* Cleanup the prompt tests by [@​0xced](https://github.com/0xced) in [#​1635](https://github.com/spectreconsole/spectre.console/pull/1635)
* Add custom style for each calendar event by [@​davide-pi](https://github.com/davide-pi) in [#​1246](https://github.com/spectreconsole/spectre.console/pull/1246)
* Fix tree expansion bug by [@​davide-pi](https://github.com/davide-pi) in [#​1245](https://github.com/spectreconsole/spectre.console/pull/1245)
* Enhance the style of the checkboxes for multi-selection by [@​davide-pi](https://github.com/davide-pi) in [#​1244](https://github.com/spectreconsole/spectre.console/pull/1244)
* Improve exception if a (multi)selection prompt is used incorrectly by [@​0xced](https://github.com/0xced) in [#​1637](https://github.com/spectreconsole/spectre.console/pull/1637)
* Fix incorrect panel height calculation in complex layout by [@​BlazeFace](https://github.com/BlazeFace) in [#​1514](https://github.com/spectreconsole/spectre.console/pull/1514)
* Adding Enricher for Azure Pipelines by [@​BlazeFace](https://github.com/BlazeFace) in [#​1675](https://github.com/spectreconsole/spectre.console/pull/1675)
* Added hex color conversion by [@​jsheely](https://github.com/jsheely) in [#​1432](https://github.com/spectreconsole/spectre.console/pull/1432)
* Fixed type in Segment description by [@​PascalSenn](https://github.com/PascalSenn) in [#​1687](https://github.com/spectreconsole/spectre.console/pull/1687)
* Adding TransferSpeedColumn configuration to display bits/bytes + binary/decimal prefixes by [@​tpill90](https://github.com/tpill90) in [#​904](https://github.com/spectreconsole/spectre.console/pull/904)
* Changes Emoji dictionary to OrdinalIgnoreCase for performance by [@​phil-scott-78](https://github.com/phil-scott-78) in [#​1691](https://github.com/spectreconsole/spectre.console/pull/1691)
* ProgressTask.GetPercentage() returns 100 when max value is 0 by [@​FrankRay78](https://github.com/FrankRay78) in [#​1694](https://github.com/spectreconsole/spectre.console/pull/1694)
* Async overloads for AnsiConsole Prompt/Ask/Confirm. by [@​tmds](https://github.com/tmds) in [#​1194](https://github.com/spectreconsole/spectre.console/pull/1194)
* Support 3-digit hex codes in markup by [@​TheMarteh](https://github.com/TheMarteh) in [#​1708](https://github.com/spectreconsole/spectre.console/pull/1708)
* Add async spinner extension methods and related documentation by [@​phil-scott-78](https://github.com/phil-scott-78) in [#​1747](https://github.com/spectreconsole/spectre.console/pull/1747)
* Fix generic exception formatting by [@​0xced](https://github.com/0xced) in [#​1755](https://github.com/spectreconsole/spectre.console/pull/1755)

### CLI

* Remove redundant explain settings ctor by [@​gitfool](https://github.com/gitfool) in [#​1534](https://github.com/spectreconsole/spectre.console/pull/1534)
* Trim trailing comma in settings by [@​devlead](https://github.com/devlead) in [#​1550](https://github.com/spectreconsole/spectre.console/pull/1550)
* Consider -? as an alias to -h by [@​kzu](https://github.com/kzu) in [#​1552](https://github.com/spectreconsole/spectre.console/pull/1552)
* Trimming of TestConsole output by CommandAppTester is user configurable. by [@​FrankRay78](https://github.com/FrankRay78) in [#​1739](https://github.com/spectreconsole/spectre.console/pull/1739)
* Include resource files for additional cultures in HelpProvider. by [@​Tolitech](https://github.com/Tolitech) in [#​1717](https://github.com/spectreconsole/spectre.console/pull/1717)
* Conditionally trim trailing periods of argument and option descriptions by [@​TheTonttu](https://github.com/TheTonttu) in [#​1740](https://github.com/spectreconsole/spectre.console/pull/1740)
* Changed IConfigurator to return IConfigurator instead of void by [@​byte2pixel](https://github.com/byte2pixel) in [#​1762](https://github.com/spectreconsole/spectre.console/pull/1762)
* Add parsed unknown flag to remaining arguments for a branch with a default command by [@​FrankRay78](https://github.com/FrankRay78) in [#​1660](https://github.com/spectreconsole/spectre.console/pull/1660)
* Correctly show application version; execution of command with version option by [@​FrankRay78](https://github.com/FrankRay78) in [#​1663](https://github.com/spectreconsole/spectre.console/pull/1663)
* Help output correctly decides when to show the version option by [@​FrankRay78](https://github.com/FrankRay78) in [#​1664](https://github.com/spectreconsole/spectre.console/pull/1664)

## New Contributors
* [@​Kissaki](https://github.com/Kissaki) made their first contribution in [#​1575](https://github.com/spectreconsole/spectre.console/pull/1575)
 ... (truncated)

Commits viewable in [compare view](https://github.com/spectreconsole/spectre.console/commits/0.50.0).
</details>

Pinned [WebMarkupMin.Core](https://github.com/Taritsyn/WebMarkupMin) at 2.19.0.

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

_Sourced from [WebMarkupMin.Core's releases](https://github.com/Taritsyn/WebMarkupMin/releases)._

## 2.19.0

**Version:** 2.19.0
**Published:** 5/18/2025
**Change Set:** [7e4ad91](https://github.com/Taritsyn/WebMarkupMin/tree/7e4ad91075cd065a475138003c985650bb343114)

 * In XML minification settings was added one new property - `AttributeQuotesStyle` (default `Auto`)
 * Improved a parsing of the `DOCTYPE` declaration for HTML/XHTML documents
 * In WebMarkupMin.NUglify added support for the NUglify version 1.21.15
 * In WebMarkupMin.AspNetCoreLatest added support for the ASP.NET Core 8.0.16 and 9.0.5

#### NuGet Packages

##### Core

 * [WebMarkupMin: Core](https://www.nuget.org/packages/WebMarkupMin.Core/2.19.0)

##### External JS and CSS minifiers

 * [WebMarkupMin: MS Ajax](https://www.nuget.org/packages/WebMarkupMin.MsAjax/2.19.0) contains adapters for the [Microsoft Ajax Minifier](https://github.com/microsoft/ajaxmin) version 5.14
 * [WebMarkupMin: YUI](https://www.nuget.org/packages/WebMarkupMin.Yui/2.19.0) contains adapters for the [YUI Compressor for .NET](https://github.com/YUICompressor-NET/YUICompressor.NET) version 3.1.0
 * [WebMarkupMin: NUglify](https://www.nuget.org/packages/WebMarkupMin.NUglify/2.19.0) contains adapters for the [NUglify](https://github.com/trullock/NUglify) version 1.21.15

##### ASP.NET Extensions

 * [WebMarkupMin: ASP.NET 4.X HTTP modules](https://www.nuget.org/packages/WebMarkupMin.AspNet4.HttpModules/2.19.0)
 * [WebMarkupMin: ASP.NET 4.X MVC](https://www.nuget.org/packages/WebMarkupMin.AspNet4.Mvc/2.19.0)
 * [WebMarkupMin: ASP.NET 4.X Web Forms](https://www.nuget.org/packages/WebMarkupMin.AspNet4.WebForms/2.19.0)
 * [WebMarkupMin: ASP.NET Core 1.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore1/2.19.0)
 * [WebMarkupMin: ASP.NET Core 2.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore2/2.19.0)
 * [WebMarkupMin: ASP.NET Core 3.1+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore3/2.19.0)
 * [WebMarkupMin: ASP.NET Core 6+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore6/2.19.0)
 * [WebMarkupMin: ASP.NET Core Latest](https://www.nuget.org/packages/WebMarkupMin.AspNetCoreLatest/2.19.0)
 * [WebMarkupMin: Brotli for ASP.NET](https://www.nuget.org/packages/WebMarkupMin.AspNet.Brotli/2.19.0) contains adapter for the [BrotliSharpLib](https://github.com/master131/BrotliSharpLib) version 0.3.3

## 2.18.1

**Version:** 2.18.1
**Published:** 12/12/2024
**Change Set:** [3ff2cae](https://github.com/Taritsyn/WebMarkupMin/tree/3ff2cae769b53ca95387ed641c39e1e75b77e015)

 * In WebMarkupMin.NUglify added support for the NUglify version 1.21.11
 * In ASP.NET Core extensions, fixed a error in the `AspNetCoreLogger` class

#### NuGet Packages

##### External JS and CSS minifiers

 * [WebMarkupMin: NUglify](https://www.nuget.org/packages/WebMarkupMin.NUglify/2.18.1) contains adapters for the [NUglify](https://github.com/trullock/NUglify) version 1.21.11

##### ASP.NET Extensions

 * [WebMarkupMin: ASP.NET Core 1.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore1/2.18.1)
 * [WebMarkupMin: ASP.NET Core 2.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore2/2.18.1)
 * [WebMarkupMin: ASP.NET Core 3.1+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore3/2.18.1)
 * [WebMarkupMin: ASP.NET Core 6+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore6/2.18.1)
 * [WebMarkupMin: ASP.NET Core Latest](https://www.nuget.org/packages/WebMarkupMin.AspNetCoreLatest/2.18.1)

## 2.18.0

**Version:** 2.18.0
**Published:** 11/14/2024
**Change Set:** [8b14d18](https://github.com/Taritsyn/WebMarkupMin/tree/8b14d18661d9aa232cfa0f46c1ae51969896a38d)

 * In WebMarkupMin.NUglify added support for the NUglify version 1.21.10
 * In ASP.NET Core extensions:
   * Services required by WebMarkupMin are now conditionally registered using the `TryAdd` methods
   * Added a `AspNetCoreLogger` class, which is a wrapper around the standard ASP.NET Core logger
   * Created the WebMarkupMin.AspNetCoreLatest module, that contains middleware for the ASP.NET Core 8 and 9
   * 3 modules have been deprecated:
     * WebMarkupMin.AspNetCore5 module replaced by the WebMarkupMin.AspNetCore3 module
     * WebMarkupMin.AspNetCore7 module replaced by the WebMarkupMin.AspNetCore6 module
     * WebMarkupMin.AspNetCore8 module replaced by the WebMarkupMin.AspNetCoreLatest module
   * In GZip, Deflate and Brotli compression settings for .NET 9 was added one new property - `AlternativeLevel`
 * In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.36
 * In WebMarkupMin.AspNet.Brotli:
   * Added support for .NET 9
   * Removed a .NET 6 and .NET 7 targets
   * In compression settings was changed a default value of the `Level` property from `5` to `4`

#### NuGet Packages

##### External JS and CSS minifiers

 * [WebMarkupMin: NUglify](https://www.nuget.org/packages/WebMarkupMin.NUglify/2.18.0) contains adapters for the [NUglify](https://github.com/trullock/NUglify) version 1.21.10

##### ASP.NET Extensions

 * [WebMarkupMin: ASP.NET Core 1.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore1/2.18.0)
 * [WebMarkupMin: ASP.NET Core 2.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore2/2.18.0)
 * [WebMarkupMin: ASP.NET Core 3.1+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore3/2.18.0)
 * [WebMarkupMin: ASP.NET Core 6+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore6/2.18.0)
 * [WebMarkupMin: ASP.NET Core Latest](https://www.nuget.org/packages/WebMarkupMin.AspNetCoreLatest/2.18.0)
 * [WebMarkupMin: Brotli for ASP.NET](https://www.nuget.org/packages/WebMarkupMin.AspNet.Brotli/2.18.0) contains adapter for the [BrotliSharpLib](https://github.com/master131/BrotliSharpLib) version 0.3.3

## 2.18.0-rc.1

**Version:** 2.18.0 RC 1
**Published:** 11/11/2024
**Change Set:** [b21a14e](https://github.com/Taritsyn/WebMarkupMin/tree/b21a14e1cf931494ed240048b4feebbec199e0bd)

 * In ASP.NET Core extensions:
   * Services required by WebMarkupMin are now conditionally registered using the `TryAdd` methods
   * Added a `AspNetCoreLogger` class, which is a wrapper around the standard ASP.NET Core logger
   * 3 packages have been deprecated:
     * WebMarkupMin.AspNetCore5 package replaced by the WebMarkupMin.AspNetCore3 package
     * WebMarkupMin.AspNetCore7 package replaced by the WebMarkupMin.AspNetCore6 package
     * WebMarkupMin.AspNetCore8 package replaced by the WebMarkupMin.AspNetCoreLatest package
   * In GZip, Deflate and Brotli compression settings for .NET 9.0 was added one new property - `AlternativeLevel`
 * In WebMarkupMin.AspNetCore6 added support for the ASP.NET Core 6.0.35
 * In WebMarkupMin.AspNetCoreLatest added support for the ASP.NET Core 9.0 RC 2
 * In WebMarkupMin.AspNet.Brotli:
   * Added support for .NET 9.0 RC 2
   * Removed a .NET 6 and .NET 7 targets
   * In compression settings was changed a default value of the `Level` property from `5` to `4`

#### NuGet Packages

##### ASP.NET Extensions

 * [WebMarkupMin: ASP.NET Core 1.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore1/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core 2.X](https://www.nuget.org/packages/WebMarkupMin.AspNetCore2/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core 3.1+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore3/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core 5](https://www.nuget.org/packages/WebMarkupMin.AspNetCore5/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core 6+](https://www.nuget.org/packages/WebMarkupMin.AspNetCore6/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core 7](https://www.nuget.org/packages/WebMarkupMin.AspNetCore7/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core 8](https://www.nuget.org/packages/WebMarkupMin.AspNetCore8/2.18.0-rc1)
 * [WebMarkupMin: ASP.NET Core Latest](https://www.nuget.org/packages/WebMarkupMin.AspNetCoreLatest/2.18.0-rc1)
 * [WebMarkupMin: Brotli for ASP.NET](https://www.nuget.org/packages/WebMarkupMin.AspNet.Brotli/2.18.0-rc1) contains adapter for the [BrotliSharpLib](https://github.com/master131/BrotliSharpLib) version 0.3.3

Commits viewable in [compare view](https://github.com/Taritsyn/WebMarkupMin/compare/v2.17.0...v2.19.0).
</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 <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 AsyncKeyedLock to 7.1.6
Bumps CliFx from 2.3.5 to 2.3.6
Bumps CSharpier.MsBuild to 1.0.3
Bumps Spectre.Console from 0.49.1 to 0.50.0
Bumps WebMarkupMin.Core to 2.19.0

---
updated-dependencies:
- dependency-name: AsyncKeyedLock
  dependency-version: 7.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: AsyncKeyedLock
  dependency-version: 7.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CliFx
  dependency-version: 2.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: nuget
- dependency-name: CSharpier.MsBuild
  dependency-version: 1.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: CSharpier.MsBuild
  dependency-version: 1.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: nuget
- dependency-name: Spectre.Console
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: WebMarkupMin.Core
  dependency-version: 2.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
- dependency-name: WebMarkupMin.Core
  dependency-version: 2.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: nuget
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the enhancement New feature or request label Aug 1, 2025
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot Bot commented on behalf of github Sep 1, 2025

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

@dependabot dependabot Bot closed this Sep 1, 2025
@dependabot dependabot Bot deleted the dependabot/nuget/DiscordChatExporter.Cli/nuget-84c45994f5 branch September 1, 2025 15:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

enhancement New feature or request

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants