Skip to content

Update nuget packages#181

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/nuget
Open

Update nuget packages#181
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/nuget

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Jun 8, 2023

This PR contains the following updates:

Package Change Age Confidence
AWSSDK.S3 3.7.501.213.7.511.7 age confidence
AWSSDK.SecurityToken 3.7.501.273.7.504.49 age confidence
ArmoniK.Api.Client 3.27.03.29.0 age confidence
ArmoniK.Api.Common 3.27.03.29.0 age confidence
ArmoniK.Api.Worker 3.27.03.29.0 age confidence
ArmoniK.Utils 0.6.20.7.3 age confidence
Grpc.Tools 2.72.02.80.0 age confidence
Microsoft.NET.Test.Sdk 17.13.017.14.1 age confidence
Microsoft.VisualStudio.Azure.Containers.Tools.Targets 1.22.11.23.0 age confidence
NUnit.Analyzers 4.10.04.13.0 age confidence
Serilog (source) 4.3.04.3.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

aws/aws-sdk-net (AWSSDK.S3)

v3.7.511

v3.7.510

v3.7.509

v3.7.508

v3.7.507

v3.7.506

Compare Source

v3.7.505

v3.7.504

v3.7.503

Compare Source

v3.7.502

microsoft/vstest (Microsoft.NET.Test.Sdk)

v17.14.1

What's Changed

Full Changelog: microsoft/vstest@v17.14.0...v17.14.1

v17.14.0

What's Changed

.NET versions updated

This version of VS Test upgraded .NET to net8 and net9. All projects targeting net6.0 (or other end-of-life .NET target frameworks) should pin their version of Microsoft.NET.Test.SDK to 17.13.0, or update the projects to net8 or newer. We remain backwards compatible with previous versions of Microsoft.NET.Test.SDK. This change does NOT prevent you from:

  • Updating to the latest VS, and running tests from net6.0 test projects.
  • Updating to the latest .NET SDK, and running tests from net6.0 test projects.

It also has no impact on .NET Framework projects, where we continue targeting .NET Framework 4.6.2.

Changes
Internal version updates and fixes

New Contributors

Full Changelog: microsoft/vstest@v17.13.0...v17.14.0

nunit/nunit.analyzers (NUnit.Analyzers)

v4.13.0: NUnit Analyzers 4.13 - May 2, 2026

Compare Source

NUnit Analyzers 4.13 - May 2, 2026

This release of the NUnit Analyzers updates analyzer handling for the NUnit 4.6 API change that replaces
ActualValueDelegate<> with Func<> - see nunit/nunit#4824 for more information.
Analyzers now also consider the return type of Func<> in assertions. The release also includes one bug fix and
some dependency updates.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #​982 Recognized Func<T> return values

Bugs

  • #​968 Whitespace issue in Does.Contain fixer when assert spans multiple lines

Tooling, Process, and Documentation

  • #​985 chore: Bump year to 2026 in copyrights
  • #​978 Bump cake.tool from 6.0.0 to 6.1.0
  • #​976 chore: Correct documentation
  • #​975 chore: bump version
  • #​956 Bump cake.tool from 4.0.0 to 6.0.0

v4.12.0: NUnit Analyzers 4.12 - March 3, 2026

Compare Source

NUnit Analyzers 4.12 - March 3, 2026

This release of the NUnit Analyzers improves NUnit1029 to account for TestCaseSource
support for params and optional arguments. It also introduces a new analyzer for incorrect
usage of Is.Not.Null.Or.Empty, fixes regressions in NUnit2005 and NUnit2055, and updates
NUnit package dependencies.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #​957 Relax NUnit1029 for TestCaseSource where method accepts a single "params" array
  • #​189 Warning when Is.Not.Null.Or.Empty used

Bugs

  • #​953 Code fix for NUnit2055 can generate invalid code for classic asserts
  • #​952 Code fix for NUnit2005 tries to use Is.Empty constraint on incompatible types.

Tooling, Process, and Documentation

  • #​973 chore: Bump NUnit version
  • #​970 chore: Bump NUnit to version 4.5.0
  • #​967 Fix note about works with Unity Test Framework
  • #​937 chore: bump version

v4.11.2: NUnit Analyzers 4.11.2 - November 2, 2025

Compare Source

NUnit Analyzers 4.11.2 - November 2, 2025

This release of the NUnit Analyzers fixes a problem in the NUnit2057 analyzer for unnecessary use of lambda
expressions. The release also extends NUnit2021 so that it can determining if Is.NaN or Is.Not.NaN constraints
are used on incompatible types.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #​929 Alert when using Is.NaN or Is.Not.NaN on an incompatible type

Bugs

  • #​945 [NUnit2057] Reported for Throws assert

