Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2025

Updated CounterStrikeSharp.API from 1.0.346 to 1.0.347.

Release notes

Sourced from CounterStrikeSharp.API's releases.

1.0.347

What's Changed in v1.0.347

Please refer to CHANGELOG.md for details.

Commits viewable in compare view.

Updated MaxMind.GeoIP2 from 5.3.0 to 5.4.0.

Release notes

Sourced from MaxMind.GeoIP2's releases.

5.4.0

  • .NET 10.0 has been added as a target.
  • A new Anonymizer object has been added to InsightsResponse. This object
    provides anonymizer-related data including VPN confidence scoring, provider
    name detection, and network last seen date. This data is available from the
    GeoIP2 Insights web service.
  • A new IpRiskSnapshot property has been added to MaxMind.GeoIP2.Model.Traits.
    This provides a risk score associated with the IP address, ranging from 0.01
    to 99. Higher scores indicate greater risk. This is available from the GeoIP2
    Insights web service.
  • The following properties in MaxMind.GeoIP2.Model.Traits have been marked
    Obsolete and users should migrate to using the Anonymizer object on the
    response instead: IsAnonymous, IsAnonymousVpn, IsHostingProvider,
    IsPublicProxy, IsResidentialProxy, and IsTorExitNode. These properties
    will continue to work but are deprecated in favor of the new Anonymizer
    object.
  • A new MaxMind.GeoIP2.Model.Anonymizer class has been added with the
    following properties:
    • Confidence - A score ranging from 1 to 99 representing percent confidence
      that the network is currently part of an actively used VPN service.
    • IsAnonymous - Indicates whether the IP belongs to any sort of anonymous
      network.
    • IsAnonymousVpn - True if the IP is registered to an anonymous VPN provider.
    • IsHostingProvider - True if the IP belongs to a hosting or VPN provider.
    • IsPublicProxy - True if the IP belongs to a public proxy.
    • IsResidentialProxy - True if the IP is on a suspected anonymizing network
      and belongs to a residential ISP.
    • IsTorExitNode - True if the IP belongs to a Tor exit node.
    • NetworkLastSeen - The last day the network was sighted in analysis of
      anonymized networks (available on .NET 6.0+ as DateOnly).
    • ProviderName - The name of the VPN provider associated with the network.

Commits viewable in compare view.

Updated MySqlConnector from 2.4.0 to 2.5.0.

Release notes

Sourced from MySqlConnector's releases.

2.5.0

2.5.0

  • Support .NET 10: #​1595.
  • Possibly breaking MySqlConnection.State will be set to ConnectionState.Broken when there is a network error: #​1599.
    • Previously it would have been set to ConnectionState.Closed but the connection wasn't truly closed.
    • Call MySqlConnection.Close() to fully close the connection before calling Open() again.
    • Better yet, call .Dispose() (ideally with a using declaration) and create a new MySqlConnection instance to recover from failure.
  • Possibly breaking MySqlConnection.ResetConnectionAsync will consistently throw a MySqlException: #​1602.
  • Implement MariaDB PARSEC authentication: #​1540, #​1606.
  • Support the VECTOR data type: #​1549.
  • Implement COM_STMT_SEND_LONG_DATA to stream large parameter values: #​943.
  • Add MySqlConnectorTracingOptions and builder APIs to configure tracing output: #​1524.
  • Read Guid values from stored procedure out parameters: #​1528.
  • Mark MySqlDbType with [DbProviderSpecificTypeProperty(true)]: #​1557.
  • Allow loopback connections (e.g., Google Cloud SQL Proxy) to use clear-text password or public key retrieval: #​1534, #​1542.
  • Improve schema metadata with MariaDB by reading stored procedure metadata from mysql.proc: #​1547.
  • Improve XA transaction rollback handling: #​1585, #​1589.
  • Free large cached payload buffers when returning sessions to the pool to reduce memory usage: #​1587.
  • Suppress error-level logging when a command is canceled: #​1544.
  • Fix MySqlBulkCopy auto-detected column mappings: #​1568.
  • Fix Foreign Keys schema SQL syntax: #​1601.
  • Fix extra roundtrip for caching_sha2_password: #​1562.
  • Fix cancellation with AWS RDS Proxy: #​1581.
  • Optimization: Use System.Threading.Lock for .NET 9.0+.
  • Optimization: Use PemEncoding in .NET 5.0+ and UTF-8 methods in .NET 10.0+.
  • Thanks to @​djeman, @​jnoordsij, @​NETSphereSoft, @​PatrickMNL, @​petedishman, and @​rusher for contributions to this release.

