Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2025

Updated coverlet.collector from 1.2.0 to 1.3.0.

Release notes

Sourced from coverlet.collector's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated CsvHelper from 15.0.5 to 15.0.10.

Release notes

Sourced from CsvHelper's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated libphonenumber-csharp from 8.12.7 to 8.13.55.

Release notes

Sourced from libphonenumber-csharp's releases.

8.13.27

8.13.21

8.13.19

8.13.17

8.13.16

8.13.15

8.13.14

8.13.13

8.13.12

8.13.8

  • Geocoding data is zipped to reduce nupkg size (thanks to @​dwfrancis)
  • PhoneNumberConverter attribute added to extensions package to assist with phone number serialization and deserialization.

8.13.7

8.13.6

8.13.5

8.13.3

8.13.2

  • Thanks to @​senecaconsultancy for porting PhoneNumberToTimeZonesMapper which had been lacking!
  • Added net7.0 targeting
  • Added an extensions package (alpha for now) to provide extra functionality beyond what is in the Java version, adding things that can make things more C#ish e.g. TryParse. Feel free to suggest things for this since there's no concept of feature parity with Google.

8.13.1

8.13.0

8.12.57

8.12.56

8.12.55

8.12.54

8.12.53

8.12.52

8.12.51.1

8.12.51

8.12.50

8.12.49

8.12.48

8.12.47

8.12.46

8.12.45

8.12.44

8.12.43

8.12.42

8.12.41

8.12.40

8.12.39

8.12.38

8.12.37

8.12.36

8.12.35

8.12.34

8.12.33

8.12.32

8.12.31

8.12.30

8.12.29

Commits viewable in compare view.

Updated Microsoft.AspNetCore.Mvc.Testing from 3.1.6 to 3.1.32.

Release notes

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

3.1.32

Release

3.1.31

Release

3.1.30

Release

Commits viewable in compare view.

Updated Microsoft.NET.Test.Sdk from 16.5.0 to 16.11.0.

Release notes

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

16.11.0

See the release notes here.

16.10.0

See the release notes here.

16.10.0-release-20210429-01

See the release notes here.

16.10.0-release-20210422-02

See the release notes here.

16.10.0-release-20210330-02

See the release notes here.

16.10.0-release-20210329-03

See the release notes here.

16.10.0-preview-20210219-03

See the release notes here.

16.9.4

See the release notes here.

16.9.1

See the release notes here.

16.9.0-preview-20210127-04

See the release notes here.

16.9.0-preview-20210106-01

See the release notes here.

16.9.0-preview-20201123-03

See the release notes here.


16.9.0-preview-20201020-06

See the release notes here.


16.9.0-preview-20201020-06

Issue Fixed

  • Enable Fakes Datacollector settings to be added in design mode #​2586
  • Fix blame parameter, warning, and add all testhosts to be ngend #​2579
  • Add netcoreapp1.0 support to Microsoft.TestPlatform.TestHost NuGet #​2569
  • Use bitness from process or OS #​2571
  • Restore netcoreapp1.0 support for testhost #​2554
  • Get symbols of DiaSymReader from externals #​2560
  • Do not force .NET4.5 in case legacy test settings are provided #​2545
  • Simplify package references #​2559
  • Enable default compile items for Microsoft.TestPlatform.PlatformAbstractions #​2556
  • Avoid logging >Task returned false but did not log an error.< #​2557
  • Fixed code coverage compatibility issue #​2527
  • Add environment variables to enable MacOS dump
  • Adding test run attachments processing #​2463

See full log here

Drops

16.8.3

See the release notes here.

16.8.0

See the release notes here.

16.8.0-preview-20200921-01

See the release notes here.

16.8.0-preview-20200812-03

See the release notes here.

16.8.0-preview-20200806-02

See the release notes here.

16.7.1

See the release notes here

16.7.0

See the release notes here.

16.7.0-preview-20200519-01

See the release notes here.

16.7.0-preview-20200428-01

See the release notes here.

16.6.1

See the release notes here.

16.6.0

✔ 16.6.1 was released, use that instead.

🔥 VSTest release 16.6.0 has a major bug in Fakes in vstest.console. The 16.6.0 packages are unlisted from nuget.org, with the exception of Microsoft.NET.Test.SDK and it's dependencies which are not impacted by this problem.
Please see: microsoft/vstest#2408

See the release notes here.

16.6.0-preview-20200318-01

See the release notes here.

