Skip to content

Commit 5132a67

Browse files
committed
Update to OnTopic 4.2.0
Among some feature updates, OnTopic 4.2.0 notably includes a fix for a bug in how versions are established (OnTopic-Library@90c83d4). This resolves a bug in OnTopic Editor where a user is unable to rollback to a version of a topic that was created prior to the last application reset. This was due to the `VersionHistory` being populated with a higher-precision version timestamp than used in SQL server; once once the the application was reset would the lower-precision value be retrieved from the database. Now, the version is initialized using the lower-precision value so that these are always synchronized.
1 parent bc4e0fc commit 5132a67

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

OnTopic.Editor.AspNetCore.Host/OnTopic.Editor.AspNetCore.Host.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="OnTopic" Version="4.1.0" />
11-
<PackageReference Include="OnTopic.ViewModels" Version="4.1.0" />
12-
<PackageReference Include="OnTopic.AspNetCore.Mvc" Version="4.1.0" />
13-
<PackageReference Include="OnTopic.Data.Caching" Version="4.1.0" />
14-
<PackageReference Include="OnTopic.Data.Sql" Version="4.1.0" />
10+
<PackageReference Include="OnTopic" Version="4.2.0" />
11+
<PackageReference Include="OnTopic.ViewModels" Version="4.2.0" />
12+
<PackageReference Include="OnTopic.AspNetCore.Mvc" Version="4.2.0" />
13+
<PackageReference Include="OnTopic.Data.Caching" Version="4.2.0" />
14+
<PackageReference Include="OnTopic.Data.Sql" Version="4.2.0" />
1515
</ItemGroup>
1616

1717
<ItemGroup>

OnTopic.Editor.AspNetCore/OnTopic.Editor.AspNetCore.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@
3030
<PrivateAssets>all</PrivateAssets>
3131
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3232
</PackageReference>
33-
<PackageReference Include="OnTopic" Version="4.1.0" />
33+
<PackageReference Include="OnTopic" Version="4.2.0" />
3434
<PackageReference Include="OnTopic.Data.Transfer" Version="1.1.0" />
35-
<PackageReference Include="OnTopic.ViewModels" Version="4.1.0" />
36-
<PackageReference Include="OnTopic.AspNetCore.Mvc" Version="4.1.0" />
35+
<PackageReference Include="OnTopic.ViewModels" Version="4.2.0" />
36+
<PackageReference Include="OnTopic.AspNetCore.Mvc" Version="4.2.0" />
3737
</ItemGroup>
3838

3939
<ItemGroup>

OnTopic.Editor.Models/OnTopic.Editor.Models.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
<PrivateAssets>all</PrivateAssets>
2828
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
2929
</PackageReference>
30-
<PackageReference Include="OnTopic" Version="4.1.0" />
30+
<PackageReference Include="OnTopic" Version="4.2.0" />
3131
<PackageReference Include="OnTopic.Data.Transfer" Version="1.1.0" />
32-
<PackageReference Include="OnTopic.ViewModels" Version="4.1.0" />
32+
<PackageReference Include="OnTopic.ViewModels" Version="4.2.0" />
3333
<PackageReference Include="System.Text.Json" Version="4.6.0" />
3434
</ItemGroup>
3535

0 commit comments

Comments
 (0)