Skip to content

Bump the production-dependencies group with 24 updates#55

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/nuget/JCarrollOnlineV2/production-dependencies-4352da038f
Open

Bump the production-dependencies group with 24 updates#55
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/nuget/JCarrollOnlineV2/production-dependencies-4352da038f

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 6, 2026

Updated AdvancedStringBuilder from 0.1.1 to 0.2.0.

Release notes

Sourced from AdvancedStringBuilder's releases.

0.2.0

Version: 0.2.0
Published: 2/17/2026
Change Set: dc6967e
NuGet Package AdvancedStringBuilder

  • Added a Trim extension method
  • Performed a migration to the modern C# null/not-null checks
  • Added support for nullable reference types
  • Added support for .NET 8, 9 and 10

Commits viewable in compare view.

Updated Autofac from 9.0.0 to 9.1.0.

Release notes

Sourced from Autofac's releases.

9.1.0

This is a pretty big release for Autofac with some major new functionality!

AnyKey Support

First, Autofac now natively supports the concept of AnyKey. It behaves the same way AnyKey works in Microsoft.Extensions.DependencyInjection, but it is native to Autofac directly. The unit tests here show some very detailed examples of usage, but on a high level:

var builder = new ContainerBuilder();
builder.RegisterType<Service>().Keyed<IService>(KeyedService.AnyKey);

var container = builder.Build();

// Registering as AnyKey allows it to respond to... any key!
var service = container.ResolveKeyed<IService>("service1");

Inject Service Key Into Constructors

The new [ServiceKey] attribute allows you to inject the service key provided during resolution. This is handy in conjunction with AnyKey. Again, this is similar to the construct in Microsoft.Extensions.DependencyInjection, but with native Autofac.

First, mark up your class to take the constructor parameter.

public class Service : IService
{
  private readonly string _id;
  public Service([ServiceKey] string id) => _id = id;
}

Then when you resolve the class, the service key will automatically be injected.

You can also make use of this in a lambda registration.

var builder = new ContainerBuilder();
builder.Register<Service>((ctx, p) => {
  var key = p.TryGetKeyedServiceKey(out string value) ? value : null;
  return new Service(key);
}).Keyed<Service>(KeyedService.AnyKey);

Metrics

Some metrics have been introduced that can allow you to capture counters on how long middleware is taking, how often lock contention occurs, and so on.

Set the AUTOFAC_METRICS environment variable in your process to true or 1 to enable this feature. You can see the set of counters that will become available here.

⚠️ This is NOT FREE. Collecting counters and metrics will incur a performance hit, so it's not something you want to leave on in production.

... (truncated)

Commits viewable in compare view.

Updated BundleTransformer.JsMin from 1.14.0 to 1.16.1.

Release notes

Sourced from BundleTransformer.JsMin's releases.

1.16.1

Version: 1.16.1
Published: 3/5/2026
Change Set: cf92c22

  • In BundleTransformer.SassAndScss added support for the Dart Sass version 1.97.3
  • In BundleTransformer.Autoprefixer added support for the Autoprefixer version 10.4.27.0
  • In BundleTransformer.JsMin added support for the JSMin version of February 25, 2026

NuGet Packages

Translators
Postprocessors
Minifiers

1.16.0

Version: 1.16.0
Published: 1/15/2026
Change Set: 42aa412

  • In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of the Sass and SCSS translator
  • In BundleTransformer.SassAndScss:
    • Added support for the Dart Sass version 1.97.2
    • In configuration settings of the Sass and SCSS translator become obsolete three properties: IndentType, IndentWidth and LineFeedType

Steps required to update the BundleTransformer.SassAndScss module to version 1.16.0:

  1. Update the BundleTransformer.SassAndScss and BundleTransformer.ConfigurationIntelliSense packages to latest versions.
  2. Remove the indentType , indentWidth and lineFeedType attributes from the /configuration/bundleTransformer/sassAndScss configuration element in the Web.config file.

NuGet Packages

Core
Translators

1.15.6

Version: 1.15.6
Published: 1/3/2026
Change Set: 493a97b

  • In BundleTransformer.TypeScript added support for the TypeScript version 5.9.3
  • In BundleTransformer.Autoprefixer added support for the Autoprefixer version 10.4.23.0

NuGet Packages

Translators
Postprocessors

1.15.5