16.6.0-preview-20200310-03

See the release notes here.

16.6.0-preview-20200309-01

See the release notes here.

16.6.0-preview-20200226-03

See the release notes here.

Commits viewable in compare view.

Updated Serilog from 2.9.0 to 2.12.0.

Release notes

Sourced from Serilog's releases.

2.12.0

Highlights of 2.12.0

Improved and expanded <Nullable>enable</Nullable> support

A huge number of commits have gone into completing and refining non-null reference type annotations, which now cover the entire public Serilog API. The Serilog project itself now builds with non-null reference type checking globally enabled 🎉

IAsyncDisposable support

Sinks that need to flush changes using asynchronous APIs can now implement IAsyncDisposable and prevent the possibility of deadlocking while waiting for tasks to complete.

To drive this, Logger can now be disposed via using async:

await using var log = new LoggerConfiguration().CreateLogger();

and the Log class provides Log.CloseAndFlushAsync():

await Log.CloseAndFlushAsync();

DateOnly and TimeOnly support

The DateOnly and TimeOnly types introduced in .NET 6 are now correctly handled as scalar values when capturing.

Merged PRs

  • #​1713, #​1716, #​1715, #​1722, #​1721, #​1720, #​1729 - improved non-null reference type annotations (@​SimonCropp)
  • #​1702 - DateOnly and TimeOnly support (@​SimonCropp)
  • #​1764, #​1703, #​1708, #​1709, #​1712, #​1724, #​1730, #​1747 - build and dependency updates (@​SimonCropp)
  • #​1723, #​1728, #​1731, #​1732, #​1734, #​1735, #​1733, #​1736, #​1739, #​1746, #​1745, #​1741, #​1742 - code clean-up and modernization (@​SimonCropp)
  • #​1750 - IAsyncDisposable support for Logger and sinks (@​nblumhardt)
  • #​1699 - fix some XDOC documentation (@​sungam3r)
  • #​1719 - remove redundant ! operator from null in conditions (@​sungam3r)
  • #​1725 - introduce file-scoped namespaces (@​sungam3r)
  • #​1700, #​1704, #​1707 - more nulllable annotation updates (@​nblumhardt)
  • #​1711 - fix support for ValueTuple (@​SimonCropp)

2.11.0

  • #​1503 - make some local functions static to avoid scope capture (@​SimonCropp)
  • #​1561 - add support for collections/string[] to key-value settings (@​stochmal)
  • #​1588, #​1591, #​1593, #​1594, #​1597 - nullable reference type annotations and language version updates (@​SimonCropp)
  • #​1595 - net5.0 target (@​nblumhardt)
  • #​1652 - fix capturing of anonymous types in .NET interactive (@​KZedan)
  • #​1641 - corrected documentation comments for MessageTemplateFormatMethod (@​JinsPeter)
  • #​1635 - fix destructuring of Memory<T>/ReadOnlyMemory<T> and non-reflection-compatible properties e.g. of type Span<T> (@​skomis-mm)
  • #​1625 - update issue template (@​augustoproiete)
  • #​1664 - update ILogger documentation (@​erichiller)

2.10.0

  • #​1370, #​1374 - improve test coverage (@​rafaelsc)
  • #​1371, #​1377, #​1429, #​1445 - documentation updates (@​perjahn, @​morgankenyon, @​rafaelsc, @​JakenVeina)
  • #​1378, #​1392 - build fixes (@​nblumhardt)
  • #​1477 - don't fail to log when ToString() throws an exception (@​rafaelsc)
  • #​1435 - netstandard2.1 support and default implementations for ILogger methods (@​skomis-mm)
  • #​1442 - MinimumLevel.Override() runtime optimizations (@​skomis-mm)
  • #​1463 - fix disposal of wrapped sinks through LoggerSinkConfiguration.Wrap()
  • #​1449 - allow exceptions to bubble up through wrapped aggregate sinks (@​augustoproiete)
  • #​1466 - internal wrapper sink refactoring (@​nblumhardt)
  • #​1427, #​1452, #​1467 - when ToString() on a logged object returns null, serialize as "" (@​rafaelsc, @​nblumhardt)
  • #​1472 - improve handling of minimum level overrides in sub-loggers (@​skomis-mm)

Commits viewable in compare view.

Updated Serilog.Settings.Configuration from 3.1.0 to 3.4.0.

Release notes

Sourced from Serilog.Settings.Configuration's releases.

