Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [Version 1.6.2](https://github.com/dataiku/dss-plugin-api-connect/releases/tag/v1.6.2) - Feature and bugfix - 2026-08-03

- Fix issue with empty cell(s) in boolean columns of the recipe's input dataset

## [Version 1.6.1](https://github.com/dataiku/dss-plugin-api-connect/releases/tag/v1.6.1) - Feature and bugfix - 2026-07-27

- Fix templating for multiform body
Expand Down
2 changes: 1 addition & 1 deletion custom-recipes/api-connect/recipe.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def get_partitioning_keys(id_list, dku_flow_variables):
input_parameters_dataset = dataiku.Dataset(input_A_names[0])
partitioning_keys = get_partitioning_keys(input_parameters_dataset, dku_flow_variables)
custom_key_values.update(partitioning_keys)
input_parameters_dataframe = input_parameters_dataset.get_dataframe(infer_with_pandas=False, use_nullable_integers=True)
input_parameters_dataframe = input_parameters_dataset.get_dataframe(infer_with_pandas=False, use_nullable_integers=True, bool_as_str=True)
backoff_type, initial_delay, maximum_number_of_retries, maximum_duration_of_retry, status_codes_to_retry = get_retry_handler_parameters_from_config(config)
retry_handler = None
if backoff_type:
Expand Down
2 changes: 1 addition & 1 deletion plugin.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "api-connect",
"version": "1.6.1",
"version": "1.6.2",
"meta": {
"label": "API Connect",
"description": "Retrieve data from any REST API",
Expand Down
2 changes: 1 addition & 1 deletion python-lib/api_connect_dku_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ class DKUConstants(object):
API_RESPONSE_KEY = "api_response"
FORBIDDEN_KEYS = ["token", "password", "api_key_value", "secure_token", "mtls_key_path", "mtls_certificate_path"]
FORM_DATA_BODY_FORMAT = "FORM_DATA"
PLUGIN_VERSION = "1.6.1"
PLUGIN_VERSION = "1.6.2"
RAW_BODY_FORMAT = "RAW"
MULTIPART_FORM_DATA_BODY_FORMAT = "MULTIPART_FORM_DATA"
REPONSE_ERROR_KEY = "dku_error"