Version: 1.15.5
Published: 8/5/2025
Change Set: 00b29fa

  • In BundleTransformer.SassAndScss added support for the Dart Sass version 1.89.2
  • In BundleTransformer.TypeScript added support for the TypeScript version 5.9 RTM (please note: The 5.9 RTM release is also called '5.9.2')
  • In BundleTransformer.NUglify added support for the NUglify version 1.21.17

NuGet Packages

Translators
Minifiers

1.15.4

Version: 1.15.4
Published: 6/11/2025
Change Set: 918fe28

  • In BundleTransformer.TypeScript added support for the TypeScript version 5.8.3
  • In BundleTransformer.Autoprefixer added support for the Autoprefixer version 10.4.21.0
  • In BundleTransformer.NUglify added support for the NUglify version 1.21.15

NuGet Packages

Translators
Postprocessors
Minifiers

1.15.3

Version: 1.15.3
Published: 3/5/2025
Change Set: 7bb84d1

  • In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of the Sass and SCSS translator
  • In BundleTransformer.SassAndScss:
    • Added support for the Dart Sass version 1.83.4
    • In configuration settings of the Sass and SCSS translator was added four new properties: FatalDeprecations (default empty string), FutureDeprecations (default empty string), QuietDependencies (default false) and SilenceDeprecations (default empty string)
  • In BundleTransformer.TypeScript added support for the TypeScript version 5.8 RTM (please note: The 5.8 RTM release is also called '5.8.2')
  • In BundleTransformer.Autoprefixer was updated the Autoprefixer Host to version 3.1.0
  • In BundleTransformer.NUglify added support for the NUglify version 1.21.13

NuGet Packages

Core
Translators
Postprocessors
Minifiers

1.15.2

Version: 1.15.2
Published: 12/2/2024
Change Set: 4504dfc

  • In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of the TypeScript translator
  • In BundleTransformer.TypeScript added support for the TypeScript version 5.7 RTM (please note: The 5.7 RTM release is also called '5.7.2')
  • In BundleTransformer.NUglify added support for the NUglify version 1.21.10

NuGet Packages

Core
Translators
Minifiers

1.15.1

Version: 1.15.1
Published: 9/21/2024
Change Set: 13fbad0

  • In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of the TypeScript translator
  • In BundleTransformer.TypeScript:
    • Added support for the TypeScript version 5.6 RTM (please note: The 5.6 RTM release is also called '5.6.2')
    • In configuration settings of the TypeScript translator was added one new property - StrictBuiltinIteratorReturn (default false)

NuGet Packages

Core
Translators

1.15.0

Version: 1.15.0
Published: 8/14/2024
Change Set: e97884a

  • In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of the TypeScript translator
  • In BundleTransformer.TypeScript:
    • Added support for the TypeScript version 5.5.4
    • In configuration settings of the TypeScript translator:
      • Become obsolete four properties: KeyofStringsOnly, NoStrictGenericChecks, SuppressExcessPropertyErrors and SuppressImplicitAnyIndexErrors, and also the EcmaScript3 value of the Target property
      • Added one new property - NoCheck (default false)
  • In BundleTransformer.Autoprefixer added support for the Autoprefixer version 10.4.20.0
  • In BundleTransformer.NUglify added support for the NUglify version 1.21.9

NuGet Packages

Core
Translators
Postprocessors
Minifiers

1.14.2

Version: 1.14.2
Published: 6/6/2024
Change Set: fe187a4

In BundleTransformer.SassAndScss added support for the Dart Sass version 1.77.4.

NuGet Packages

Translators

1.14.1

Version: 1.14.1
Published: 5/30/2024
Change Set: 5a998b0

Fixed a error that occurred when rewriting URLs that reference SVG patterns. Special thanks to Adrian Kuegel and Henning D.

NuGet Packages

Core

Commits viewable in compare view.

Updated DouglasCrockford.JsMin from 2.1.0 to 2.2.0.

Release notes

Sourced from DouglasCrockford.JsMin's releases.

2.2.0

Version: 2.2.0
Published: 2/27/2026
Change Set: 0b66bc4
NuGet Package: DouglasCrockford.JsMin

  • JSMin was updated to version of February 25, 2026
  • Changed a implementation of the StringBuilder.TrimStart extension method
  • Performed a migration to the modern C# null/not-null checks
  • Added support for .NET 10
  • In the lock statements for .NET 10 target now uses a instances of the System.Threading.Lock class
  • Added support for nullable reference types

Commits viewable in compare view.

Updated JavaScriptEngineSwitcher.Core from 3.24.1 to 3.31.0.

Release notes

Sourced from JavaScriptEngineSwitcher.Core's releases.

3.31.0

Version: 3.31.0
Published: 2/23/2026
Change Set: f516c32

  • Performed a migration to the modern C# null/not-null checks
  • Added support for .NET 10
  • In the lock statements for .NET 9 and 10 targets now uses a instances of the System.Threading.Lock class
  • Reduced a memory allocation by using collection expressions
  • In JavaScriptEngineSwitcher.ChakraCore:
    • ChakraCore was updated to version of February 19, 2026
    • The value of a read-only field in an embedded object or type can no longer be changed
  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.6.0
  • In JavaScriptEngineSwitcher.Msie added support for the MSIE JavaScript Engine version 3.3.1
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.301

NuGet Packages

Core
JS engines

3.30.4

Version: 3.30.4
Published: 1/11/2026
Change Set: a113e98

  • In JavaScriptEngineSwitcher.ChakraCore optimized a memory usage in the ReflectionHelpers.GetBestFitMethod method
  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.5.0

NuGet Packages

JS engines

3.30.3

Version: 3.30.3
Published: 12/22/2025
Change Set: da961df

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.4.2
  • In JavaScriptEngineSwitcher.NiL added support for the NiL.JS version 2.6.1712
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.299

NuGet Packages

JS engines

3.30.2

Version: 3.30.2
Published: 7/15/2025
Change Set: a09cbb9

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.4.0
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.286

NuGet Packages

JS engines

3.30.1

Version: 3.30.1
Published: 7/1/2025
Change Set: c516386

In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.3.0.

NuGet Packages

JS engines

3.30.0

Version: 3.30.0
Published: 6/16/2025
Change Set: a35af4d

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.2.2
  • In JavaScriptEngineSwitcher.NiL:
    • NiL.JS was updated to version 2.6.1700
    • No longer supports a .NET 5 and 7
    • Added support for .NET 9

NuGet Packages

JS engines

3.29.1

Version: 3.29.1
Published: 3/14/2025
Change Set: c27e477

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.2.1
  • In JavaScriptEngineSwitcher.V8 performed a migration to a modern API for pre-compilation of scripts

NuGet Packages

JS engines

3.29.0

Version: 3.29.0
Published: 3/8/2025
Change Set: aa5d035

  • In JavaScriptEngineSwitcher.Jurassic added support for the Jurassic version of February 4, 2025
  • In JavaScriptEngineSwitcher.V8:
    • Microsoft ClearScript.V8 was updated to version 7.5 (support of the V8 version 13.3.415.23)
    • No longer supports a .NET Framework 4.5
    • Added support for .NET Framework 4.6.2
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.282

NuGet Packages

JS engines

3.28.0

Version: 3.28.0
Published: 1/29/2025
Change Set: df84de9

In JavaScriptEngineSwitcher.Jint:

  • Jint was updated to version 4.2.0
  • No longer supports a .NET 6

NuGet Packages

JS engines

3.27.3

Version: 3.27.3
Published: 12/18/2024
Change Set: 195b8fb

  • In JavaScriptEngineSwitcher.ChakraCore added support for the ChakraCore version of August 1, 2024
  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.1.0
  • In JavaScriptEngineSwitcher.Jurassic added support for the Jurassic version of November 22, 2024
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.246

NuGet Packages

JS engines

3.27.2

Version: 3.27.2
Published: 9/1/2024
Change Set: fe2ecf4

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.0.2
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.225

NuGet Packages

JS engines

3.27.1

Version: 3.27.1
Published: 8/20/2024
Change Set: fb5d39e

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.0.1
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.218

NuGet Packages

JS engines

3.27.0

Version: 3.27.0
Published: 7/24/2024
Change Set: 9aa1e58

In JavaScriptEngineSwitcher.Jint added support for the Jint version 4.0.0.

NuGet Packages

JS engines

3.26.1

Version: 3.26.1
Published: 6/18/2024
Change Set: 2769972

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 3.1.3
  • In JavaScriptEngineSwitcher.NiL:
    • NiL.JS was updated to version 2.5.1684
    • Added support for .NET 8

NuGet Packages

JS engines

3.26.0

Version: 3.26.0
Published: 4/22/2024
Change Set: bcea6f9

In JavaScriptEngineSwitcher.ChakraCore:

  • ChakraCore was updated to version of April 21, 2024
  • In JavaScriptEngineSwitcher.ChakraCore.Native.win-* packages an additional deployment mechanism has been added to MSBuild scripts for the case when the target platform is focused on a specific processor architecture

NuGet Packages

JS engines

3.25.0

Version: 3.25.0
Published: 4/10/2024
Change Set: 99e09ee

  • In JavaScriptEngineSwitcher.Jint added support for the Jint version 3.1.0
  • In JavaScriptEngineSwitcher.Yantra added support for the YantraJS version 1.2.209

NuGet Packages

JS engines

3.24.2

Version: 3.24.2
Published: 3/25/2024
Change Set: 92c7bea

In JavaScriptEngineSwitcher.V8:

  • Microsoft ClearScript.V8 was updated to version 7.4.5 (support of the V8 version 12.3.219.12)
  • In configuration settings of the V8 JS engine was added two new properties: AddPerformanceObject (default false) and SetTimerResolution (default false)

NuGet Packages

JS engines

Commits viewable in compare view.

Updated Microsoft.Bcl.AsyncInterfaces from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Bcl.AsyncInterfaces's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.CodeAnalysis.Common from 5.0.0 to 5.3.0.

Release notes

Sourced from Microsoft.CodeAnalysis.Common's releases.

5.0.4

Release

5.0.2

Release Notes
Install Instructions

Repos

5.0.1

Release Notes
Install Instructions

Repo

Commits viewable in compare view.

Updated Microsoft.CodeAnalysis.CSharp from 5.0.0 to 5.3.0.

Release notes

Sourced from Microsoft.CodeAnalysis.CSharp's releases.

5.0.4

Release

5.0.2

Release Notes
Install Instructions

Repos

5.0.1

Release Notes
Install Instructions

Repo

Commits viewable in compare view.

Updated Microsoft.Extensions.Caching.Abstractions from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.Caching.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Configuration.Abstractions from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.Configuration.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.FileProviders.Abstractions from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.FileProviders.Abstractions's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.FileProviders.Physical from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.FileProviders.Physical's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.FileSystemGlobbing from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.FileSystemGlobbing's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated Microsoft.Extensions.Primitives from 10.0.2 to 10.0.5.

Release notes

Sourced from Microsoft.Extensions.Primitives's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated MimeKit from 4.14.0 to 4.15.1.

Release notes

Sourced from MimeKit's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated NLog from 6.0.7 to 6.1.2.

Release notes

Sourced from NLog's releases.

6.1.2

Improvements

  • #​6116 PropertyTypeConverter - Prioritize IFormattable ToString when Format specified. (@​snakefoot)
  • #​6129 GZipFile - Support Header / Footer / WriteBom. (@​snakefoot)
  • #​6126 FileTarget - Alert when FileName needs to be repaired. (@​snakefoot)
  • #​6113 FileTarget - Upfront validation of ArchiveSuffixFormat property. (@​snakefoot)
  • #​6110 FileTarget - Improve repair of legacy ArchiveFileName. (@​snakefoot)
  • #​6107 LoggingRule - Added WriteTo method to match NLog.config. (@​snakefoot)
  • #​6106 LoggingRule - Added MinLevel property to match NLog.config. (@​snakefoot)
  • #​6118 LoggingRule - Update FinalMinLevel to match NLog.config. (@​snakefoot)
  • #​6123 Layout.IsNullOrEmpty similar to string.IsNullOrEmpty. (@​snakefoot)
  • #​6119 TargetPropertyWithContext - Added alias Value for Layout. (@​snakefoot)
  • #​6132 TargetPropertyWithContext - ToString returns Name and Value. (@​snakefoot)
  • #​6105 MessageTemplateParameters - Reduce code complexity. (@​snakefoot)
  • #​6131 + #​6133 Refactor NLog source code to fix nullable warnings. (@​snakefoot)

6.1.1

