Skip to content

Commit

Permalink
Merge branch 'feat/13686-support-access-packages-in-policy-editor-v1'…
Browse files Browse the repository at this point in the history
… of https://github.com/Altinn/altinn-studio into feat/13686-support-access-packages-in-policy-editor-v1
  • Loading branch information
mgunnerud committed Dec 16, 2024
2 parents ffef795 + 9b26240 commit 721671d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions backend/packagegroups/NuGet.props
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!-- Do not upgrade this package unless extensively tested-->
<PackageReference Update="LibGit2Sharp" Version="0.31.0" />
<PackageReference Update="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
<PackageReference Update="Microsoft.ApplicationInsights.Kubernetes" Version="7.0.0" />
<PackageReference Update="Microsoft.ApplicationInsights.Kubernetes" Version="7.0.1" />
<PackageReference Update="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Update="Microsoft.AspNetCore.DataProtection.AzureKeyVault" Version="3.1.24" />
<PackageReference Update="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
Expand All @@ -31,7 +31,7 @@
<PackageReference Update="Microsoft.AspNetCore.OpenApi" Version="9.0.0" />
<PackageReference Update="HtmlAgilityPack" Version="1.11.71" />
<PackageReference Update="Microsoft.DiaSymReader.Native" Version="1.7.0" />
<PackageReference Update="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.1" />
<PackageReference Update="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.2" />
<PackageReference Update="Microsoft.EntityFrameworkCore.Tools" Version="9.0.0" />
<PackageReference Update="Microsoft.FeatureManagement.AspNetCore" Version="3.5.0" />
<PackageReference Update="Scrutor" Version="4.2.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ namespace Designer.Tests.Helpers
public class PackageVersionHelperTests
{
[Theory]
[InlineData("Altinn.App.Api", true, "8.3.5")]
[InlineData("Altinn.App.Api", true, "8.3.8")]
[InlineData("NonExistingNuget", false)]
public void TryGetPackageVersionFromCsprojFile_GivenValidCsprojFile_ReturnsTrue(string packageName, bool expectedResult, string expectedVersion = "")
{
Expand Down
5 changes: 4 additions & 1 deletion renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
"ignorePaths": ["testdata/**", "src/**"],
"ignoreDeps": [
"Moq",
"Altinn.App.Core"
"Altinn.App.Core",
"Basic.Reference.Assemblies",
"Microsoft.CodeAnalysis.CSharp",
"Microsoft.CodeAnalysis.Common"
],
"schedule": ["before 07:00 on Monday"]
}
4 changes: 2 additions & 2 deletions testdata/AppTemplates/AspNet/App/App.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@
<RootNamespace>Altinn.App</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Altinn.App.Api" Version="8.3.5">
<PackageReference Include="Altinn.App.Api" Version="8.3.8">
<CopyToOutputDirectory>lib\$(TargetFramework)\*.xml</CopyToOutputDirectory>
</PackageReference>
<PackageReference Include="Altinn.App.Core" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.8.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.9.0" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\css\" />
Expand Down

0 comments on commit 721671d

Please sign in to comment.