From 1f33b33e2f13f7f298a495af6fd3aed505e6119e Mon Sep 17 00:00:00 2001 From: Marcel Nellesen <nellesen@itc.rwth-aachen.de> Date: Mon, 9 Nov 2020 10:57:48 +0100 Subject: [PATCH] Fix: Updated dependencies --- src/Tree/App.config | 22 ++++++---- src/Tree/Controllers/TreeController.cs | 29 +++++++++++-- src/Tree/Startup.cs | 2 +- src/Tree/Tree.csproj | 56 ++++++++++++++------------ src/Tree/packages.config | 21 +++++----- 5 files changed, 83 insertions(+), 47 deletions(-) diff --git a/src/Tree/App.config b/src/Tree/App.config index 1fedf16..123c421 100644 --- a/src/Tree/App.config +++ b/src/Tree/App.config @@ -1,8 +1,8 @@ <?xml version="1.0" encoding="utf-8"?> <configuration> <configSections> - <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> - <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> + <!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 --> + <section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" /> </configSections> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" /> @@ -29,15 +29,15 @@ </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.IdentityModel.Logging" publicKeyToken="31bf3856ad364e35" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-6.6.0.0" newVersion="6.6.0.0" /> + <bindingRedirect oldVersion="0.0.0.0-6.7.1.0" newVersion="6.7.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.IdentityModel.Tokens" publicKeyToken="31bf3856ad364e35" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-6.6.0.0" newVersion="6.6.0.0" /> + <bindingRedirect oldVersion="0.0.0.0-6.7.1.0" newVersion="6.7.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.IdentityModel.Tokens.Jwt" publicKeyToken="31bf3856ad364e35" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-6.6.0.0" newVersion="6.6.0.0" /> + <bindingRedirect oldVersion="0.0.0.0-6.7.1.0" newVersion="6.7.1.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="System.Numerics.Vectors" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" /> @@ -149,7 +149,7 @@ </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Coscine.Database" publicKeyToken="767d77427707b70a" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-1.22.2.0" newVersion="1.22.2.0" /> + <bindingRedirect oldVersion="0.0.0.0-1.26.0.0" newVersion="1.26.0.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Extensions.Options" publicKeyToken="adb9793829ddae60" culture="neutral" /> @@ -173,7 +173,7 @@ </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Coscine.ApiCommons" publicKeyToken="af4c1345df96546b" culture="neutral" /> - <bindingRedirect oldVersion="0.0.0.0-1.9.0.0" newVersion="1.9.0.0" /> + <bindingRedirect oldVersion="0.0.0.0-1.10.0.0" newVersion="1.10.0.0" /> </dependentAssembly> <dependentAssembly> <assemblyIdentity name="Microsoft.Extensions.FileProviders.Abstractions" publicKeyToken="adb9793829ddae60" culture="neutral" /> @@ -199,6 +199,14 @@ <assemblyIdentity name="Microsoft.AspNetCore.StaticFiles" publicKeyToken="adb9793829ddae60" culture="neutral" /> <bindingRedirect oldVersion="0.0.0.0-2.2.0.0" newVersion="2.2.0.0" /> </dependentAssembly> + <dependentAssembly> + <assemblyIdentity name="linq2db" publicKeyToken="e41013125f9e410a" culture="neutral" /> + <bindingRedirect oldVersion="0.0.0.0-3.1.1.0" newVersion="3.1.1.0" /> + </dependentAssembly> + <dependentAssembly> + <assemblyIdentity name="Coscine.Database.T4" publicKeyToken="84b4c404a0696261" culture="neutral" /> + <bindingRedirect oldVersion="0.0.0.0-1.26.0.0" newVersion="1.26.0.0" /> + </dependentAssembly> </assemblyBinding> </runtime> </configuration> \ No newline at end of file diff --git a/src/Tree/Controllers/TreeController.cs b/src/Tree/Controllers/TreeController.cs index bd49e79..3775519 100644 --- a/src/Tree/Controllers/TreeController.cs +++ b/src/Tree/Controllers/TreeController.cs @@ -1,6 +1,6 @@ -using Coscine.Api.WaterbutlerHelper; -using Coscine.Api.WaterbutlerHelper.ReturnObjects; -using Coscine.Api.WaterbutlerHelper.Services; +using Coscine.WaterbutlerHelper; +using Coscine.WaterbutlerHelper.ReturnObjects; +using Coscine.WaterbutlerHelper.Services; using Coscine.ApiCommons; using Coscine.ApiCommons.Factories; using Coscine.Database.DataModel; @@ -86,7 +86,28 @@ namespace Coscine.Api.Tree.Controllers return check; } - var authHeader = _waterbutlerInterface.BuildAuthHeader(resource); + var resourceTypeOptions = new Dictionary<string, string>(); + if (resource.Type.DisplayName == "rds") + { + var data = new RDSResourceTypeModel().GetById((Guid)resource.ResourceTypeOptionId); + resourceTypeOptions.Add("bucketname", data.BucketName); + } + else if (resource.Type.DisplayName == "s3") + { + var data = new S3ResourceTypeModel().GetById((Guid)resource.ResourceTypeOptionId); + resourceTypeOptions.Add("accessKey", data.AccessKey); + resourceTypeOptions.Add("secretKey", data.SecretKey); + resourceTypeOptions.Add("bucketname", data.BucketName); + resourceTypeOptions.Add("resourceUrl", data.ResourceUrl); + } + else if (resource.Type.DisplayName == "gitlab") + { + var data = new GitlabResourceTypeModel().GetById((Guid)resource.ResourceTypeOptionId); + resourceTypeOptions.Add("token", data.Token); + resourceTypeOptions.Add("repositoryUrl", data.RepositoryUrl); + resourceTypeOptions.Add("repositoryNumber", data.RepositoryNumber.ToString()); + } + var authHeader = _waterbutlerInterface.BuildAuthHeader(resource.Type.DisplayName, resourceTypeOptions); if (authHeader == null) { diff --git a/src/Tree/Startup.cs b/src/Tree/Startup.cs index f098441..c9a0b79 100644 --- a/src/Tree/Startup.cs +++ b/src/Tree/Startup.cs @@ -1,4 +1,4 @@ -using Coscine.Api.WaterbutlerHelper.Services; +using Coscine.WaterbutlerHelper.Services; using Coscine.ApiCommons; using Microsoft.Extensions.DependencyInjection; using System; diff --git a/src/Tree/Tree.csproj b/src/Tree/Tree.csproj index 46dac5a..ed9f27b 100644 --- a/src/Tree/Tree.csproj +++ b/src/Tree/Tree.csproj @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.props" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" /> <Import Project="..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.props" Condition="Exists('..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.props')" /> <Import Project="..\packages\Microsoft.Extensions.ApiDescription.Server.3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('..\packages\Microsoft.Extensions.ApiDescription.Server.3.0.0\build\Microsoft.Extensions.ApiDescription.Server.props')" /> <Import Project="..\packages\Microsoft.AspNetCore.Mvc.Razor.Extensions.2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props" Condition="Exists('..\packages\Microsoft.AspNetCore.Mvc.Razor.Extensions.2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.props')" /> @@ -47,23 +48,29 @@ <Reference Include="Consul, Version=0.7.2.6, Culture=neutral, PublicKeyToken=20a6ad9a81df1d95, processorArchitecture=MSIL"> <HintPath>..\packages\Consul.0.7.2.6\lib\net45\Consul.dll</HintPath> </Reference> - <Reference Include="Coscine.Api.WaterbutlerHelper, Version=1.1.1.0, Culture=neutral, processorArchitecture=MSIL"> - <HintPath>..\packages\Coscine.Api.WaterbutlerHelper.1.1.1\lib\net461\Coscine.Api.WaterbutlerHelper.dll</HintPath> - </Reference> - <Reference Include="Coscine.ApiCommons, Version=1.9.0.0, Culture=neutral, PublicKeyToken=af4c1345df96546b, processorArchitecture=MSIL"> - <HintPath>..\packages\Coscine.ApiCommons.1.9.0\lib\net461\Coscine.ApiCommons.dll</HintPath> + <Reference Include="Coscine.ApiCommons, Version=1.10.0.0, Culture=neutral, PublicKeyToken=af4c1345df96546b, processorArchitecture=MSIL"> + <HintPath>..\packages\Coscine.ApiCommons.1.10.0\lib\net461\Coscine.ApiCommons.dll</HintPath> </Reference> <Reference Include="Coscine.Configuration, Version=1.5.0.0, Culture=neutral, PublicKeyToken=ce3d7a32d7dc1e5a, processorArchitecture=MSIL"> <HintPath>..\packages\Coscine.Configuration.1.5.0\lib\net461\Coscine.Configuration.dll</HintPath> </Reference> - <Reference Include="Coscine.Database, Version=1.22.2.0, Culture=neutral, PublicKeyToken=767d77427707b70a, processorArchitecture=MSIL"> - <HintPath>..\packages\Coscine.Database.1.22.2\lib\net461\Coscine.Database.dll</HintPath> + <Reference Include="Coscine.Database, Version=1.26.0.0, Culture=neutral, PublicKeyToken=767d77427707b70a, processorArchitecture=MSIL"> + <HintPath>..\packages\Coscine.Database.1.26.0\lib\net461\Coscine.Database.dll</HintPath> + </Reference> + <Reference Include="Coscine.Database.T4, Version=1.26.0.0, Culture=neutral, PublicKeyToken=84b4c404a0696261, processorArchitecture=MSIL"> + <HintPath>..\packages\Coscine.Database.1.26.0\lib\net461\Coscine.Database.T4.dll</HintPath> + </Reference> + <Reference Include="Coscine.JwtHandler, Version=1.1.0.0, Culture=neutral, processorArchitecture=MSIL"> + <HintPath>..\packages\Coscine.JwtHandler.1.1.0\lib\net461\Coscine.JwtHandler.dll</HintPath> </Reference> <Reference Include="Coscine.Logging, Version=1.2.0.0, Culture=neutral, PublicKeyToken=e1ed402bc3f6525e, processorArchitecture=MSIL"> <HintPath>..\packages\Coscine.Logging.1.2.0\lib\net461\Coscine.Logging.dll</HintPath> </Reference> - <Reference Include="Coscine.Metadata, Version=1.3.1.0, Culture=neutral, processorArchitecture=MSIL"> - <HintPath>..\packages\Coscine.Metadata.1.3.1\lib\net461\Coscine.Metadata.dll</HintPath> + <Reference Include="Coscine.Metadata, Version=1.4.0.0, Culture=neutral, processorArchitecture=MSIL"> + <HintPath>..\packages\Coscine.Metadata.1.4.0\lib\net461\Coscine.Metadata.dll</HintPath> + </Reference> + <Reference Include="Coscine.WaterbutlerHelper, Version=1.2.1.0, Culture=neutral, processorArchitecture=MSIL"> + <HintPath>..\packages\Coscine.WaterbutlerHelper.1.2.1-sprint-2020-20-0001\lib\net461\Coscine.WaterbutlerHelper.dll</HintPath> </Reference> <Reference Include="dotNetRDF, Version=2.5.1.0, Culture=neutral, PublicKeyToken=6055ffe4c97cc780, processorArchitecture=MSIL"> <HintPath>..\packages\dotNetRDF.2.5.1\lib\net40\dotNetRDF.dll</HintPath> @@ -72,16 +79,16 @@ <HintPath>..\packages\dotNetRDF.Data.Virtuoso.2.5.1\lib\net40\dotNetRDF.Data.Virtuoso.dll</HintPath> </Reference> <Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"> - <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath> + <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.dll</HintPath> </Reference> <Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL"> - <HintPath>..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath> + <HintPath>..\packages\EntityFramework.6.4.4\lib\net45\EntityFramework.SqlServer.dll</HintPath> </Reference> <Reference Include="HtmlAgilityPack, Version=1.11.17.0, Culture=neutral, PublicKeyToken=bd319b19eaf3b43a, processorArchitecture=MSIL"> <HintPath>..\packages\HtmlAgilityPack.1.11.17\lib\Net45\HtmlAgilityPack.dll</HintPath> </Reference> - <Reference Include="linq2db, Version=2.6.4.0, Culture=neutral, PublicKeyToken=e41013125f9e410a, processorArchitecture=MSIL"> - <HintPath>..\packages\linq2db.2.6.4\lib\net46\linq2db.dll</HintPath> + <Reference Include="linq2db, Version=3.1.1.0, Culture=neutral, PublicKeyToken=e41013125f9e410a, processorArchitecture=MSIL"> + <HintPath>..\packages\linq2db.3.1.1\lib\net46\linq2db.dll</HintPath> </Reference> <Reference Include="LinqKit, Version=1.1.17.0, Culture=neutral, PublicKeyToken=bc217f8844052a91, processorArchitecture=MSIL"> <HintPath>..\packages\LinqKit.1.1.17\lib\net45\LinqKit.dll</HintPath> @@ -329,11 +336,11 @@ <Reference Include="Microsoft.Extensions.WebEncoders, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> <HintPath>..\packages\Microsoft.Extensions.WebEncoders.2.2.0\lib\netstandard2.0\Microsoft.Extensions.WebEncoders.dll</HintPath> </Reference> - <Reference Include="Microsoft.IdentityModel.JsonWebTokens, Version=6.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\packages\Microsoft.IdentityModel.JsonWebTokens.6.6.0\lib\net461\Microsoft.IdentityModel.JsonWebTokens.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.JsonWebTokens, Version=6.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\packages\Microsoft.IdentityModel.JsonWebTokens.6.7.1\lib\net461\Microsoft.IdentityModel.JsonWebTokens.dll</HintPath> </Reference> - <Reference Include="Microsoft.IdentityModel.Logging, Version=6.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\packages\Microsoft.IdentityModel.Logging.6.6.0\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Logging, Version=6.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\packages\Microsoft.IdentityModel.Logging.6.7.1\lib\net461\Microsoft.IdentityModel.Logging.dll</HintPath> </Reference> <Reference Include="Microsoft.IdentityModel.Protocols, Version=5.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <HintPath>..\packages\Microsoft.IdentityModel.Protocols.5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.dll</HintPath> @@ -341,8 +348,8 @@ <Reference Include="Microsoft.IdentityModel.Protocols.OpenIdConnect, Version=5.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> <HintPath>..\packages\Microsoft.IdentityModel.Protocols.OpenIdConnect.5.3.0\lib\net461\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll</HintPath> </Reference> - <Reference Include="Microsoft.IdentityModel.Tokens, Version=6.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\packages\Microsoft.IdentityModel.Tokens.6.6.0\lib\net461\Microsoft.IdentityModel.Tokens.dll</HintPath> + <Reference Include="Microsoft.IdentityModel.Tokens, Version=6.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\packages\Microsoft.IdentityModel.Tokens.6.7.1\lib\net461\Microsoft.IdentityModel.Tokens.dll</HintPath> </Reference> <Reference Include="Microsoft.Net.Http.Headers, Version=2.2.0.0, Culture=neutral, PublicKeyToken=adb9793829ddae60, processorArchitecture=MSIL"> <HintPath>..\packages\Microsoft.Net.Http.Headers.2.2.0\lib\netstandard2.0\Microsoft.Net.Http.Headers.dll</HintPath> @@ -418,8 +425,8 @@ <Private>True</Private> </Reference> <Reference Include="System.Drawing" /> - <Reference Include="System.IdentityModel.Tokens.Jwt, Version=6.6.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> - <HintPath>..\packages\System.IdentityModel.Tokens.Jwt.6.6.0\lib\net461\System.IdentityModel.Tokens.Jwt.dll</HintPath> + <Reference Include="System.IdentityModel.Tokens.Jwt, Version=6.7.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"> + <HintPath>..\packages\System.IdentityModel.Tokens.Jwt.6.7.1\lib\net461\System.IdentityModel.Tokens.Jwt.dll</HintPath> </Reference> <Reference Include="System.IO.Compression, Version=4.2.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" /> <Reference Include="System.IO.FileSystem, Version=4.0.2.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL"> @@ -547,10 +554,6 @@ <Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.2.9.2\analyzers\dotnet\cs\Microsoft.CodeAnalysis.Analyzers.dll" /> <Analyzer Include="..\packages\Microsoft.CodeAnalysis.Analyzers.2.9.2\analyzers\dotnet\cs\Microsoft.CodeAnalysis.CSharp.Analyzers.dll" /> </ItemGroup> - <ItemGroup> - <Content Include="Microsoft.DiaSymReader.Native.amd64.dll" /> - <Content Include="Microsoft.DiaSymReader.Native.x86.dll" /> - </ItemGroup> <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> <Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild"> <PropertyGroup> @@ -568,8 +571,11 @@ <Error Condition="!Exists('..\packages\Microsoft.Extensions.ApiDescription.Server.3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Microsoft.Extensions.ApiDescription.Server.3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets'))" /> <Error Condition="!Exists('..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.props'))" /> <Error Condition="!Exists('..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.targets'))" /> + <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.props'))" /> + <Error Condition="!Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\EntityFramework.6.4.4\build\EntityFramework.targets'))" /> </Target> <Import Project="..\packages\Microsoft.AspNetCore.Mvc.Razor.Extensions.2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets" Condition="Exists('..\packages\Microsoft.AspNetCore.Mvc.Razor.Extensions.2.2.0\build\netstandard2.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.targets')" /> <Import Project="..\packages\Microsoft.Extensions.ApiDescription.Server.3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('..\packages\Microsoft.Extensions.ApiDescription.Server.3.0.0\build\Microsoft.Extensions.ApiDescription.Server.targets')" /> <Import Project="..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.targets" Condition="Exists('..\packages\NSwag.AspNetCore.13.6.2\build\NSwag.AspNetCore.targets')" /> + <Import Project="..\packages\EntityFramework.6.4.4\build\EntityFramework.targets" Condition="Exists('..\packages\EntityFramework.6.4.4\build\EntityFramework.targets')" /> </Project> \ No newline at end of file diff --git a/src/Tree/packages.config b/src/Tree/packages.config index d676ab3..1e968b2 100644 --- a/src/Tree/packages.config +++ b/src/Tree/packages.config @@ -1,17 +1,18 @@ <?xml version="1.0" encoding="utf-8"?> <packages> <package id="Consul" version="0.7.2.6" targetFramework="net461" /> - <package id="Coscine.Api.WaterbutlerHelper" version="1.1.1" targetFramework="net461" /> - <package id="Coscine.ApiCommons" version="1.9.0" targetFramework="net461" /> + <package id="Coscine.ApiCommons" version="1.10.0" targetFramework="net461" /> <package id="Coscine.Configuration" version="1.5.0" targetFramework="net461" /> - <package id="Coscine.Database" version="1.22.2" targetFramework="net461" /> + <package id="Coscine.Database" version="1.26.0" targetFramework="net461" /> + <package id="Coscine.JwtHandler" version="1.1.0" targetFramework="net461" /> <package id="Coscine.Logging" version="1.2.0" targetFramework="net461" /> - <package id="Coscine.Metadata" version="1.3.1" targetFramework="net461" /> + <package id="Coscine.Metadata" version="1.4.0" targetFramework="net461" /> + <package id="Coscine.WaterbutlerHelper" version="1.2.1-sprint-2020-20-0001" targetFramework="net461" /> <package id="dotNetRDF" version="2.5.1" targetFramework="net461" /> <package id="dotNetRDF.Data.Virtuoso" version="2.5.1" targetFramework="net461" /> - <package id="EntityFramework" version="6.2.0" targetFramework="net461" /> + <package id="EntityFramework" version="6.4.4" targetFramework="net461" /> <package id="HtmlAgilityPack" version="1.11.17" targetFramework="net461" /> - <package id="linq2db" version="2.6.4" targetFramework="net461" /> + <package id="linq2db" version="3.1.1" targetFramework="net461" /> <package id="linq2db.SqlServer" version="2.6.4" targetFramework="net461" /> <package id="linq2db.t4models" version="2.6.4" targetFramework="net461" /> <package id="LinqKit" version="1.1.17" targetFramework="net461" /> @@ -102,11 +103,11 @@ <package id="Microsoft.Extensions.Options" version="3.1.5" targetFramework="net461" /> <package id="Microsoft.Extensions.Primitives" version="3.1.5" targetFramework="net461" /> <package id="Microsoft.Extensions.WebEncoders" version="2.2.0" targetFramework="net461" /> - <package id="Microsoft.IdentityModel.JsonWebTokens" version="6.6.0" targetFramework="net461" /> - <package id="Microsoft.IdentityModel.Logging" version="6.6.0" targetFramework="net461" /> + <package id="Microsoft.IdentityModel.JsonWebTokens" version="6.7.1" targetFramework="net461" /> + <package id="Microsoft.IdentityModel.Logging" version="6.7.1" targetFramework="net461" /> <package id="Microsoft.IdentityModel.Protocols" version="5.3.0" targetFramework="net461" /> <package id="Microsoft.IdentityModel.Protocols.OpenIdConnect" version="5.3.0" targetFramework="net461" /> - <package id="Microsoft.IdentityModel.Tokens" version="6.6.0" targetFramework="net461" /> + <package id="Microsoft.IdentityModel.Tokens" version="6.7.1" targetFramework="net461" /> <package id="Microsoft.Net.Http.Headers" version="2.2.0" targetFramework="net461" /> <package id="Microsoft.Win32.Registry" version="4.5.0" targetFramework="net461" /> <package id="Namotion.Reflection" version="1.0.11" targetFramework="net461" /> @@ -134,7 +135,7 @@ <package id="System.Diagnostics.DiagnosticSource" version="4.5.1" targetFramework="net461" /> <package id="System.Diagnostics.StackTrace" version="4.3.0" targetFramework="net461" /> <package id="System.Dynamic.Runtime" version="4.3.0" targetFramework="net461" /> - <package id="System.IdentityModel.Tokens.Jwt" version="6.6.0" targetFramework="net461" /> + <package id="System.IdentityModel.Tokens.Jwt" version="6.7.1" targetFramework="net461" /> <package id="System.IO" version="4.3.0" targetFramework="net461" /> <package id="System.IO.FileSystem" version="4.3.0" targetFramework="net461" /> <package id="System.IO.FileSystem.Primitives" version="4.3.0" targetFramework="net461" /> -- GitLab