Skip to content

chore(deps): update nuget packages (major)#402

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

chore(deps): update nuget packages (major)#402
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-nuget

Conversation

@renovate

@renovate renovate Bot commented Jun 9, 2023

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
AWSSDK.Core 3.7.500.804.0.9.5 age confidence
AWSSDK.S3 3.7.510.64.0.25.1 age confidence
AWSSDK.SQS 3.7.502.394.0.3.6 age confidence
AWSSDK.SecurityToken 3.7.504.324.0.7.6 age confidence
AspNetCore.HealthChecks.MongoDb 8.1.09.0.0 age confidence
Calzolari.Grpc.AspNetCore.Validation 9.0.010.1.0 age confidence
JetBrains.Annotations (source) 2025.2.42026.2.0 age confidence
Microsoft.AspNetCore.TestHost (source) 8.0.2410.0.9 age confidence
Microsoft.Extensions.Diagnostics.HealthChecks (source) 8.0.2410.0.9 age confidence
StackExchange.Redis (source) 2.11.03.0.0 age confidence
coverlet.collector 8.0.010.0.1 age confidence

Release Notes

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

v4.0.9

v4.0.8

v4.0.7

v4.0.6

Compare Source

v4.0.5

Compare Source

v4.0.4

v4.0.3

Compare Source

v4.0.2

v4.0.1

v4.0.0

JetBrains/JetBrains.Annotations (JetBrains.Annotations)

v2026.2.0

Compare Source

dotnet/dotnet (Microsoft.AspNetCore.TestHost)

v10.0.9

v10.0.8

v10.0.7

v10.0.6

v10.0.5

v10.0.4

v10.0.3

v10.0.2

v10.0.1

v9.0.7: .NET 9.0.7

You can build .NET 9.0 from the repository by cloning the release tag v9.0.7 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.6: .NET 9.0.6

You can build .NET 9.0 from the repository by cloning the release tag v9.0.6 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.5: .NET 9.0.5

You can build .NET 9.0 from the repository by cloning the release tag v9.0.5 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.4: .NET 9.0.4

You can build .NET 9.0 from the repository by cloning the release tag v9.0.4 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.3: .NET 9.0.3

You can build .NET 9.0 from the repository by cloning the release tag v9.0.3 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.2: .NET 9.0.2

You can build .NET 9.0 from the repository by cloning the release tag v9.0.2 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.1: .NET 9.0.1

You can build .NET 9.0 from the repository by cloning the release tag v9.0.1 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

v9.0.0: .NET 9.0.0

You can build .NET 9.0 from the repository by cloning the release tag v9.0.0 and following the build instructions in the main README.md.

Alternatively, you can build from the sources attached to this release directly.
More information on this process can be found in the dotnet/dotnet repository.

Attached are PGP signatures for the GitHub generated tarball and zipball. You can find the public key at https://dot.net/release-key-2023

StackExchange/StackExchange.Redis (StackExchange.Redis)

v3.0.0

3.0.0 represents an overhaul of the internal IO logic, for both performance and stability reasons.

Intentionally, there are no API changes in this release; it is a direct mirror of 2.13.17, but with the new IO core.

addendum, one change discovered:

  • Execute[Async] now detects and respects "admin" commands, i.e. those protected by AllowAdmin; for example, in 2.x, db.Execute("FLUSHALL"); would work even if AllowAdmin was not enabled - this will now throw at the client without issuing the command to the server

What is the aim of the internals rewrite?

SE.Redis v2 made use of a few concepts internally:

  • the "pipelines" IO layer from System.IO.Pipelines, via Pipelines.Sockets.Unoficial
  • a DOM-based parser built on top of a custom arena allocator

v3 fundamentally revises these engineering decisions:

  • IO and buffer control is taken back directly into the library, allowing for greater control of IO boundaries and the threading model
  • the parser is re-written as a reader-based implementation

This allows for significant performance improvement, especially when processing large / complex results - for example, if we use the LRANGE_600 test from redis-benchmark (or resp-benchmark):

### classic SE.Redis 2.13.17.28173 ###
LRANGE_600:     7,579 requests per second
LRANGE_600:     7,554 requests per second
LRANGE_600:     7,284 requests per second
LRANGE_600:     7,158 requests per second
LRANGE_600:     7,174 requests per second

