From 016e82250c08dfd0db12fdb107905a25a746a9e8 Mon Sep 17 00:00:00 2001 From: Sandeep Digumarty Date: Tue, 24 Sep 2024 16:18:08 +0530 Subject: [PATCH 1/2] feat(fb_custom_audience): hide particular fields from ui config when VDMv2 is enabled (#1706) --- .../fb_custom_audience/ui-config.json | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/src/configurations/destinations/fb_custom_audience/ui-config.json b/src/configurations/destinations/fb_custom_audience/ui-config.json index 2dbe5c9d1..c399a702b 100644 --- a/src/configurations/destinations/fb_custom_audience/ui-config.json +++ b/src/configurations/destinations/fb_custom_audience/ui-config.json @@ -464,7 +464,22 @@ ], "default": "NA" } - ] + ], + "preRequisites": { + "fields": [ + { + "configKey": "connectionMode.cloud", + "value": "cloud" + } + ], + "prerequisitesCondition": "or", + "featureFlags": [ + { + "configKey": "AMP_vdm-next", + "value": false + } + ] + } } ] }, From c84793f04c5e5939e18a7ca1151b18b42e5de5bb Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Tue, 24 Sep 2024 12:31:08 +0000 Subject: [PATCH 2/2] chore(release): 1.93.0 --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faaa38436..def1a0688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +## [1.93.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.92.1...v1.93.0) (2024-09-24) + + +### Features + +* **fb_custom_audience:** hide particular fields from ui config when VDMv2 is enabled ([#1706](https://github.com/rudderlabs/rudder-config-schema/issues/1706)) ([016e822](https://github.com/rudderlabs/rudder-config-schema/commit/016e82250c08dfd0db12fdb107905a25a746a9e8)) + ### [1.92.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.92.0...v1.92.1) (2024-09-20) diff --git a/package-lock.json b/package-lock.json index fa34d5a0b..60d2003ff 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rudder-config-schema", - "version": "1.92.1", + "version": "1.93.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rudder-config-schema", - "version": "1.92.1", + "version": "1.93.0", "license": "MIT", "dependencies": { "ajv": "^8.12.0", diff --git a/package.json b/package.json index 3dbd3ecdb..6954907a2 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rudder-config-schema", - "version": "1.92.1", + "version": "1.93.0", "description": "", "main": "src/index.ts", "private": true,