Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into update_uniconfig_rpcs
Browse files Browse the repository at this point in the history
Signed-off-by: Jakub Boguščiak <[email protected]>
  • Loading branch information
jbogusciak committed Jun 7, 2024
2 parents 861f261 + 8c33439 commit e0c3af6
Show file tree
Hide file tree
Showing 6 changed files with 170 additions and 182 deletions.
4 changes: 4 additions & 0 deletions inventory/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,7 @@
# 1.2.0
- Added 'fail_on_missing_label' boolean parameter to the INVENTORY_get_labels_id worker input.
- Controls the behavior of the worker when a label is not found.

# 1.2.1
- Updated inventory AddDevice and UpdateDevice settings, so they can also contain empty values.
Useful when adding devices that have failed during the workflow.
4 changes: 2 additions & 2 deletions inventory/python/frinx_worker/inventory/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ class InventoryAddDevice(WorkerImpl):
)

class ExecutionProperties(TaskExecutionProperties):
exclude_empty_inputs: bool = True
exclude_empty_inputs: bool = False
transform_string_to_json_valid: bool = True

class WorkerDefinition(TaskDefinition):
Expand Down Expand Up @@ -870,7 +870,7 @@ class InventoryUpdateDevice(WorkerImpl):
)

class ExecutionProperties(TaskExecutionProperties):
exclude_empty_inputs: bool = True
exclude_empty_inputs: bool = False
transform_string_to_json_valid: bool = True

class WorkerDefinition(TaskDefinition):
Expand Down
2 changes: 1 addition & 1 deletion inventory/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ packages = [{ include = "frinx_worker" }]
name = "frinx-inventory-worker"
description = "Conductor worker for Frinx Device Inventory"
authors = ["Jozef Volak <[email protected]>"]
version = "1.2.0"
version = "1.2.1"
readme = ["README.md", "CHANGELOG.md", "RELEASE.md"]
keywords = ["frinx-machine", "device inventory", "worker"]
license = "Apache 2.0"
Expand Down
3 changes: 3 additions & 0 deletions uniconfig/python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,7 @@
- Fixed closed_transactions workflow output type (it must be string).

# 2.3.2
- Update Inventory properties and bump Uniconfig API.

# 2.3.3
- Fix Device Discovery RPC based on new OpenAPI model.
Loading

0 comments on commit e0c3af6

Please sign in to comment.