vs

### classic SE.Redis 3.0.0.11234 ###
LRANGE_600:     16,408 requests per second
LRANGE_600:     17,681 requests per second
LRANGE_600:     17,331 requests per second
LRANGE_600:     17,317 requests per second
LRANGE_600:     16,665 requests per second

(for tests with simpler results, like INCR, results of over 1M requests per second are achievable)


3.0 is the first part of a wave of planned IO work; 3.1 will revise the "write" part of the write loop, moving message serialization out of the critical serialized core of the multiplexer. All of this work is based on extensive prototyping and benchmarking, demonstrating that these approaches, when combined, provide significant throughput and stability improvements.

This release has undergone extensive testing. If you experience problems, please let us know!

v2.13.10

Compare Source

This release is marked inactive due to a critical bug when using TCP keep-alives on DNS (i.e. named, not IP) endpoints; this is specific to non-Windows platforms, before .NET 10. See #​3086 and #​3090


What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.13.1...2.13.10

v2.13.1

Compare Source

IMPORTANT: This release changes the default protocol from RESP2 to RESP3 for Azure Managed Redis endpoints (only); this
has scalability and feature advantages, but if you are using modules or ad-hoc commands, please see the RESP3 notes, which includes:

  • the purpose of RESP3
  • scenarios where RESP2 vs RESP3 may be visible
  • how to explicitly choose to remain on RESP2
  • notes on additional libraries such as NRedisStack

What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.12.27...2.13.1

v2.12.14

Compare Source

What's Changed

Impact: "high" if using cluster and high-integrity-mode together (resolves an issue that can mis-report -MOVED responses as integrity failures)

NuGet link

New Contributors

Full Changelog: StackExchange/StackExchange.Redis@2.12.8...2.12.14

v2.12.8

Compare Source

What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.12.4...2.12.8

v2.12.4

Compare Source

What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.12.1...2.12.4

v2.12.1

Compare Source

What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.11.8...2.12.1

v2.11.8

Compare Source

What's Changed
New Contributors

Full Changelog: StackExchange/StackExchange.Redis@2.11.3...2.11.8

v2.11.3

Compare Source

What's Changed

Full Changelog: StackExchange/StackExchange.Redis@2.11.0...2.11.3

coverlet-coverage/coverlet (coverlet.collector)

v10.0.1

Improvements
Fixed
  • Fix inconsistent paths in cobertura reports #​1723
  • Fix when using "is" with "and" in pattern matching, branch coverage is lower than normal #​1313
  • Fix Coverlet flagging a branch for an async functions finally block where none exists #​1337
  • Fix Coverlet Tracker Missing CompilerGeneratedAttribute #​1828
Maintenance
  • Add architecture docs and diagrams for all integrations #​1927
  • Update NuGet packages and .NET SDK versions #​1933

Diff between 10.0.0 and 10.0.1

v10.0.0

Improvements

  • Unique Report Filenames (coverlet.MTP and AzDO) #​1866
  • Add --coverlet-file-prefix option for unique report files #​1869
  • Introduce .NET 10 support #​1823

Fixed

  • Fix [BUG] Wrong branch rate on IAsyncEnumerable for generic type #​1836
  • Fix [BUG] Missing Coverage after moving to MTP #​1843
  • Fix [BUG] No coverage reported when targeting .NET Framework with 8.0.1 #​1842
  • Fix [BUG] Behavior changes between MTP and Legacy (msbuild) #​1878
  • Fix [BUG] Coverlet.MTP - Unable to load coverlet.mtp.appsettings.json #​1880
  • Fix [BUG] Coverlet.Collector produces empty report when Mediator.SourceGenerator is referenced #​1718 by https://github.com/yusyd
  • Fix [BUG] Crash during instrumentation (Methods using LibraryImport/DllImport have no body) #​1762

Maintenance

  • Add comprehensive async method tests and documentation for issue #​1864
  • Replace Tmds.ExecFunction Package in coverlet.core.coverage.tests #​1833
  • Add net9.0 and net10.0 targets #​1822

Diff between 8.0.1 and 10.0.0

v8.0.1

Fixed
  • Fix [BUG] TypeInitializationException when targeting .NET Framework #​1818
  • Fix [BUG] coverlet.MTP build fails with CS0400 due to developmentDependency=true #​1827