v4.11.1

Compare Source

This release of the NUnit Analyzers fixes a regression related to the analysis of nullable enum parameters in
NUnit1001 and NUnit1031. The release also contains a new analyzer and codefix for unnecessary usage of lambda
expressions in asserts.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #​927 Add new rule for unnecessary use of lambda expressions

Bugs

  • #​939 NUnit1001 - false positive for arguments with nullable enum parameters
  • #​938 [NUnit1031] False positive for nullable structs

v4.11.0: NUnit Analyzers 4.11 - October 28, 2025

Compare Source

NUnit Analyzers 4.11 - October 28, 2025

This release of the NUnit Analyzers includes improvements and fixes related to IDisposable handling and initialization
in SetUp and OneTimeSetUp methods. It also introduces the ability to configure additional methods that should be
treated as SetUp and TearDown methods by the analyzers. This can be done in the .editorconfig, and there are four
configurations for this:

  • dotnet_diagnostic.NUnit.additional_setup_methods
  • dotnet_diagnostic.NUnit.additional_teardown_methods
  • dotnet_diagnostic.NUnit.additional_one_time_setup_methods
  • dotnet_diagnostic.NUnit.additional_one_time_teardown_methods

Each configuration accepts a list of method names, separated by commas, semicolons, or spaces. For example:

dotnet_diagnostic.NUnit.additional_setup_methods = CustomSetup, MyInit

As in recent releases, a major part of this work was contributed by @​manfred-brands.

The release contains contributions from the following users (in alphabetical order):

Issues Resolved

Features and Enhancements

  • #​921 NUnit1032 - disposals in overridden methods not detected
  • #​919 NUnit1032/NUnit3002 - local functions not analyzed
  • #​918 NUnit2045 - false positive for inline usings
  • #​911 NUnit3002 doesn't recognize the using statement.
  • #​910 using declarations not recognized by NUnit2045

Bugs

  • #​922 NUnit1001 - false positive for arguments with generic parameters
  • #​914 Wrong position of NUnit1001 diagnostic for TestCase with four parameters or more

Tooling, Process, and Documentation

  • #​926 chore: Bump NUnit3TestAdapter
  • #​908 chore: bump version
  • #​885 Bump to NUnit version 4.4 when this is released
serilog/serilog (Serilog)

v4.3.1

What's Changed

New Contributors

Full Changelog: serilog/serilog@v4.3.0...v4.3.1


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/nuget branch 4 times, most recently from b1abff1 to ca0cbae Compare June 14, 2023 01:39
@renovate renovate Bot force-pushed the renovate/nuget branch 7 times, most recently from 99542e2 to 29e40b7 Compare June 22, 2023 04:39
@renovate renovate Bot force-pushed the renovate/nuget branch 3 times, most recently from 24af30d to 71a7368 Compare June 27, 2023 16:41
@renovate renovate Bot changed the title chore(deps): update nuget packages chore(deps): update nuget packages - autoclosed Jun 28, 2023
@renovate renovate Bot closed this Jun 28, 2023
@renovate renovate Bot deleted the renovate/nuget branch June 28, 2023 13:42
@renovate renovate Bot changed the title chore(deps): update nuget packages - autoclosed chore(deps): update nuget packages Jun 28, 2023
@renovate renovate Bot reopened this Jun 28, 2023
@renovate renovate Bot restored the renovate/nuget branch June 28, 2023 22:27
@renovate renovate Bot changed the title chore(deps): update nuget packages chore(deps): update dependency awssdk.s3 to v3.7.107 Jun 28, 2023
@renovate renovate Bot force-pushed the renovate/nuget branch 2 times, most recently from 2a33aa4 to e47773f Compare July 2, 2023 18:17
@renovate renovate Bot changed the title chore(deps): update dependency awssdk.s3 to v3.7.107 chore(deps): update nuget packages Jul 2, 2023
@renovate renovate Bot force-pushed the renovate/nuget branch 6 times, most recently from adaf806 to 87caea5 Compare July 7, 2023 00:22
@renovate renovate Bot force-pushed the renovate/nuget branch 4 times, most recently from b9bc3e5 to 903bad6 Compare August 1, 2023 21:28
@renovate renovate Bot force-pushed the renovate/nuget branch 8 times, most recently from 96055db to d5288dc Compare August 9, 2023 21:45
@renovate renovate Bot force-pushed the renovate/nuget branch 6 times, most recently from 9e7540d to 05d305f Compare August 16, 2023 16:27
@renovate renovate Bot force-pushed the renovate/nuget branch 10 times, most recently from eb1bb4f to f53be73 Compare August 23, 2023 02:09
lemaitre-aneo
lemaitre-aneo previously approved these changes Oct 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant