Skip to content

Commit

Permalink
chore(deps): update nuget non-major dependencies (main) (#672)
Browse files Browse the repository at this point in the history
* chore(deps): update nuget non-major dependencies

* Fixes test failure by updating openapi spec

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Daniel Skovli <[email protected]>
  • Loading branch information
renovate[bot] and danielskovli authored Jun 11, 2024
1 parent 3b7429d commit f858d9c
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Altinn.App.Api/Altinn.App.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

<ItemGroup>
<PackageReference Include="Altinn.Common.PEP" Version="4.0.0" />
<PackageReference Include="Altinn.Platform.Storage.Interface" Version="3.25.0" />
<PackageReference Include="Altinn.Platform.Storage.Interface" Version="3.26.0" />
<PackageReference Include="Microsoft.FeatureManagement.AspNetCore" Version="3.3.1" />
<PackageReference Include="OpenTelemetry.Exporter.OpenTelemetryProtocol" Version="1.8.1" />
<PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.8.1" />
Expand Down
2 changes: 1 addition & 1 deletion src/Altinn.App.Core/Altinn.App.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageReference Include="Altinn.Common.EFormidlingClient" Version="1.3.3" />
<PackageReference Include="Altinn.Common.PEP" Version="4.0.0" />
<PackageReference Include="Altinn.Platform.Models" Version="1.6.0" />
<PackageReference Include="Altinn.Platform.Storage.Interface" Version="3.25.0" />
<PackageReference Include="Altinn.Platform.Storage.Interface" Version="3.26.0" />
<PackageReference Include="JsonPatch.Net" Version="3.1.0" />
<PackageReference Include="JWTCookieAuthentication" Version="3.0.1" />
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
Expand Down
4 changes: 2 additions & 2 deletions test/Altinn.App.Api.Tests/Altinn.App.Api.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.5" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.6" />
<PackageReference Include="Microsoft.AspNetCore.TestHost" Version="8.0.6" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.Testing" Version="8.5.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="Moq" Version="4.20.70" />
Expand Down
28 changes: 28 additions & 0 deletions test/Altinn.App.Api.Tests/OpenApi/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -4838,6 +4838,13 @@
},
"nullable": true
},
"metadata": {
"type": "array",
"items": {
"$ref": "#/components/schemas/KeyValueEntry"
},
"nullable": true
},
"deleteStatus": {
"$ref": "#/components/schemas/DeleteStatus"
},
Expand Down Expand Up @@ -5078,6 +5085,13 @@
},
"nullable": true
},
"metadata": {
"type": "array",
"items": {
"$ref": "#/components/schemas/KeyValueEntry"
},
"nullable": true
},
"deleteStatus": {
"$ref": "#/components/schemas/DeleteStatus"
},
Expand Down Expand Up @@ -5610,6 +5624,20 @@
},
"additionalProperties": false
},
"KeyValueEntry": {
"type": "object",
"properties": {
"key": {
"type": "string",
"nullable": true
},
"value": {
"type": "string",
"nullable": true
}
},
"additionalProperties": false
},
"Logo": {
"type": "object",
"properties": {
Expand Down
20 changes: 20 additions & 0 deletions test/Altinn.App.Api.Tests/OpenApi/swagger.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2993,6 +2993,11 @@ components:
items:
type: string
nullable: true
metadata:
type: array
items:
$ref: '#/components/schemas/KeyValueEntry'
nullable: true
deleteStatus:
$ref: '#/components/schemas/DeleteStatus'
fileScanResult:
Expand Down Expand Up @@ -3168,6 +3173,11 @@ components:
items:
type: string
nullable: true
metadata:
type: array
items:
$ref: '#/components/schemas/KeyValueEntry'
nullable: true
deleteStatus:
$ref: '#/components/schemas/DeleteStatus'
fileScanResult:
Expand Down Expand Up @@ -3551,6 +3561,16 @@ components:
$ref: '#/components/schemas/PatchOperation'
nullable: true
additionalProperties: false
KeyValueEntry:
type: object
properties:
key:
type: string
nullable: true
value:
type: string
nullable: true
additionalProperties: false
Logo:
type: object
properties:
Expand Down

0 comments on commit f858d9c

Please sign in to comment.