Skip to content

Commit

Permalink
Bump everything else
Browse files Browse the repository at this point in the history
  • Loading branch information
einarmo committed Oct 22, 2024
1 parent 2d15bcd commit 9abb086
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions Extractor/Extractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AdysTech.InfluxDB.Client.Net.Core" Version="0.25.0" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.1" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.27.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.5.374.118" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.374.78" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.PubSub" Version="1.5.374.78-beta" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.374.118" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.PubSub" Version="1.5.374.118-beta" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
<PackageReference Include="MQTTnet" Version="4.3.7.1207" />
<PackageReference Include="System.Text.Json" Version="8.0.5" />
Expand Down
4 changes: 4 additions & 0 deletions Extractor/SessionManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -520,6 +520,10 @@ private void ClientKeepAlive(ISession sender, KeepAliveEventArgs eventArgs)
}
});
}
else
{
log.LogWarning("Session manager is closed, not attempting to reconnect");
}
client.Callbacks.TaskScheduler.ScheduleTask(null, async (_) => await client.Callbacks.OnServerDisconnect(client));
}

Expand Down
2 changes: 1 addition & 1 deletion MQTTCDFBridge/MQTTCDFBridge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.1" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.27.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="MQTTnet" Version="4.3.7.1207" />
<PackageReference Include="Google.Protobuf" Version="3.28.2" />
Expand Down
8 changes: 4 additions & 4 deletions Server/Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<None Include="$(SolutionDir)config\**" CopyToOutputDirectory="Always" LinkBase="config\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.1" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.27.0" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Microsoft.NETCore.Platforms" Version="7.0.4" />
<PackageReference Include="MQTTnet" Version="4.3.7.1207" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.374.78" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.PubSub" Version="1.5.374.78-beta" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Server" Version="1.5.374.78" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.374.118" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.PubSub" Version="1.5.374.118-beta" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Server" Version="1.5.374.118" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion Test/Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Cognite.Extractor.Testing" Version="1.26.1" />
<PackageReference Include="Cognite.Extractor.Testing" Version="1.27.0" />
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down

0 comments on commit 9abb086

Please sign in to comment.