Improvements
  • Additional improvements needed for .NET Framework instrumentation type import #​1825

Diff between 8.0.0 and 8.0.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 changed the title chore(deps): update nuget packages to v7 (major) chore(deps): update nuget packages (major) Jun 27, 2023
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 5e954fd to 6f0710d Compare July 2, 2023 06:22
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 4d343f8 to 76a482d Compare July 11, 2023 15:44
@renovate renovate Bot force-pushed the renovate/major-nuget branch 2 times, most recently from d18c345 to b5c27c7 Compare August 1, 2023 11:26
@renovate renovate Bot force-pushed the renovate/major-nuget branch from b5c27c7 to 3cf7ea9 Compare August 8, 2023 14:00
@renovate renovate Bot force-pushed the renovate/major-nuget branch 4 times, most recently from 8016ce9 to bdc6adf Compare August 23, 2023 08:42
@renovate renovate Bot changed the title chore(deps): update nuget packages (major) chore(deps): update dependency microsoft.aspnetcore.testhost to v7 Aug 23, 2023
@renovate renovate Bot force-pushed the renovate/major-nuget branch from bdc6adf to 2f5e66c Compare September 12, 2023 14:06
@renovate renovate Bot force-pushed the renovate/major-nuget branch from 2f5e66c to 3d1725f Compare October 10, 2023 13:24
@renovate renovate Bot force-pushed the renovate/major-nuget branch from 3d1725f to 2a37552 Compare October 24, 2023 13:07
@renovate renovate Bot changed the title chore(deps): update dependency microsoft.aspnetcore.testhost to v7 chore(deps): update nuget packages (major) Nov 9, 2023
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 1f9812f to be36702 Compare November 15, 2023 03:51
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from cec871c to 96d276d Compare December 2, 2023 12:10
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 02d7aaa to c6b71ae Compare December 19, 2023 12:55
@renovate renovate Bot force-pushed the renovate/major-nuget branch 2 times, most recently from 671f113 to dff52f2 Compare January 3, 2024 22:44
@renovate renovate Bot force-pushed the renovate/major-nuget branch from 7540e16 to 8f881b6 Compare June 9, 2024 22:46
@renovate renovate Bot changed the title chore(deps): update nuget packages to v4 (major) chore(deps): update nuget packages (major) Jun 9, 2024
@renovate renovate Bot force-pushed the renovate/major-nuget branch from 8f881b6 to 2d81bc5 Compare June 27, 2024 18:18
@renovate renovate Bot force-pushed the renovate/major-nuget branch from 2d81bc5 to eca7496 Compare July 6, 2024 20:34
@renovate renovate Bot force-pushed the renovate/major-nuget branch from eca7496 to ae1e1e7 Compare July 22, 2024 10:22
@renovate renovate Bot force-pushed the renovate/major-nuget branch from ae1e1e7 to f2ceeff Compare August 9, 2024 13:47
@renovate renovate Bot force-pushed the renovate/major-nuget branch 2 times, most recently from 94a059e to 6162ed8 Compare August 23, 2024 13:27
@renovate renovate Bot force-pushed the renovate/major-nuget branch 2 times, most recently from 2c1b86b to addfea7 Compare August 31, 2024 10:52
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 6404a36 to 4a57a70 Compare September 12, 2024 16:17
@renovate renovate Bot force-pushed the renovate/major-nuget branch 2 times, most recently from 5cefa53 to 37e024c Compare October 18, 2024 11:27
@renovate renovate Bot force-pushed the renovate/major-nuget branch 2 times, most recently from 8a50d70 to 05b4888 Compare November 6, 2024 04:13
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 6d955a9 to 51ddcfb Compare November 13, 2024 22:22
@renovate renovate Bot force-pushed the renovate/major-nuget branch 3 times, most recently from 9b52d00 to 6432897 Compare December 9, 2024 05:27
@renovate renovate Bot force-pushed the renovate/major-nuget branch 5 times, most recently from 151b02e to c0d22c0 Compare December 19, 2024 18:08
@sonarqubecloud

sonarqubecloud Bot commented Mar 9, 2026

Copy link
Copy Markdown

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.

0 participants