3.4.0

  • #​291 - fix static member access for parameters of concrete types (@​skomis-mm)
  • #​307 - enable ExtensionAttribute polyfills (@​sajagi)
  • #​310 - accept list of sink/configuration assemblies directly in ReadFrom.Configuration() (@​0xced)
  • #​311 - remove out of support target frameworks from tests and samples (@​0xced)
  • #​312 - fix ReSharper/Rider inspection warnings (@​0xced)

3.3.0

  • #​275 - README fixes (@​skomis-mm)
  • #​281 (#​276, #​225, #​167) - support construction of complex types (@​skomis-mm)

3.2.0

  • #​162 - LoggingFilterSwitch support (@​skomis-mm)
  • #​202 - added support to AuditTo.Logger (@​almostchristian)
  • #​203 - added support for custom types in arrays and custom collections (@​sungam3r)
  • #​218 - fixed an issue with dotnet restore with rid specified if referenced from netstandard project (@​skomis-mm)
  • #​219 - reduced search graph for configuration LLs to avoid native assets (@​skomis-mm)
  • #​220 - show better error messages for missing parameter of interface type (@​skomis-mm)
  • #​221 - added support for conditional/leveled enrichers from Serilog 2.9+(@​skomis-mm)
  • #​222 - updated Microsoft.Extensions.DependencyModel (@​skomis-mm)
  • #​223 - documentation update (@​skomis-mm)
  • #​231 - make '$' sign optional for minimum level / filter switch declarations (@​skomis-mm)
  • #​237 - DependencyContextAssemblyFinder fix: check serilog at the start of the name for any dependent package (@​skomis-mm)
  • #​239 - handle NotSupportedException for .net 5.0 single file applications (@​skomis-mm)
  • #​240 - fix typo (@​ch1seL)
  • #​241 - configuration assembly auto-discovery fixes (@​skomis-mm)

Commits viewable in compare view.

Updated Serilog.Sinks.Async from 1.4.0 to 1.5.0.

Release notes

Sourced from Serilog.Sinks.Async's releases.

1.5.0

  • #​50 - fix package license declaration (@​nblumhardt)
  • #​55 - README updates (@​thiagograndesso)
  • #​70 - bump Serilog dependency to 2.9.0 to better support Unity (@​bdovaz)
  • #​71 - <PackageIcon> (@​Numpsy)

Commits viewable in compare view.

Updated xunit from 2.4.0 to 2.9.3.

Release notes

Sourced from xunit's releases.

No release notes found for this version range.

Commits viewable in compare view.

Updated xunit.runner.visualstudio from 2.4.0 to 2.4.5.

Release notes

Sourced from xunit.runner.visualstudio'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 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

Bumps coverlet.collector from 1.2.0 to 1.3.0
Bumps CsvHelper from 15.0.5 to 15.0.10
Bumps libphonenumber-csharp from 8.12.7 to 8.13.55
Bumps Microsoft.AspNetCore.Mvc.Testing from 3.1.6 to 3.1.32
Bumps Microsoft.NET.Test.Sdk from 16.5.0 to 16.11.0
Bumps Serilog from 2.9.0 to 2.12.0
Bumps Serilog.Settings.Configuration from 3.1.0 to 3.4.0
Bumps Serilog.Sinks.Async from 1.4.0 to 1.5.0
Bumps xunit from 2.4.0 to 2.9.3
Bumps xunit.runner.visualstudio from 2.4.0 to 2.4.5

---
updated-dependencies:
- dependency-name: coverlet.collector
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: CsvHelper
  dependency-version: 15.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches-updates-without-minor
- dependency-name: libphonenumber-csharp
  dependency-version: 8.13.55
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-version: 3.1.32
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches-updates-without-minor
- dependency-name: Microsoft.NET.Test.Sdk
  dependency-version: 16.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: Serilog
  dependency-version: 2.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: Serilog.Settings.Configuration
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: Serilog.Sinks.Async
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: xunit
  dependency-version: 2.9.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patches-updates-without-minor
- dependency-name: xunit.runner.visualstudio
  dependency-version: 2.4.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patches-updates-without-minor
...

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 Sep 1, 2025
@fabiohk fabiohk closed this Sep 1, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 1, 2025

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot dependabot bot deleted the dependabot/nuget/src/JSMCodeChallenge/master/patches-updates-without-minor-527775dc0a branch September 1, 2025 19:37
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.

1 participant