Improvements

  • #​6101 LogFactory - Flush / FlushAsync asynchronous completion outside Target lock. (@​snakefoot)
  • #​6100 NLog.Targets.AtomicFile supporting NetStandard2 with Win32 API. (@​michailf)
  • #​6094 XmlLayout - Faster XML encoding with INoAllocationStringValueRenderer. (@​snakefoot)
  • #​6091 LiteralWithRawValueLayoutRenderer - Only support RawValue when possible. (@​snakefoot)
  • #​6088 CachedLayoutRendererWrapper - Allow literal optimization when caching not needed. (@​snakefoot)

6.1

Improvements

  • #​5999 JsonLayout - Added support for DottedRecursion. (@​thatrajeevkr)
  • #​6084 JsonLayout - Protect against cyclic object graphs when DottedRecursion. (@​snakefoot)
  • #​6075 DebuggerTarget - Add support for MaxMessageSize and OnOverflow-action. (@​snakefoot)
  • #​6070 InternalLogger - Auto enable LogLevel.Info when activated. (@​snakefoot)
  • #​6045 LoggingConfigurationParser - Report unrecognized options in targets and rules section. (@​snakefoot)
  • #​6059 LogEventBuilder - Properties with IReadOnlyCollection for initialCapacity. (@​snakefoot)
  • #​6065 FileTarget - Adjust ArchiveSuffixFormat to better handle legacy ArchiveFileName. (@​snakefoot)
  • #​6079 FileTarget - Replace Environment.TickCount with LogEventInfo.TimeStamp. (@​snakefoot)
  • #​6066 FileTarget - Simplify FileName natural ordering logic. (@​snakefoot)
  • #​6069 FileTarget - Reduce code complexity for NaturalStringComparer. (@​snakefoot)
  • #​6064 FileTarget - Reduce code complexity for ArchiveNumbering property. (@​snakefoot)
  • #​6082 JsonLayout - Faster Json encoding with INoAllocationStringValueRenderer. (@​snakefoot)
  • #​6083 CsvLayout - Faster CSV encoding with INoAllocationStringValueRenderer. (@​snakefoot)
  • #​6081 DefaultJsonSerializer - Reduce overhead of PerformJsonEscapeWhenNeeded. (@​snakefoot)
  • #​6025 LogEventInfo - Changed LayoutCache from dictionary to linked list. (@​snakefoot)
  • #​6049 PropertiesDictionary - Increase initial capacity when insert. (@​snakefoot)
  • #​6061 PropertiesDictionary - Simplify enumerator when mixing property types. (@​snakefoot)
  • #​6074 WhenEmpty - Optimize when IsFixedText. (@​snakefoot)
  • #​6062 BufferingTargetWrapper - Improve InternalLogger output when WrappedTarget is NULL. (@​snakefoot)
  • #​6067 Fix nullable warnings from NET10 annotations. (@​snakefoot)
  • #​6068 Support nullable where TKey : notnull for dictionary. (@​snakefoot)
  • #​6071 AssemblyExtensionTypes - Reduce code complexity. (@​snakefoot)
  • #​6072 LoggingConfigurationFileLoader - Handle unknown type loading for App.config. (@​snakefoot)
  • #​6076 Marked ConversionHelpers.TryParseEnum as obsolete. (@​snakefoot)
  • #​5949 CallSiteLayoutRenderer - Obsoleted CleanNamesOfAnonymousDelegates + CleanNamesOfAsyncContinuation. (@​snakefoot)

Commits viewable in compare view.

Updated NLog.Schema from 6.0.7 to 6.1.2.

Release notes

Sourced from NLog.Schema's releases.

6.1.2

Improvements

  • #​6116 PropertyTypeConverter - Prioritize IFormattable ToString when Format specified. (@​snakefoot)
  • #​6129 GZipFile - Support Header / Footer / WriteBom. (@​snakefoot)
  • #​6126 FileTarget - Alert when FileName needs to be repaired. (@​snakefoot)
  • #​6113 FileTarget - Upfront validation of ArchiveSuffixFormat property. (@​snakefoot)
  • #​6110 FileTarget - Improve repair of legacy ArchiveFileName. (@​snakefoot)
  • #​6107 LoggingRule - Added WriteTo method to match NLog.config. (@​snakefoot)
  • #​6106 LoggingRule - Added MinLevel property to match NLog.config. (@​snakefoot)
  • #​6118 LoggingRule - Update FinalMinLevel to match NLog.config. (@​snakefoot)
  • #​6123 Layout.IsNullOrEmpty similar to string.IsNullOrEmpty. (@​snakefoot)
  • #​6119 TargetPropertyWithContext - Added alias Value for Layout. (@​snakefoot)
  • #​6132 TargetPropertyWithContext - ToString returns Name and Value. (@​snakefoot)
  • #​6105 MessageTemplateParameters - Reduce code complexity. (@​snakefoot)
  • #​6131 + #​6133 Refactor NLog source code to fix nullable warnings. (@​snakefoot)

