Skip to content

Commit

Permalink
Rel idm support (#711)
Browse files Browse the repository at this point in the history
* Release IDM support

* Bump utils
  • Loading branch information
einarmo authored Sep 17, 2024
1 parent 0679249 commit dfd4ab8
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Extractor/Extractor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AdysTech.InfluxDB.Client.Net.Core" Version="0.25.0" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.0" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Client" Version="1.5.374.78" />
<PackageReference Include="OPCFoundation.NetStandard.Opc.Ua.Configuration" Version="1.5.374.78" />
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.0" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.1" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="MQTTnet" Version="4.3.7.1207" />
<PackageReference Include="Google.Protobuf" Version="3.28.0" />
Expand Down
2 changes: 1 addition & 1 deletion Server/Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<None Include="$(SolutionDir)config\**" CopyToOutputDirectory="Always" LinkBase="config\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.0" />
<PackageReference Include="Cognite.ExtractorUtils" Version="1.26.1" />
<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" />
Expand Down
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.0" />
<PackageReference Include="Cognite.Extractor.Testing" Version="1.26.1" />
<PackageReference Include="coverlet.msbuild" Version="6.0.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
5 changes: 5 additions & 0 deletions manifest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,11 @@ schema:
- "https://raw.githubusercontent.com/"

versions:
"2.31.0":
description: Support for writing timeseries to the core data models.
changelog:
added:
- Support for writing time series to the core data models.
"2.30.4":
description: Fix some minor issues related to retrying failed pushes to CDF.
changelog:
Expand Down
10 changes: 9 additions & 1 deletion schema/cognite_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Configuration for pushing data to Cognite Data Fusion (CDF)",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/cognite_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.1/schema/cognite_config.schema.json"
}
],
"unevaluatedProperties": false,
Expand Down Expand Up @@ -89,6 +89,14 @@
"relationships": {
"type": "boolean",
"description": "Set to `true` to enable creating relationships from OPC UA references. Requires [`extraction.relationships`](#extraction.relationships) to be enabled."
},
"space": {
"type": "string",
"description": "Data modeling space to write to. If this is set, metadata is written to the core data models instead of to CDF Clean. Note that only timeseries are currently supported. Nodes will be created in the CogniteExtractorTimeSeries view in the industrial data models."
},
"source": {
"type": "string",
"description": "External ID of the `source` that created core data model time series will be tied to. If this is not specified, it defaults to either `OPC_UA:[source.endpoint-url]` or `OPC_UA_NODESET:[source.node-set-source.nodesets[LAST].[file-name or url]`"
}
}
},
Expand Down
2 changes: 1 addition & 1 deletion schema/logger_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Configure logging to console or file",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/logger_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.1/schema/logger_config.schema.json"
}
],
"unevaluatedProperties": false,
Expand Down
2 changes: 1 addition & 1 deletion schema/state_storage_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"unevaluatedProperties": false,
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/state_store_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.1/schema/state_store_config.schema.json"
}
],
"properties": {
Expand Down
2 changes: 1 addition & 1 deletion schema/ua_retries_config.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"description": "Configuration for retries on OPC-UA service calls",
"allOf": [
{
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.19.0/schema/retry_config.schema.json"
"$ref": "https://raw.githubusercontent.com/cognitedata/dotnet-extractor-utils/v1.26.1/schema/retry_config.schema.json"
}
],
"unevaluatedProperties": false,
Expand Down

0 comments on commit dfd4ab8

Please sign in to comment.