2.5.0-beta.1

2.5.0 Beta 1

  • Support .NET 10: #​1595.
  • Possibly breaking MySqlConnection.State will be set to ConnectionState.Broken when there is a network error: #​1599.
    • Previously it would have been set to ConnectionState.Closed but the connection wasn't truly closed.
    • Call MySqlConnection.Close() to fully close the connection before calling Open() again.
    • Better yet, call .Dispose() (ideally with a using declaration) and create a new MySqlConnection instance to recover from failure.
  • Possibly breaking MySqlConnection.ResetConnectionAsync will consistently throw a MySqlException: #​1602.
  • Implement MariaDB PARSEC authentication: #​1540.
  • Support the VECTOR data type: #​1549.
  • Implement COM_STMT_SEND_LONG_DATA to stream large parameter values: #​943.
  • Add MySqlConnectorTracingOptions and builder APIs to configure tracing output: #​1524.
  • Read Guid values from stored procedure out parameters: #​1528.
  • Mark MySqlDbType with [DbProviderSpecificTypeProperty(true)]: #​1557.
  • Allow loopback connections (e.g., Google Cloud SQL Proxy) to use clear-text password or public key retrieval: #​1534, #​1542.
  • Improve schema metadata with MariaDB by reading stored procedure metadata from mysql.proc: #​1547.
  • Improve XA transaction rollback handling: #​1585, #​1589.
  • Free large cached payload buffers when returning sessions to the pool to reduce memory usage: #​1587.
  • Suppress error-level logging when a command is canceled: #​1544.
  • Fix MySqlBulkCopy auto-detected column mappings: #​1568.
  • Fix Foreign Keys schema SQL syntax: #​1601.
  • Fix extra roundtrip for caching_sha2_password: #​1562.
  • Fix cancellation with AWS RDS Proxy: #​1581.
  • Optimization: Use System.Threading.Lock for .NET 9.0+.
  • Optimization: Use PemEncoding in .NET 5.0+ and UTF-8 methods in .NET 10.0+.
  • Thanks to @​djeman, @​jnoordsij, @​NETSphereSoft, @​PatrickMNL, @​petedishman, and @​rusher for contributions to this release.

Commits viewable in compare view.

Updated Serilog.Extensions.Logging from 9.0.2 to 10.0.0.

Release notes

Sourced from Serilog.Extensions.Logging's releases.

10.0.0

What's Changed

Full Changelog: serilog/serilog-extensions-logging@v9.0.2...v10.0.0

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 CounterStrikeSharp.API from 1.0.346 to 1.0.347
Bumps MaxMind.GeoIP2 from 5.3.0 to 5.4.0
Bumps MySqlConnector from 2.4.0 to 2.5.0
Bumps Serilog.Extensions.Logging from 9.0.2 to 10.0.0

---
updated-dependencies:
- dependency-name: CounterStrikeSharp.API
  dependency-version: 1.0.347
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-nuget
- dependency-name: MaxMind.GeoIP2
  dependency-version: 5.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-nuget
- dependency-name: MySqlConnector
  dependency-version: 2.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-nuget
- dependency-name: Serilog.Extensions.Logging
  dependency-version: 10.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-nuget
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added .NET Pull requests that update .NET code dependencies Pull requests that update a dependency file labels Nov 24, 2025
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