6.1.1

Improvements

  • #​6101 LogFactory - Flush / FlushAsync asynchronous completion outside Target lock. (@​snakefoot)
  • #​6100 NLog.Targets.AtomicFile supporting NetStandard2 with Win32 API. (@​michailf)
  • #​6094 XmlLayout - Faster XML encoding with INoAllocationStringValueRenderer. (@​snakefoot)
  • #​6091 LiteralWithRawValueLayoutRenderer - Only support RawValue when possible. (@​snakefoot)
  • #​6088 CachedLayoutRendererWrapper - Allow literal optimization when caching not needed. (@​snakefoot)

6.1

Improvements

  • #​5999 JsonLayout - Added support for DottedRecursion. (@​thatrajeevkr)
  • #​6084 JsonLayout - Protect against cyclic object graphs when DottedRecursion. (@​snakefoot)
  • #​6075 DebuggerTarget - Add support for MaxMessageSize and OnOverflow-action. (@​snakefoot)
  • #​6070 InternalLogger - Auto enable LogLevel.Info when activated. (@​snakefoot)
  • #​6045 LoggingConfigurationParser - Report unrecognized options in targets and rules section. (@​snakefoot)
  • #​6059 LogEventBuilder - Properties with IReadOnlyCollection for initialCapacity. (@​snakefoot)
  • #​6065 FileTarget - Adjust ArchiveSuffixFormat to better handle legacy ArchiveFileName. (@​snakefoot)
  • #​6079 FileTarget - Replace Environment.TickCount with LogEventInfo.TimeStamp. (@​snakefoot)
  • #​6066 FileTarget - Simplify FileName natural ordering logic. (@​snakefoot)
  • #​6069 FileTarget - Reduce code complexity for NaturalStringComparer. (@​snakefoot)
  • #​6064 FileTarget - Reduce code complexity for ArchiveNumbering property. (@​snakefoot)
  • #​6082 JsonLayout - Faster Json encoding with INoAllocationStringValueRenderer. (@​snakefoot)
  • #​6083 CsvLayout - Faster CSV encoding with INoAllocationStringValueRenderer. (@​snakefoot)
  • #​6081 DefaultJsonSerializer - Reduce overhead of PerformJsonEscapeWhenNeeded. (@​snakefoot)
  • #​6025 LogEventInfo - Changed LayoutCache from dictionary to linked list. (@​snakefoot)
  • #​6049 PropertiesDictionary - Increase initial capacity when insert. (@​snakefoot)
  • #​6061 PropertiesDictionary - Simplify enumerator when mixing property types. (@​snakefoot)
  • #​6074 WhenEmpty - Optimize when IsFixedText. (@​snakefoot)
  • #​6062 BufferingTargetWrapper - Improve InternalLogger output when WrappedTarget is NULL. (@​snakefoot)
  • #​6067 Fix nullable warnings from NET10 annotations. (@​snakefoot)
  • #​6068 Support nullable where TKey : notnull for dictionary. (@​snakefoot)
  • #​6071 AssemblyExtensionTypes - Reduce code complexity. (@​snakefoot)
  • #​6072 LoggingConfigurationFileLoader - Handle unknown type loading for App.config. (@​snakefoot)
  • #​6076 Marked ConversionHelpers.TryParseEnum as obsolete. (@​snakefoot)
  • #​5949 CallSiteLayoutRenderer - Obsoleted CleanNamesOfAnonymousDelegates + CleanNamesOfAsyncContinuation. (@​snakefoot)

Commits viewable in compare view.

Updated System.Collections.Immutable from 10.0.2 to 10.0.5.

Release notes

Sourced from System.Collections.Immutable's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.Diagnostics.DiagnosticSource from 10.0.2 to 10.0.5.

Release notes

