Skip to content

Commit

Permalink
FEAT/REF: Update Pipeline packages + Use PopluateFrom instead of the …
Browse files Browse the repository at this point in the history
…now obsolete method PopulateFromDictionary
  • Loading branch information
Jamesr51d authored and justadreamer committed Dec 16, 2024
1 parent c6458b2 commit f1804ec
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FiftyOne.Pipeline.CloudRequestEngine" Version="4.4.115" />
<PackageReference Include="FiftyOne.Pipeline.CloudRequestEngine" Version="4.4.119" />
<PackageReference Include="System.Text.Json" Version="6.0.11" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ protected override void ProcessCloudEngine(IFlowData data, DeviceDataCloud aspec
});

var device = CreateAPVDictionary(propertyValues, Properties.ToList());
aspectData.PopulateFromDictionary(device);
aspectData.PopulateFrom(device);
}

protected override Type GetPropertyType(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ public override IReadOnlyDictionary<string, object> AsDictionary()
$"type {property.Type.Name}");
}
};
PopulateFromDictionary(dict);
PopulateFrom(dict);
_dictionaryPopulated = true;
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FiftyOne.Pipeline.Engines.FiftyOne" Version="4.4.116" />
<PackageReference Include="FiftyOne.Pipeline.Engines.FiftyOne" Version="4.4.119" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@

<ItemGroup>
<PackageReference Include="FiftyOne.Common.TestHelpers" Version="4.4.21" />
<PackageReference Include="FiftyOne.Pipeline.Engines.TestHelpers" Version="4.4.116" />
<PackageReference Include="FiftyOne.Pipeline.Web" Version="4.4.116" />
<PackageReference Include="FiftyOne.Pipeline.Engines.TestHelpers" Version="4.4.119" />
<PackageReference Include="FiftyOne.Pipeline.Web" Version="4.4.119" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
<PackageReference Include="coverlet.collector" Version="6.0.2">
Expand Down
2 changes: 1 addition & 1 deletion Tools/GenerateConfig/GenerateConfig.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="FiftyOne.Pipeline.Web" Version="4.4.116" />
<PackageReference Include="FiftyOne.Pipeline.Web" Version="4.4.119" />
<PackageReference Include="System.Text.Json" Version="6.0.11" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion performance-tests/performance-tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FiftyOne.Pipeline.Web" Version="4.4.116" />
<PackageReference Include="FiftyOne.Pipeline.Web" Version="4.4.119" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.36" />
</ItemGroup>

Expand Down

0 comments on commit f1804ec

Please sign in to comment.