From 808c3d2a844a8bb135f2ddbd1feec8d4f95659a7 Mon Sep 17 00:00:00 2001 From: Michael Kret Date: Wed, 10 Jan 2024 10:35:03 +0200 Subject: [PATCH] :zap: updated breaking-changes --- packages/cli/BREAKING-CHANGES.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/packages/cli/BREAKING-CHANGES.md b/packages/cli/BREAKING-CHANGES.md index c947c30d65bdf..db2ae5269f854 100644 --- a/packages/cli/BREAKING-CHANGES.md +++ b/packages/cli/BREAKING-CHANGES.md @@ -10,12 +10,29 @@ The flag `N8N_CACHE_ENABLED` was removed. The cache is now always enabled. Additionally, expressions in credentials now follow the paired item, so if you have multiple input items, n8n will try to pair the matching row to fill in the credential details. +In the Monday.com Node, due to API changes, the data structure of entries in `column_values` array has changed + ### When is action necessary? If you are using the flag `N8N_CACHE_ENABLED`, remove it from your settings. In regards to credentials, if you use expression in credentials, you might want to revisit them. Previously, n8n would stick to the first item only, but now it will try to match the proper paired item. +If you are using the Monday.com node and refering to `column_values` property, check in table below if you are using any of the affected properties of its entries. + +| Resource | Operation | Previous | New | +| ---------- | ------------------- | --------------- | ------------------- | +| Board | Get | owner | owners | +| Board | Get All | owner | owners | +| Board Item | Get | title | column.title | +| Board Item | Get All | title | column.title | +| Board Item | Get By Column Value | title | column.title | +| Board Item | Get | additional_info | column.settings_str | +| Board Item | Get All | additional_info | column.settings_str | +| Board Item | Get By Column Value | additional_info | column.settings_str | + +\*column.settings_str is not a complete equivalent additional_info + ## 1.22.0 ### What changed?