Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the nuget group across 3 directories with 4 updates #1

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 21, 2024

Bumps the nuget group with 2 updates in the /src/WorkItemMigrator/JiraExport directory: Newtonsoft.Json and RestSharp.
Bumps the nuget group with 1 update in the /src/WorkItemMigrator/Migration.Common.Log directory: Newtonsoft.Json.
Bumps the nuget group with 3 updates in the /src/WorkItemMigrator/WorkItemImport directory: Newtonsoft.Json, Microsoft.IdentityModel.JsonWebTokens and System.IdentityModel.Tokens.Jwt.

Updates Newtonsoft.Json from 12.0.3 to 13.0.1

Release notes

Sourced from Newtonsoft.Json's releases.

13.0.1

  • New feature - Add JsonSelectSettings with configuration for a regex timeout
  • Change - Remove portable assemblies from NuGet package
  • Change - JsonReader and JsonSerializer MaxDepth defaults to 64
  • Change - Change InvalidCastException to JsonSerializationException on mismatched JToken
  • Fix - Fixed throwing missing member error on ignored fields
  • Fix - Fixed various nullable annotations
  • Fix - Fixed annotations not being copied when tokens are cloned
  • Fix - Fixed naming strategy not being used when deserializing dictionary enum keys
  • Fix - Fixed serializing nullable struct dictionaries
  • Fix - Fixed JsonWriter.WriteToken to allow null with string token
  • Fix - Fixed missing error when deserializing JToken with a contract type mismatch
  • Fix - Fixed JTokenWriter when writing comment to an object
Commits

Updates RestSharp from 106.10.1 to 106.12.0

Release notes

Sourced from RestSharp's releases.

106.12.0

What's Changed

New Contributors

... (truncated)

Commits

Updates Newtonsoft.Json from 11.0.2 to 13.0.1

Release notes

Sourced from Newtonsoft.Json's releases.

13.0.1

  • New feature - Add JsonSelectSettings with configuration for a regex timeout
  • Change - Remove portable assemblies from NuGet package
  • Change - JsonReader and JsonSerializer MaxDepth defaults to 64
  • Change - Change InvalidCastException to JsonSerializationException on mismatched JToken
  • Fix - Fixed throwing missing member error on ignored fields
  • Fix - Fixed various nullable annotations
  • Fix - Fixed annotations not being copied when tokens are cloned
  • Fix - Fixed naming strategy not being used when deserializing dictionary enum keys
  • Fix - Fixed serializing nullable struct dictionaries
  • Fix - Fixed JsonWriter.WriteToken to allow null with string token
  • Fix - Fixed missing error when deserializing JToken with a contract type mismatch
  • Fix - Fixed JTokenWriter when writing comment to an object
Commits

Updates Newtonsoft.Json from 13.0.1 to 13.0.3

Release notes

Sourced from Newtonsoft.Json's releases.

13.0.1

  • New feature - Add JsonSelectSettings with configuration for a regex timeout
  • Change - Remove portable assemblies from NuGet package
  • Change - JsonReader and JsonSerializer MaxDepth defaults to 64
  • Change - Change InvalidCastException to JsonSerializationException on mismatched JToken
  • Fix - Fixed throwing missing member error on ignored fields
  • Fix - Fixed various nullable annotations
  • Fix - Fixed annotations not being copied when tokens are cloned
  • Fix - Fixed naming strategy not being used when deserializing dictionary enum keys
  • Fix - Fixed serializing nullable struct dictionaries
  • Fix - Fixed JsonWriter.WriteToken to allow null with string token
  • Fix - Fixed missing error when deserializing JToken with a contract type mismatch
  • Fix - Fixed JTokenWriter when writing comment to an object
Commits

Updates Microsoft.IdentityModel.JsonWebTokens from 5.3.0 to 5.7.0

Release notes

Sourced from Microsoft.IdentityModel.JsonWebTokens's releases.

5.7.0

Security fixes

See https://aka.ms/IdentityModel/Jan2024/zip and https://aka.ms/IdentityModel/Jan2024/jku for details.

5.6.0

Features

  • JWTs can now be created from both SecurityTokenDescriptor.Subject and SecurityTokenDescriptor.Claims (#1193).
  • Added support for 'typ' header claim validation to JwtSecurityTokenHandler and JsonWebTokenHandler (#1220).
  • Added support for creating unsigned JWTs in JsonWebTokenHandler (#1204).
  • Added support for creating custom JWT header claims in JsonWebTokenHandler (#1210).
  • Added support for creating a JWT with an empty payload in JsonWebTokenHandler (#1237).
  • Added a setter for the AuthenticationProtocolMessage.Script property (#1193).

Bug Fixes

  • The OpenIdConnectConfiguration.SigningKeys property is no longer used during JSON serialization and deserialization (#1242).
  • RSACryptoServiceProviderProxy now properly disposes an RSA instance (#1240).
  • DtdProcessing.Prohibit is now explicitly set when creating an XmlReader (#1258).
  • JsonWebTokenHandler.CreateToken() now adds iat, nbf, and exp as longs not strings (#1207).
  • DateTime claim processing is now corrected and consistent (#1261).
  • Various improvements to the documentation.

Click here for a full list of issues that were fixed in this release.

5.5.0

Features

  • SignatureProvider caching is turned ON by default.
  • Added support for JWE decompression in JwtSecurityTokenHandler.
  • Added support for RSA-PSS.
  • Added support for reading and writing multiple signatures in XML envelopes.
  • Saml(2)SecurityTokenHandlers can consume a token using an XmlReader.
  • Improved support for converting JsonWebKey to SecurityKey for crypto operations.
  • Support for ECDSA keys from JsonWebKeySet.
  • Added GetClaim() and TryGetClaim() methods to JsonWebToken.
  • Improved exception messages.

Build and Test

  • Added performance and stress test framework.
  • Published symbol packages to the NuGet.org symbol server, hence reducing size of main NuGet packages.
  • Reduced the netstandard 2.0 dependency graph.

Bug Fixes

  • Intermittent signature validation failures in multi-threaded environments when SignatureProvider caching is enabled.

Click here for a full list of issues that were fixed.

5.4.0

Features

Improvements to non-windows platforms

  • RSACryptoServiceProviderProxy is only available on .Net Desktop.
  • Support JsonWebKey.CreateECDsa on non-windows platforms.

... (truncated)

Commits
  • 4a32908 Merged PR 10643: Fix ZIP issue
  • 66c2604 Work around the RSACryptoServiceProviderProxy crash on mono (#1287)
  • b9c40c0 Upgrade ApiCompat version and remove contract assemblies (#1308)
  • 47dac47 Update version to 5.7.1 and fix revision creation logic (#1312)
  • 54eb297 Fix VerifySigning script (#1305)
  • 9f5fcc7 Fixed the JWT segment counting bug in the JsonWebToken constructor (#1299)
  • a45ee58 Update assembly version and contract assemblies (#1286)
  • 57deb67 Updated VerifyResourceUsage.pl to check log messages across all directories
  • 6de2b3c Fixed incorrect log message usage
  • cff3250 Added 'typ' header claim validation (#1275)
  • Additional commits viewable in compare view

Updates System.IdentityModel.Tokens.Jwt from 5.3.0 to 5.7.0

Release notes

Sourced from System.IdentityModel.Tokens.Jwt's releases.

5.7.0

Security fixes

See https://aka.ms/IdentityModel/Jan2024/zip and https://aka.ms/IdentityModel/Jan2024/jku for details.

5.6.0

Features

  • JWTs can now be created from both SecurityTokenDescriptor.Subject and SecurityTokenDescriptor.Claims (#1193).
  • Added support for 'typ' header claim validation to JwtSecurityTokenHandler and JsonWebTokenHandler (#1220).
  • Added support for creating unsigned JWTs in JsonWebTokenHandler (#1204).
  • Added support for creating custom JWT header claims in JsonWebTokenHandler (#1210).
  • Added support for creating a JWT with an empty payload in JsonWebTokenHandler (#1237).
  • Added a setter for the AuthenticationProtocolMessage.Script property (#1193).

Bug Fixes

  • The OpenIdConnectConfiguration.SigningKeys property is no longer used during JSON serialization and deserialization (#1242).
  • RSACryptoServiceProviderProxy now properly disposes an RSA instance (#1240).
  • DtdProcessing.Prohibit is now explicitly set when creating an XmlReader (#1258).
  • JsonWebTokenHandler.CreateToken() now adds iat, nbf, and exp as longs not strings (#1207).
  • DateTime claim processing is now corrected and consistent (#1261).
  • Various improvements to the documentation.

Click here for a full list of issues that were fixed in this release.

5.5.0

Features

  • SignatureProvider caching is turned ON by default.
  • Added support for JWE decompression in JwtSecurityTokenHandler.
  • Added support for RSA-PSS.
  • Added support for reading and writing multiple signatures in XML envelopes.
  • Saml(2)SecurityTokenHandlers can consume a token using an XmlReader.
  • Improved support for converting JsonWebKey to SecurityKey for crypto operations.
  • Support for ECDSA keys from JsonWebKeySet.
  • Added GetClaim() and TryGetClaim() methods to JsonWebToken.
  • Improved exception messages.

Build and Test

  • Added performance and stress test framework.
  • Published symbol packages to the NuGet.org symbol server, hence reducing size of main NuGet packages.
  • Reduced the netstandard 2.0 dependency graph.

Bug Fixes

  • Intermittent signature validation failures in multi-threaded environments when SignatureProvider caching is enabled.

Click here for a full list of issues that were fixed.

5.4.0

Features

Improvements to non-windows platforms

  • RSACryptoServiceProviderProxy is only available on .Net Desktop.
  • Support JsonWebKey.CreateECDsa on non-windows platforms.

... (truncated)

Commits
  • 4a32908 Merged PR 10643: Fix ZIP issue
  • 66c2604 Work around the RSACryptoServiceProviderProxy crash on mono (#1287)
  • b9c40c0 Upgrade ApiCompat version and remove contract assemblies (#1308)
  • 47dac47 Update version to 5.7.1 and fix revision creation logic (#1312)
  • 54eb297 Fix VerifySigning script (#1305)
  • 9f5fcc7 Fixed the JWT segment counting bug in the JsonWebToken constructor (#1299)
  • a45ee58 Update assembly version and contract assemblies (#1286)
  • 57deb67 Updated VerifyResourceUsage.pl to check log messages across all directories
  • 6de2b3c Fixed incorrect log message usage
  • cff3250 Added 'typ' header claim validation (#1275)
  • Additional 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
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps the nuget group with 2 updates in the /src/WorkItemMigrator/JiraExport directory: [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json) and [RestSharp](https://github.com/restsharp/RestSharp).
Bumps the nuget group with 1 update in the /src/WorkItemMigrator/Migration.Common.Log directory: [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json).
Bumps the nuget group with 3 updates in the /src/WorkItemMigrator/WorkItemImport directory: [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json), [Microsoft.IdentityModel.JsonWebTokens](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet) and [System.IdentityModel.Tokens.Jwt](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet).


Updates `Newtonsoft.Json` from 12.0.3 to 13.0.1
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](JamesNK/Newtonsoft.Json@12.0.3...13.0.1)

Updates `RestSharp` from 106.10.1 to 106.12.0
- [Release notes](https://github.com/restsharp/RestSharp/releases)
- [Commits](restsharp/RestSharp@106.10.1...106.12)

Updates `Newtonsoft.Json` from 11.0.2 to 13.0.1
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](JamesNK/Newtonsoft.Json@12.0.3...13.0.1)

Updates `Newtonsoft.Json` from 13.0.1 to 13.0.3
- [Release notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Commits](JamesNK/Newtonsoft.Json@12.0.3...13.0.1)

Updates `Microsoft.IdentityModel.JsonWebTokens` from 5.3.0 to 5.7.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@5.3.0...5.7.0)

Updates `System.IdentityModel.Tokens.Jwt` from 5.3.0 to 5.7.0
- [Release notes](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/releases)
- [Changelog](https://github.com/AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet/blob/dev/CHANGELOG.md)
- [Commits](AzureAD/azure-activedirectory-identitymodel-extensions-for-dotnet@5.3.0...5.7.0)

---
updated-dependencies:
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  dependency-group: nuget-security-group
- dependency-name: RestSharp
  dependency-type: direct:production
  dependency-group: nuget-security-group
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  dependency-group: nuget-security-group
- dependency-name: Newtonsoft.Json
  dependency-type: direct:production
  dependency-group: nuget-security-group
- dependency-name: Microsoft.IdentityModel.JsonWebTokens
  dependency-type: direct:production
  dependency-group: nuget-security-group
- dependency-name: System.IdentityModel.Tokens.Jwt
  dependency-type: direct:production
  dependency-group: nuget-security-group
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 21, 2024
@PHOENIXENT PHOENIXENT merged commit 094d838 into master Apr 9, 2024
2 of 4 checks passed
@PHOENIXENT PHOENIXENT deleted the dependabot/nuget/src/WorkItemMigrator/JiraExport/nuget-security-group-b6b1fef175 branch April 9, 2024 02:00
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.

1 participant