Skip to content

Commit

Permalink
fix: updated transformation (#331)
Browse files Browse the repository at this point in the history
* fix: updated transformation

* build: bump
  • Loading branch information
doctrino authored Mar 19, 2024
1 parent 0f078b8 commit b435507
Show file tree
Hide file tree
Showing 5 changed files with 97 additions and 77 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.PHONY: run-explorer run-tests run-linters build-ui build-python build-docker run-docker compose-up

version="0.68.0"
version="0.68.1"
run-explorer:
@echo "Running explorer API server..."
# open "http://localhost:8000/static/index.html" || true
Expand Down
2 changes: 1 addition & 1 deletion cognite/neat/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.68.0"
__version__ = "0.68.1"
160 changes: 89 additions & 71 deletions cognite/neat/workflows/examples/Export DMS/workflow.yaml
Original file line number Diff line number Diff line change
@@ -1,71 +1,89 @@
configs: []
description: null
implementation_module: null
name: Export DMS
steps:
- complex_configs: {}
configs: {}
description: null
enabled: true
id: step_861205
label: Upload Rules Spreadsheet
max_retries: 0
method: null
params:
file_type: rules
retry_delay: 3
stype: file_uploader
system_component_id: null
transition_to:
- step_295479
trigger: true
ui_config:
pos_x: 629
pos_y: 57
- complex_configs: {}
configs:
File name: ''
Report formatter: BasicHTML
Role: infer
description: null
enabled: true
id: step_295479
label: Validate
max_retries: 0
method: ExcelToRules
params: {}
retry_delay: 3
stype: stdstep
system_component_id: null
transition_to:
- step_50885
trigger: false
ui_config:
pos_x: 630
pos_y: 180
- complex_configs:
Components:
containers: true
data_models: true
spaces: true
views: true
configs:
Dry run: 'False'
Existing component handling: update
Multi-space components create: 'True'
description: null
enabled: true
id: step_50885
label: Export Data Model to CDF
max_retries: 0
method: RulesToDMS
params: {}
retry_delay: 3
stype: stdstep
system_component_id: null
transition_to: []
trigger: false
ui_config:
pos_x: 630
pos_y: 274
system_components: []
configs: []
description: null
implementation_module: null
name: Export DMS
steps:
- complex_configs: {}
configs: {}
description: null
enabled: true
id: step_861205
label: Upload Rules Spreadsheet
max_retries: 0
method: null
params:
file_type: rules
retry_delay: 3
stype: file_uploader
system_component_id: null
transition_to:
- step_295479
trigger: true
ui_config:
pos_x: 629
pos_y: 57
- complex_configs: {}
configs:
File name: ''
Report formatter: BasicHTML
Role: infer
description: null
enabled: true
id: step_295479
label: Validate
max_retries: 0
method: ExcelToRules
params: {}
retry_delay: 3
stype: stdstep
system_component_id: null
transition_to:
- step_50885
trigger: false
ui_config:
pos_x: 629
pos_y: 161
- complex_configs:
Components:
containers: true
data_models: true
spaces: true
views: true
configs:
Dry run: 'False'
Existing component handling: update
Multi-space components create: 'True'
description: null
enabled: true
id: step_50885
label: Export Data Model to CDF
max_retries: 0
method: RulesToDMS
params: {}
retry_delay: 3
stype: stdstep
system_component_id: null
transition_to:
- step_171560
trigger: false
ui_config:
pos_x: 629
pos_y: 243
- complex_configs: {}
configs: {}
description: null
enabled: true
id: step_171560
label: Export Transformations
max_retries: 0
method: RulesToCDFTransformations
params: {}
retry_delay: 3
stype: stdstep
system_component_id: null
transition_to: []
trigger: false
ui_config:
pos_x: 629
pos_y: 342
system_components: []
8 changes: 5 additions & 3 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,11 @@ Changes are grouped as follows:
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [0.68.1] - 19-03-24
### Changed

* Default workflow `Export DMS` now also exports transformations and raw tables.

## [0.68.0] - 19-03-24
Multiple fixes and features for the upcoming v1.0.0 release.
## Added
Expand All @@ -36,9 +41,6 @@ Multiple fixes and features for the upcoming v1.0.0 release.
* It was not releasing the Excel file after reading it.
* Warnings were not captured.
* Pydantic errors were not captured.
*
* Replaced obsolete `dataModelID` Metadata filed to `external_id`


## [0.67.5] - 14-03-24
## Fixed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cognite-neat"
version = "0.68.0"
version = "0.68.1"
readme = "README.md"
description = "Knowledge graph transformation"
authors = [
Expand Down

0 comments on commit b435507

Please sign in to comment.