Skip to content

Commit

Permalink
HOTFIX: add missing commit to previous hotfix (#1868)
Browse files Browse the repository at this point in the history
* add ignorecycles to serializer.

* bump hotfix version.
  • Loading branch information
devinleighsmith authored Aug 5, 2022
1 parent f0c450b commit f62d297
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions backend/api/Pims.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<UserSecretsId>0ef6255f-9ea0-49ec-8c65-c172304b4926</UserSecretsId>
<Version>2.1.3-32.28</Version>
<AssemblyVersion>2.1.3.32</AssemblyVersion>
<Version>2.1.4-32.29</Version>
<AssemblyVersion>2.1.4.32</AssemblyVersion>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<ProjectGuid>16BC0468-78F6-4C91-87DA-7403C919E646</ProjectGuid>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "frontend",
"version": "2.1.3-32.28",
"version": "2.1.4-32.29",
"private": true,
"dependencies": {
"@bcgov/bc-sans": "1.0.1",
Expand Down
2 changes: 2 additions & 0 deletions tools/keycloak/sync/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.IdentityModel.Tokens.Jwt;
using System.IO;
using System.Text.Json;
using System.Text.Json.Serialization;
using System.Threading.Tasks;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
Expand Down Expand Up @@ -49,6 +50,7 @@ static async Task<int> Main(string[] args)
options.PropertyNamingPolicy = JsonNamingPolicy.CamelCase;
if (Boolean.TryParse(config["Serialization:Json:WriteIndented"], out bool writeIndented))
options.WriteIndented = writeIndented;
options.ReferenceHandler = ReferenceHandler.IgnoreCycles;
})
.AddSingleton<IConfiguration>(config)
.AddLogging(options =>
Expand Down

0 comments on commit f62d297

Please sign in to comment.