Sourced from System.Diagnostics.DiagnosticSource's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.IO.Pipelines from 10.0.2 to 10.0.5.

Release notes

Sourced from System.IO.Pipelines's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.Reflection.Metadata from 10.0.2 to 10.0.5.

Release notes

Sourced from System.Reflection.Metadata's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.Text.Encoding.CodePages from 10.0.2 to 10.0.5.

Release notes

Sourced from System.Text.Encoding.CodePages's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.Text.Encodings.Web from 10.0.2 to 10.0.5.

Release notes

Sourced from System.Text.Encodings.Web's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated System.ValueTuple from 4.6.1 to 4.6.2.

Release notes

Sourced from System.ValueTuple's releases.

No release notes found for this version range.

Commits viewable in compare view.

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 commands and options

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

Bumps AdvancedStringBuilder from 0.1.1 to 0.2.0
Bumps Autofac from 9.0.0 to 9.1.0
Bumps BundleTransformer.JsMin from 1.14.0 to 1.16.1
Bumps DouglasCrockford.JsMin from 2.1.0 to 2.2.0
Bumps JavaScriptEngineSwitcher.Core from 3.24.1 to 3.31.0
Bumps Microsoft.Bcl.AsyncInterfaces from 10.0.2 to 10.0.5
Bumps Microsoft.CodeAnalysis.Common from 5.0.0 to 5.3.0
Bumps Microsoft.CodeAnalysis.CSharp from 5.0.0 to 5.3.0
Bumps Microsoft.Extensions.Caching.Abstractions from 10.0.2 to 10.0.5
Bumps Microsoft.Extensions.Configuration.Abstractions from 10.0.2 to 10.0.5
Bumps Microsoft.Extensions.FileProviders.Abstractions from 10.0.2 to 10.0.5
Bumps Microsoft.Extensions.FileProviders.Physical from 10.0.2 to 10.0.5
Bumps Microsoft.Extensions.FileSystemGlobbing from 10.0.2 to 10.0.5
Bumps Microsoft.Extensions.Primitives from 10.0.2 to 10.0.5
Bumps MimeKit from 4.14.0 to 4.15.1
Bumps NLog from 6.0.7 to 6.1.2
Bumps NLog.Schema from 6.0.7 to 6.1.2
Bumps System.Collections.Immutable from 10.0.2 to 10.0.5
Bumps System.Diagnostics.DiagnosticSource from 10.0.2 to 10.0.5
Bumps System.IO.Pipelines from 10.0.2 to 10.0.5
Bumps System.Reflection.Metadata from 10.0.2 to 10.0.5
Bumps System.Text.Encoding.CodePages from 10.0.2 to 10.0.5
Bumps System.Text.Encodings.Web from 10.0.2 to 10.0.5
Bumps System.ValueTuple from 4.6.1 to 4.6.2

---
updated-dependencies:
- dependency-name: AdvancedStringBuilder
  dependency-version: 0.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: Autofac
  dependency-version: 9.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: BundleTransformer.JsMin
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: DouglasCrockford.JsMin
  dependency-version: 2.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: JavaScriptEngineSwitcher.Core
  dependency-version: 3.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: Microsoft.Bcl.AsyncInterfaces
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: Microsoft.CodeAnalysis.Common
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: Microsoft.CodeAnalysis.CSharp
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: Microsoft.Extensions.Caching.Abstractions
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: Microsoft.Extensions.Configuration.Abstractions
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: Microsoft.Extensions.FileProviders.Abstractions
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: Microsoft.Extensions.FileProviders.Physical
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: Microsoft.Extensions.FileSystemGlobbing
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: Microsoft.Extensions.Primitives
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: MimeKit
  dependency-version: 4.15.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: NLog
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: NLog.Schema
  dependency-version: 6.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: production-dependencies
- dependency-name: System.Collections.Immutable
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: System.Diagnostics.DiagnosticSource
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: System.IO.Pipelines
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: System.Reflection.Metadata
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: System.Text.Encoding.CodePages
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: System.Text.Encodings.Web
  dependency-version: 10.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
- dependency-name: System.ValueTuple
  dependency-version: 4.6.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: production-dependencies
...

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

dependabot bot commented on behalf of github Apr 6, 2026

Labels

The following labels could not be found: nuget. Please create it before Dependabot can add it to a pull request.

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

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Apr 6, 2026
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

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants