1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 21:18:13 -05:00

Pin Microsoft.AspNetCore.Http (#3001)

This commit is contained in:
Justin Baur 2023-06-29 09:37:58 -04:00 committed by GitHub
parent 140f0017e3
commit 3bffd480cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
32 changed files with 436 additions and 432 deletions

View File

@ -2783,7 +2783,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",

View File

@ -2786,7 +2786,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2794,7 +2794,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2806,9 +2806,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -7,6 +7,9 @@
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Sso' " /> <PropertyGroup Condition=" '$(RunConfiguration)' == 'Sso' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'Sso-SelfHost' " /> <PropertyGroup Condition=" '$(RunConfiguration)' == 'Sso-SelfHost' " />
<ItemGroup> <ItemGroup>
<!-- This is a transitive dependency to Sustainsys.Saml2.AspNetCore2 -->
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.1.22" />
<PackageReference Include="Sustainsys.Saml2.AspNetCore2" Version="2.9.0" /> <PackageReference Include="Sustainsys.Saml2.AspNetCore2" Version="2.9.0" />
</ItemGroup> </ItemGroup>

View File

@ -2,6 +2,19 @@
"version": 1, "version": 1,
"dependencies": { "dependencies": {
"net6.0": { "net6.0": {
"Microsoft.AspNetCore.Http": {
"type": "Direct",
"requested": "[2.1.22, )",
"resolved": "2.1.22",
"contentHash": "+Blk++1JWqghbl8+3azQmKhiNZA5wAepL9dY2I6KVmu2Ri07MAcvAVC888qUvO7yd7xgRgZOMfihezKg14O/2A==",
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
"Microsoft.AspNetCore.WebUtilities": "2.1.1",
"Microsoft.Extensions.ObjectPool": "2.1.1",
"Microsoft.Extensions.Options": "2.1.1",
"Microsoft.Net.Http.Headers": "2.1.1"
}
},
"Sustainsys.Saml2.AspNetCore2": { "Sustainsys.Saml2.AspNetCore2": {
"type": "Direct", "type": "Direct",
"requested": "[2.9.0, )", "requested": "[2.9.0, )",
@ -418,18 +431,6 @@
"resolved": "3.1.32", "resolved": "3.1.32",
"contentHash": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg==" "contentHash": "MPL4iVyiaRxnOUY5VATHjvhDWaAEFb77KFiUxVRklv3Z3v+STofUr1UG/aCt1O9cgN7FVTDaC5A7U+zsLub8Xg=="
}, },
"Microsoft.AspNetCore.Http": {
"type": "Transitive",
"resolved": "2.1.1",
"contentHash": "pPDcCW8spnyibK3krpxrOpaFHf5fjV6k1Hsl6gfh77N/8gRYlLU7MOQDUnjpEwdlHmtxwJKQJNxZqVQOmJGRUw==",
"dependencies": {
"Microsoft.AspNetCore.Http.Abstractions": "2.1.1",
"Microsoft.AspNetCore.WebUtilities": "2.1.1",
"Microsoft.Extensions.ObjectPool": "2.1.1",
"Microsoft.Extensions.Options": "2.1.1",
"Microsoft.Net.Http.Headers": "2.1.1"
}
},
"Microsoft.AspNetCore.Http.Abstractions": { "Microsoft.AspNetCore.Http.Abstractions": {
"type": "Transitive", "type": "Transitive",
"resolved": "2.1.1", "resolved": "2.1.1",
@ -2945,7 +2946,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2953,7 +2954,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2965,9 +2966,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2818,7 +2818,7 @@
"commercial.core": { "commercial.core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3" "Core": "2023.5.1"
} }
}, },
"common": { "common": {
@ -2826,7 +2826,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -2880,8 +2880,8 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Common": "2023.4.3", "Common": "2023.5.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"Moq": "4.17.2", "Moq": "4.17.2",

View File

@ -3144,7 +3144,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3196,15 +3196,15 @@
"identity": { "identity": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore.SwaggerGen": "6.5.0" "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3212,7 +3212,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -3224,8 +3224,8 @@
"integrationtestcommon": { "integrationtestcommon": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Common": "2023.4.3", "Common": "2023.5.1",
"Identity": "2023.4.3", "Identity": "2023.5.1",
"Microsoft.AspNetCore.Mvc.Testing": "6.0.5", "Microsoft.AspNetCore.Mvc.Testing": "6.0.5",
"Microsoft.EntityFrameworkCore.InMemory": "6.0.5", "Microsoft.EntityFrameworkCore.InMemory": "6.0.5",
"Microsoft.Extensions.Configuration": "6.0.1" "Microsoft.Extensions.Configuration": "6.0.1"
@ -3234,16 +3234,16 @@
"scim": { "scim": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3" "SharedWeb": "2023.5.1"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2989,7 +2989,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3041,7 +3041,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3049,7 +3049,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -3061,16 +3061,16 @@
"scim": { "scim": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3" "SharedWeb": "2023.5.1"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2834,7 +2834,7 @@
"commercial.core": { "commercial.core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3" "Core": "2023.5.1"
} }
}, },
"core": { "core": {
@ -2882,7 +2882,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2890,7 +2890,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2902,7 +2902,7 @@
"migrator": { "migrator": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Logging": "6.0.0",
"dbup-sqlserver": "5.0.8" "dbup-sqlserver": "5.0.8"
} }
@ -2910,30 +2910,30 @@
"mysqlmigrations": { "mysqlmigrations": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"postgresmigrations": { "postgresmigrations": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"sqlitemigrations": { "sqlitemigrations": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2907,85 +2907,85 @@
"commercial.core": { "commercial.core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )" "Core": "2023.5.1"
} }
}, },
"commercial.infrastructure.entityframework": { "commercial.infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"core": { "core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AWSSDK.SQS": "[3.7.2.47, )", "AWSSDK.SQS": "3.7.2.47",
"AWSSDK.SimpleEmail": "[3.7.0.150, )", "AWSSDK.SimpleEmail": "3.7.0.150",
"AspNetCoreRateLimit": "[4.0.2, )", "AspNetCoreRateLimit": "4.0.2",
"AspNetCoreRateLimit.Redis": "[1.0.1, )", "AspNetCoreRateLimit.Redis": "1.0.1",
"Azure.Extensions.AspNetCore.DataProtection.Blobs": "[1.3.2, )", "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.2",
"Azure.Storage.Blobs": "[12.14.1, )", "Azure.Storage.Blobs": "12.14.1",
"Azure.Storage.Queues": "[12.12.0, )", "Azure.Storage.Queues": "12.12.0",
"BitPay.Light": "[1.0.1907, )", "BitPay.Light": "1.0.1907",
"Braintree": "[5.12.0, )", "Braintree": "5.12.0",
"DnsClient": "[1.7.0, )", "DnsClient": "1.7.0",
"Fido2.AspNet": "[3.0.1, )", "Fido2.AspNet": "3.0.1",
"Handlebars.Net": "[2.1.2, )", "Handlebars.Net": "2.1.2",
"IdentityServer4": "[4.1.2, )", "IdentityServer4": "4.1.2",
"IdentityServer4.AccessTokenValidation": "[3.0.1, )", "IdentityServer4.AccessTokenValidation": "3.0.1",
"LaunchDarkly.ServerSdk": "[7.0.0, )", "LaunchDarkly.ServerSdk": "7.0.0",
"MailKit": "[3.2.0, )", "MailKit": "3.2.0",
"Microsoft.AspNetCore.Authentication.JwtBearer": "[6.0.4, )", "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.4",
"Microsoft.Azure.Cosmos.Table": "[1.0.8, )", "Microsoft.Azure.Cosmos.Table": "1.0.8",
"Microsoft.Azure.NotificationHubs": "[4.1.0, )", "Microsoft.Azure.NotificationHubs": "4.1.0",
"Microsoft.Azure.ServiceBus": "[5.2.0, )", "Microsoft.Azure.ServiceBus": "5.2.0",
"Microsoft.Data.SqlClient": "[5.0.1, )", "Microsoft.Data.SqlClient": "5.0.1",
"Microsoft.Extensions.Caching.StackExchangeRedis": "[6.0.6, )", "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.6",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "[6.0.1, )", "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
"Microsoft.Extensions.Configuration.UserSecrets": "[6.0.1, )", "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
"Microsoft.Extensions.Identity.Stores": "[6.0.4, )", "Microsoft.Extensions.Identity.Stores": "6.0.4",
"Newtonsoft.Json": "[13.0.1, )", "Newtonsoft.Json": "13.0.1",
"Otp.NET": "[1.2.2, )", "Otp.NET": "1.2.2",
"Quartz": "[3.4.0, )", "Quartz": "3.4.0",
"SendGrid": "[9.27.0, )", "SendGrid": "9.27.0",
"Sentry.Serilog": "[3.16.0, )", "Sentry.Serilog": "3.16.0",
"Serilog.AspNetCore": "[5.0.0, )", "Serilog.AspNetCore": "5.0.0",
"Serilog.Extensions.Logging": "[3.1.0, )", "Serilog.Extensions.Logging": "3.1.0",
"Serilog.Extensions.Logging.File": "[2.0.0, )", "Serilog.Extensions.Logging.File": "2.0.0",
"Serilog.Sinks.AzureCosmosDB": "[2.0.0, )", "Serilog.Sinks.AzureCosmosDB": "2.0.0",
"Serilog.Sinks.SyslogMessages": "[2.0.6, )", "Serilog.Sinks.SyslogMessages": "2.0.6",
"Stripe.net": "[40.0.0, )", "Stripe.net": "40.0.0",
"YubicoDotNetClient": "[1.2.0, )" "YubicoDotNetClient": "1.2.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Dapper": "[2.0.123, )" "Dapper": "2.0.123"
} }
}, },
"infrastructure.entityframework": { "infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "[6.0.12, )", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
"Npgsql.EntityFrameworkCore.PostgreSQL": "[6.0.8, )", "Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.8",
"Pomelo.EntityFrameworkCore.MySql": "[6.0.2, )", "Pomelo.EntityFrameworkCore.MySql": "6.0.2",
"linq2db.EntityFrameworkCore": "[6.11.0, )" "linq2db.EntityFrameworkCore": "6.11.0"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.Dapper": "[2023.5.0, )", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2786,7 +2786,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2794,7 +2794,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2806,9 +2806,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2786,7 +2786,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2794,7 +2794,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2806,9 +2806,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2786,7 +2786,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2794,7 +2794,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2806,9 +2806,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2796,7 +2796,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2804,7 +2804,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2816,9 +2816,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2808,7 +2808,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2816,7 +2816,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2828,9 +2828,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2836,7 +2836,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2844,7 +2844,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2856,9 +2856,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2786,7 +2786,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2794,7 +2794,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",

View File

@ -3273,133 +3273,133 @@
"api": { "api": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AspNetCore.HealthChecks.AzureServiceBus": "[6.1.0, )", "AspNetCore.HealthChecks.AzureServiceBus": "6.1.0",
"AspNetCore.HealthChecks.AzureStorage": "[6.1.2, )", "AspNetCore.HealthChecks.AzureStorage": "6.1.2",
"AspNetCore.HealthChecks.Network": "[6.0.4, )", "AspNetCore.HealthChecks.Network": "6.0.4",
"AspNetCore.HealthChecks.Redis": "[6.0.4, )", "AspNetCore.HealthChecks.Redis": "6.0.4",
"AspNetCore.HealthChecks.SendGrid": "[6.0.2, )", "AspNetCore.HealthChecks.SendGrid": "6.0.2",
"AspNetCore.HealthChecks.SqlServer": "[6.0.2, )", "AspNetCore.HealthChecks.SqlServer": "6.0.2",
"AspNetCore.HealthChecks.Uris": "[6.0.3, )", "AspNetCore.HealthChecks.Uris": "6.0.3",
"Azure.Messaging.EventGrid": "[4.10.0, )", "Azure.Messaging.EventGrid": "4.10.0",
"Commercial.Core": "[2023.5.0, )", "Commercial.Core": "2023.5.1",
"Commercial.Infrastructure.EntityFramework": "[2023.5.0, )", "Commercial.Infrastructure.EntityFramework": "2023.5.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"SharedWeb": "[2023.5.0, )", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore": "[6.5.0, )" "Swashbuckle.AspNetCore": "6.5.0"
} }
}, },
"commercial.core": { "commercial.core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )" "Core": "2023.5.1"
} }
}, },
"commercial.infrastructure.entityframework": { "commercial.infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"common": { "common": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "[4.17.0, )", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "[4.17.0, )", "AutoFixture.Xunit2": "4.17.0",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "[1.2.0, )", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "[17.1.0, )", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "[4.3.0, )", "NSubstitute": "4.3.0",
"xunit": "[2.4.1, )" "xunit": "2.4.1"
} }
}, },
"core": { "core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AWSSDK.SQS": "[3.7.2.47, )", "AWSSDK.SQS": "3.7.2.47",
"AWSSDK.SimpleEmail": "[3.7.0.150, )", "AWSSDK.SimpleEmail": "3.7.0.150",
"AspNetCoreRateLimit": "[4.0.2, )", "AspNetCoreRateLimit": "4.0.2",
"AspNetCoreRateLimit.Redis": "[1.0.1, )", "AspNetCoreRateLimit.Redis": "1.0.1",
"Azure.Extensions.AspNetCore.DataProtection.Blobs": "[1.3.2, )", "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.2",
"Azure.Storage.Blobs": "[12.14.1, )", "Azure.Storage.Blobs": "12.14.1",
"Azure.Storage.Queues": "[12.12.0, )", "Azure.Storage.Queues": "12.12.0",
"BitPay.Light": "[1.0.1907, )", "BitPay.Light": "1.0.1907",
"Braintree": "[5.12.0, )", "Braintree": "5.12.0",
"DnsClient": "[1.7.0, )", "DnsClient": "1.7.0",
"Fido2.AspNet": "[3.0.1, )", "Fido2.AspNet": "3.0.1",
"Handlebars.Net": "[2.1.2, )", "Handlebars.Net": "2.1.2",
"IdentityServer4": "[4.1.2, )", "IdentityServer4": "4.1.2",
"IdentityServer4.AccessTokenValidation": "[3.0.1, )", "IdentityServer4.AccessTokenValidation": "3.0.1",
"LaunchDarkly.ServerSdk": "[7.0.0, )", "LaunchDarkly.ServerSdk": "7.0.0",
"MailKit": "[3.2.0, )", "MailKit": "3.2.0",
"Microsoft.AspNetCore.Authentication.JwtBearer": "[6.0.4, )", "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.4",
"Microsoft.Azure.Cosmos.Table": "[1.0.8, )", "Microsoft.Azure.Cosmos.Table": "1.0.8",
"Microsoft.Azure.NotificationHubs": "[4.1.0, )", "Microsoft.Azure.NotificationHubs": "4.1.0",
"Microsoft.Azure.ServiceBus": "[5.2.0, )", "Microsoft.Azure.ServiceBus": "5.2.0",
"Microsoft.Data.SqlClient": "[5.0.1, )", "Microsoft.Data.SqlClient": "5.0.1",
"Microsoft.Extensions.Caching.StackExchangeRedis": "[6.0.6, )", "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.6",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "[6.0.1, )", "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
"Microsoft.Extensions.Configuration.UserSecrets": "[6.0.1, )", "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
"Microsoft.Extensions.Identity.Stores": "[6.0.4, )", "Microsoft.Extensions.Identity.Stores": "6.0.4",
"Newtonsoft.Json": "[13.0.1, )", "Newtonsoft.Json": "13.0.1",
"Otp.NET": "[1.2.2, )", "Otp.NET": "1.2.2",
"Quartz": "[3.4.0, )", "Quartz": "3.4.0",
"SendGrid": "[9.27.0, )", "SendGrid": "9.27.0",
"Sentry.Serilog": "[3.16.0, )", "Sentry.Serilog": "3.16.0",
"Serilog.AspNetCore": "[5.0.0, )", "Serilog.AspNetCore": "5.0.0",
"Serilog.Extensions.Logging": "[3.1.0, )", "Serilog.Extensions.Logging": "3.1.0",
"Serilog.Extensions.Logging.File": "[2.0.0, )", "Serilog.Extensions.Logging.File": "2.0.0",
"Serilog.Sinks.AzureCosmosDB": "[2.0.0, )", "Serilog.Sinks.AzureCosmosDB": "2.0.0",
"Serilog.Sinks.SyslogMessages": "[2.0.6, )", "Serilog.Sinks.SyslogMessages": "2.0.6",
"Stripe.net": "[40.0.0, )", "Stripe.net": "40.0.0",
"YubicoDotNetClient": "[1.2.0, )" "YubicoDotNetClient": "1.2.0"
} }
}, },
"identity": { "identity": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"SharedWeb": "[2023.5.0, )", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore.SwaggerGen": "[6.5.0, )" "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Dapper": "[2.0.123, )" "Dapper": "2.0.123"
} }
}, },
"infrastructure.entityframework": { "infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "[6.0.12, )", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
"Npgsql.EntityFrameworkCore.PostgreSQL": "[6.0.8, )", "Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.8",
"Pomelo.EntityFrameworkCore.MySql": "[6.0.2, )", "Pomelo.EntityFrameworkCore.MySql": "6.0.2",
"linq2db.EntityFrameworkCore": "[6.11.0, )" "linq2db.EntityFrameworkCore": "6.11.0"
} }
}, },
"integrationtestcommon": { "integrationtestcommon": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Common": "[2023.5.0, )", "Common": "2023.5.1",
"Identity": "[2023.5.0, )", "Identity": "2023.5.1",
"Microsoft.AspNetCore.Mvc.Testing": "[6.0.5, )", "Microsoft.AspNetCore.Mvc.Testing": "6.0.5",
"Microsoft.EntityFrameworkCore.InMemory": "[6.0.5, )", "Microsoft.EntityFrameworkCore.InMemory": "6.0.5",
"Microsoft.Extensions.Configuration": "[6.0.1, )" "Microsoft.Extensions.Configuration": "6.0.1"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.Dapper": "[2023.5.0, )", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -3151,129 +3151,129 @@
"api": { "api": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AspNetCore.HealthChecks.AzureServiceBus": "[6.1.0, )", "AspNetCore.HealthChecks.AzureServiceBus": "6.1.0",
"AspNetCore.HealthChecks.AzureStorage": "[6.1.2, )", "AspNetCore.HealthChecks.AzureStorage": "6.1.2",
"AspNetCore.HealthChecks.Network": "[6.0.4, )", "AspNetCore.HealthChecks.Network": "6.0.4",
"AspNetCore.HealthChecks.Redis": "[6.0.4, )", "AspNetCore.HealthChecks.Redis": "6.0.4",
"AspNetCore.HealthChecks.SendGrid": "[6.0.2, )", "AspNetCore.HealthChecks.SendGrid": "6.0.2",
"AspNetCore.HealthChecks.SqlServer": "[6.0.2, )", "AspNetCore.HealthChecks.SqlServer": "6.0.2",
"AspNetCore.HealthChecks.Uris": "[6.0.3, )", "AspNetCore.HealthChecks.Uris": "6.0.3",
"Azure.Messaging.EventGrid": "[4.10.0, )", "Azure.Messaging.EventGrid": "4.10.0",
"Commercial.Core": "[2023.5.0, )", "Commercial.Core": "2023.5.1",
"Commercial.Infrastructure.EntityFramework": "[2023.5.0, )", "Commercial.Infrastructure.EntityFramework": "2023.5.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"SharedWeb": "[2023.5.0, )", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore": "[6.5.0, )" "Swashbuckle.AspNetCore": "6.5.0"
} }
}, },
"commercial.core": { "commercial.core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )" "Core": "2023.5.1"
} }
}, },
"commercial.infrastructure.entityframework": { "commercial.infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"common": { "common": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "[4.17.0, )", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "[4.17.0, )", "AutoFixture.Xunit2": "4.17.0",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "[1.2.0, )", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "[17.1.0, )", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "[4.3.0, )", "NSubstitute": "4.3.0",
"xunit": "[2.4.1, )" "xunit": "2.4.1"
} }
}, },
"core": { "core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AWSSDK.SQS": "[3.7.2.47, )", "AWSSDK.SQS": "3.7.2.47",
"AWSSDK.SimpleEmail": "[3.7.0.150, )", "AWSSDK.SimpleEmail": "3.7.0.150",
"AspNetCoreRateLimit": "[4.0.2, )", "AspNetCoreRateLimit": "4.0.2",
"AspNetCoreRateLimit.Redis": "[1.0.1, )", "AspNetCoreRateLimit.Redis": "1.0.1",
"Azure.Extensions.AspNetCore.DataProtection.Blobs": "[1.3.2, )", "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.2",
"Azure.Storage.Blobs": "[12.14.1, )", "Azure.Storage.Blobs": "12.14.1",
"Azure.Storage.Queues": "[12.12.0, )", "Azure.Storage.Queues": "12.12.0",
"BitPay.Light": "[1.0.1907, )", "BitPay.Light": "1.0.1907",
"Braintree": "[5.12.0, )", "Braintree": "5.12.0",
"DnsClient": "[1.7.0, )", "DnsClient": "1.7.0",
"Fido2.AspNet": "[3.0.1, )", "Fido2.AspNet": "3.0.1",
"Handlebars.Net": "[2.1.2, )", "Handlebars.Net": "2.1.2",
"IdentityServer4": "[4.1.2, )", "IdentityServer4": "4.1.2",
"IdentityServer4.AccessTokenValidation": "[3.0.1, )", "IdentityServer4.AccessTokenValidation": "3.0.1",
"LaunchDarkly.ServerSdk": "[7.0.0, )", "LaunchDarkly.ServerSdk": "7.0.0",
"MailKit": "[3.2.0, )", "MailKit": "3.2.0",
"Microsoft.AspNetCore.Authentication.JwtBearer": "[6.0.4, )", "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.4",
"Microsoft.Azure.Cosmos.Table": "[1.0.8, )", "Microsoft.Azure.Cosmos.Table": "1.0.8",
"Microsoft.Azure.NotificationHubs": "[4.1.0, )", "Microsoft.Azure.NotificationHubs": "4.1.0",
"Microsoft.Azure.ServiceBus": "[5.2.0, )", "Microsoft.Azure.ServiceBus": "5.2.0",
"Microsoft.Data.SqlClient": "[5.0.1, )", "Microsoft.Data.SqlClient": "5.0.1",
"Microsoft.Extensions.Caching.StackExchangeRedis": "[6.0.6, )", "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.6",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "[6.0.1, )", "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
"Microsoft.Extensions.Configuration.UserSecrets": "[6.0.1, )", "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
"Microsoft.Extensions.Identity.Stores": "[6.0.4, )", "Microsoft.Extensions.Identity.Stores": "6.0.4",
"Newtonsoft.Json": "[13.0.1, )", "Newtonsoft.Json": "13.0.1",
"Otp.NET": "[1.2.2, )", "Otp.NET": "1.2.2",
"Quartz": "[3.4.0, )", "Quartz": "3.4.0",
"SendGrid": "[9.27.0, )", "SendGrid": "9.27.0",
"Sentry.Serilog": "[3.16.0, )", "Sentry.Serilog": "3.16.0",
"Serilog.AspNetCore": "[5.0.0, )", "Serilog.AspNetCore": "5.0.0",
"Serilog.Extensions.Logging": "[3.1.0, )", "Serilog.Extensions.Logging": "3.1.0",
"Serilog.Extensions.Logging.File": "[2.0.0, )", "Serilog.Extensions.Logging.File": "2.0.0",
"Serilog.Sinks.AzureCosmosDB": "[2.0.0, )", "Serilog.Sinks.AzureCosmosDB": "2.0.0",
"Serilog.Sinks.SyslogMessages": "[2.0.6, )", "Serilog.Sinks.SyslogMessages": "2.0.6",
"Stripe.net": "[40.0.0, )", "Stripe.net": "40.0.0",
"YubicoDotNetClient": "[1.2.0, )" "YubicoDotNetClient": "1.2.0"
} }
}, },
"core.test": { "core.test": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "[4.17.0, )", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "[4.17.0, )", "AutoFixture.Xunit2": "4.17.0",
"Common": "[2023.5.0, )", "Common": "2023.5.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "[1.2.0, )", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "[17.1.0, )", "Microsoft.NET.Test.Sdk": "17.1.0",
"Moq": "[4.17.2, )", "Moq": "4.17.2",
"NSubstitute": "[4.3.0, )", "NSubstitute": "4.3.0",
"xunit": "[2.4.1, )" "xunit": "2.4.1"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Dapper": "[2.0.123, )" "Dapper": "2.0.123"
} }
}, },
"infrastructure.entityframework": { "infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "[6.0.12, )", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
"Npgsql.EntityFrameworkCore.PostgreSQL": "[6.0.8, )", "Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.8",
"Pomelo.EntityFrameworkCore.MySql": "[6.0.2, )", "Pomelo.EntityFrameworkCore.MySql": "6.0.2",
"linq2db.EntityFrameworkCore": "[6.11.0, )" "linq2db.EntityFrameworkCore": "6.11.0"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.Dapper": "[2023.5.0, )", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2988,8 +2988,8 @@
"billing": { "billing": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3" "SharedWeb": "2023.5.1"
} }
}, },
"common": { "common": {
@ -2997,7 +2997,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3049,7 +3049,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3057,7 +3057,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -3069,9 +3069,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2825,7 +2825,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",

View File

@ -2972,14 +2972,14 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AngleSharp": "0.16.1", "AngleSharp": "0.16.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3" "SharedWeb": "2023.5.1"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2987,7 +2987,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -2999,9 +2999,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -3144,7 +3144,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3196,15 +3196,15 @@
"identity": { "identity": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore.SwaggerGen": "6.5.0" "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3212,7 +3212,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -3224,8 +3224,8 @@
"integrationtestcommon": { "integrationtestcommon": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Common": "2023.4.3", "Common": "2023.5.1",
"Identity": "2023.4.3", "Identity": "2023.5.1",
"Microsoft.AspNetCore.Mvc.Testing": "6.0.5", "Microsoft.AspNetCore.Mvc.Testing": "6.0.5",
"Microsoft.EntityFrameworkCore.InMemory": "6.0.5", "Microsoft.EntityFrameworkCore.InMemory": "6.0.5",
"Microsoft.Extensions.Configuration": "6.0.1" "Microsoft.Extensions.Configuration": "6.0.1"
@ -3234,9 +3234,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -3011,7 +3011,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3063,15 +3063,15 @@
"identity": { "identity": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore.SwaggerGen": "6.5.0" "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3079,7 +3079,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -3091,9 +3091,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -3001,7 +3001,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3055,8 +3055,8 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Common": "2023.4.3", "Common": "2023.5.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"Moq": "4.17.2", "Moq": "4.17.2",
@ -3067,7 +3067,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3075,7 +3075,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",

View File

@ -2901,7 +2901,7 @@
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -2909,7 +2909,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",

View File

@ -3130,7 +3130,7 @@
"dependencies": { "dependencies": {
"AutoFixture.AutoNSubstitute": "4.17.0", "AutoFixture.AutoNSubstitute": "4.17.0",
"AutoFixture.Xunit2": "4.17.0", "AutoFixture.Xunit2": "4.17.0",
"Core": "2023.4.3", "Core": "2023.5.1",
"Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0", "Kralizek.AutoFixture.Extensions.MockHttp": "1.2.0",
"Microsoft.NET.Test.Sdk": "17.1.0", "Microsoft.NET.Test.Sdk": "17.1.0",
"NSubstitute": "4.3.0", "NSubstitute": "4.3.0",
@ -3182,15 +3182,15 @@
"identity": { "identity": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"SharedWeb": "2023.4.3", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore.SwaggerGen": "6.5.0" "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Dapper": "2.0.123" "Dapper": "2.0.123"
} }
}, },
@ -3198,7 +3198,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
@ -3210,9 +3210,9 @@
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Infrastructure.Dapper": "2023.4.3", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "2023.4.3" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2729,7 +2729,7 @@
"migrator": { "migrator": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Logging": "6.0.0",
"dbup-sqlserver": "5.0.8" "dbup-sqlserver": "5.0.8"
} }

View File

@ -2797,7 +2797,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",

View File

@ -2797,7 +2797,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",

View File

@ -2706,7 +2706,7 @@
"migrator": { "migrator": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.Extensions.Logging": "6.0.0", "Microsoft.Extensions.Logging": "6.0.0",
"dbup-sqlserver": "5.0.8" "dbup-sqlserver": "5.0.8"
} }

View File

@ -2913,103 +2913,103 @@
"api": { "api": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AspNetCore.HealthChecks.AzureServiceBus": "[6.1.0, )", "AspNetCore.HealthChecks.AzureServiceBus": "6.1.0",
"AspNetCore.HealthChecks.AzureStorage": "[6.1.2, )", "AspNetCore.HealthChecks.AzureStorage": "6.1.2",
"AspNetCore.HealthChecks.Network": "[6.0.4, )", "AspNetCore.HealthChecks.Network": "6.0.4",
"AspNetCore.HealthChecks.Redis": "[6.0.4, )", "AspNetCore.HealthChecks.Redis": "6.0.4",
"AspNetCore.HealthChecks.SendGrid": "[6.0.2, )", "AspNetCore.HealthChecks.SendGrid": "6.0.2",
"AspNetCore.HealthChecks.SqlServer": "[6.0.2, )", "AspNetCore.HealthChecks.SqlServer": "6.0.2",
"AspNetCore.HealthChecks.Uris": "[6.0.3, )", "AspNetCore.HealthChecks.Uris": "6.0.3",
"Azure.Messaging.EventGrid": "[4.10.0, )", "Azure.Messaging.EventGrid": "4.10.0",
"Commercial.Core": "[2023.5.0, )", "Commercial.Core": "2023.5.1",
"Commercial.Infrastructure.EntityFramework": "[2023.5.0, )", "Commercial.Infrastructure.EntityFramework": "2023.5.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"SharedWeb": "[2023.5.0, )", "SharedWeb": "2023.5.1",
"Swashbuckle.AspNetCore": "[6.5.0, )" "Swashbuckle.AspNetCore": "6.5.0"
} }
}, },
"commercial.core": { "commercial.core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )" "Core": "2023.5.1"
} }
}, },
"commercial.infrastructure.entityframework": { "commercial.infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
}, },
"core": { "core": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AWSSDK.SQS": "[3.7.2.47, )", "AWSSDK.SQS": "3.7.2.47",
"AWSSDK.SimpleEmail": "[3.7.0.150, )", "AWSSDK.SimpleEmail": "3.7.0.150",
"AspNetCoreRateLimit": "[4.0.2, )", "AspNetCoreRateLimit": "4.0.2",
"AspNetCoreRateLimit.Redis": "[1.0.1, )", "AspNetCoreRateLimit.Redis": "1.0.1",
"Azure.Extensions.AspNetCore.DataProtection.Blobs": "[1.3.2, )", "Azure.Extensions.AspNetCore.DataProtection.Blobs": "1.3.2",
"Azure.Storage.Blobs": "[12.14.1, )", "Azure.Storage.Blobs": "12.14.1",
"Azure.Storage.Queues": "[12.12.0, )", "Azure.Storage.Queues": "12.12.0",
"BitPay.Light": "[1.0.1907, )", "BitPay.Light": "1.0.1907",
"Braintree": "[5.12.0, )", "Braintree": "5.12.0",
"DnsClient": "[1.7.0, )", "DnsClient": "1.7.0",
"Fido2.AspNet": "[3.0.1, )", "Fido2.AspNet": "3.0.1",
"Handlebars.Net": "[2.1.2, )", "Handlebars.Net": "2.1.2",
"IdentityServer4": "[4.1.2, )", "IdentityServer4": "4.1.2",
"IdentityServer4.AccessTokenValidation": "[3.0.1, )", "IdentityServer4.AccessTokenValidation": "3.0.1",
"LaunchDarkly.ServerSdk": "[7.0.0, )", "LaunchDarkly.ServerSdk": "7.0.0",
"MailKit": "[3.2.0, )", "MailKit": "3.2.0",
"Microsoft.AspNetCore.Authentication.JwtBearer": "[6.0.4, )", "Microsoft.AspNetCore.Authentication.JwtBearer": "6.0.4",
"Microsoft.Azure.Cosmos.Table": "[1.0.8, )", "Microsoft.Azure.Cosmos.Table": "1.0.8",
"Microsoft.Azure.NotificationHubs": "[4.1.0, )", "Microsoft.Azure.NotificationHubs": "4.1.0",
"Microsoft.Azure.ServiceBus": "[5.2.0, )", "Microsoft.Azure.ServiceBus": "5.2.0",
"Microsoft.Data.SqlClient": "[5.0.1, )", "Microsoft.Data.SqlClient": "5.0.1",
"Microsoft.Extensions.Caching.StackExchangeRedis": "[6.0.6, )", "Microsoft.Extensions.Caching.StackExchangeRedis": "6.0.6",
"Microsoft.Extensions.Configuration.EnvironmentVariables": "[6.0.1, )", "Microsoft.Extensions.Configuration.EnvironmentVariables": "6.0.1",
"Microsoft.Extensions.Configuration.UserSecrets": "[6.0.1, )", "Microsoft.Extensions.Configuration.UserSecrets": "6.0.1",
"Microsoft.Extensions.Identity.Stores": "[6.0.4, )", "Microsoft.Extensions.Identity.Stores": "6.0.4",
"Newtonsoft.Json": "[13.0.1, )", "Newtonsoft.Json": "13.0.1",
"Otp.NET": "[1.2.2, )", "Otp.NET": "1.2.2",
"Quartz": "[3.4.0, )", "Quartz": "3.4.0",
"SendGrid": "[9.27.0, )", "SendGrid": "9.27.0",
"Sentry.Serilog": "[3.16.0, )", "Sentry.Serilog": "3.16.0",
"Serilog.AspNetCore": "[5.0.0, )", "Serilog.AspNetCore": "5.0.0",
"Serilog.Extensions.Logging": "[3.1.0, )", "Serilog.Extensions.Logging": "3.1.0",
"Serilog.Extensions.Logging.File": "[2.0.0, )", "Serilog.Extensions.Logging.File": "2.0.0",
"Serilog.Sinks.AzureCosmosDB": "[2.0.0, )", "Serilog.Sinks.AzureCosmosDB": "2.0.0",
"Serilog.Sinks.SyslogMessages": "[2.0.6, )", "Serilog.Sinks.SyslogMessages": "2.0.6",
"Stripe.net": "[40.0.0, )", "Stripe.net": "40.0.0",
"YubicoDotNetClient": "[1.2.0, )" "YubicoDotNetClient": "1.2.0"
} }
}, },
"infrastructure.dapper": { "infrastructure.dapper": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Dapper": "[2.0.123, )" "Dapper": "2.0.123"
} }
}, },
"infrastructure.entityframework": { "infrastructure.entityframework": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "[12.0.1, )", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "[6.0.12, )", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "[6.0.12, )", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",
"Npgsql.EntityFrameworkCore.PostgreSQL": "[6.0.8, )", "Npgsql.EntityFrameworkCore.PostgreSQL": "6.0.8",
"Pomelo.EntityFrameworkCore.MySql": "[6.0.2, )", "Pomelo.EntityFrameworkCore.MySql": "6.0.2",
"linq2db.EntityFrameworkCore": "[6.11.0, )" "linq2db.EntityFrameworkCore": "6.11.0"
} }
}, },
"sharedweb": { "sharedweb": {
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"Core": "[2023.5.0, )", "Core": "2023.5.1",
"Infrastructure.Dapper": "[2023.5.0, )", "Infrastructure.Dapper": "2023.5.1",
"Infrastructure.EntityFramework": "[2023.5.0, )" "Infrastructure.EntityFramework": "2023.5.1"
} }
} }
} }

View File

@ -2797,7 +2797,7 @@
"type": "Project", "type": "Project",
"dependencies": { "dependencies": {
"AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1", "AutoMapper.Extensions.Microsoft.DependencyInjection": "12.0.1",
"Core": "2023.4.3", "Core": "2023.5.1",
"Microsoft.EntityFrameworkCore.Relational": "6.0.12", "Microsoft.EntityFrameworkCore.Relational": "6.0.12",
"Microsoft.EntityFrameworkCore.SqlServer": "6.0.12", "Microsoft.EntityFrameworkCore.SqlServer": "6.0.12",
"Microsoft.EntityFrameworkCore.Sqlite": "6.0.12", "Microsoft.EntityFrameworkCore.Sqlite": "6.0.12",