diff --git a/CHANGELOG.md b/CHANGELOG.md index d271b7cf8..e02c2e9c3 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.102.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.101.1...v1.102.0) (2025-01-20) + + +### Features + +* **http:** add urlPreview custom field to ui-config ([#1869](https://github.com/rudderlabs/rudder-config-schema/issues/1869)) ([41be203](https://github.com/rudderlabs/rudder-config-schema/commit/41be20376268251ebe06c6dd909f0e8752006647)) + ### [1.101.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.101.0...v1.101.1) (2025-01-14) ## [1.101.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.100.0...v1.101.0) (2025-01-14) diff --git a/package-lock.json b/package-lock.json index 2d278bffc..118bf7f78 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rudder-config-schema", - "version": "1.101.1", + "version": "1.102.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rudder-config-schema", - "version": "1.101.1", + "version": "1.102.0", "license": "MIT", "dependencies": { "ajv": "^8.12.0", diff --git a/package.json b/package.json index 69320a282..556216481 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rudder-config-schema", - "version": "1.101.1", + "version": "1.102.0", "description": "", "main": "src/index.ts", "private": true, diff --git a/src/configurations/destinations/mp/db-config.json b/src/configurations/destinations/mp/db-config.json index b0b7ff7fb..298fadbe9 100644 --- a/src/configurations/destinations/mp/db-config.json +++ b/src/configurations/destinations/mp/db-config.json @@ -109,8 +109,7 @@ "useUserDefinedPageEventName", "userDefinedPageEventTemplate", "useUserDefinedScreenEventName", - "userDefinedScreenEventTemplate", - "dropTraitsInTrackEvent" + "userDefinedScreenEventTemplate" ], "android": [ "consentManagement", diff --git a/src/configurations/destinations/mp/schema.json b/src/configurations/destinations/mp/schema.json index 1ef77ae95..eabd4e256 100644 --- a/src/configurations/destinations/mp/schema.json +++ b/src/configurations/destinations/mp/schema.json @@ -39,10 +39,6 @@ "type": "boolean", "default": false }, - "dropTraitsInTrackEvent": { - "type": "boolean", - "default": false - }, "people": { "type": "boolean", "default": false diff --git a/src/configurations/destinations/mp/ui-config.json b/src/configurations/destinations/mp/ui-config.json index 09f2604dd..6960a5dd5 100644 --- a/src/configurations/destinations/mp/ui-config.json +++ b/src/configurations/destinations/mp/ui-config.json @@ -162,28 +162,6 @@ } ] }, - { - "title": "Track Settings", - "note": "Set how you want to send your track calls to Mixpanel", - "icon": "file", - "fields": [ - { - "type": "checkbox", - "label": "Drop Traits", - "configKey": "dropTraitsInTrackEvent", - "note": "Drop traits from event property in track call", - "default": false, - "preRequisites": { - "fields": [ - { - "configKey": "connectionModes.cloud", - "value": true - } - ] - } - } - ] - }, { "title": "Mixpanel Configuration Settings", "fields": [ diff --git a/test/data/validation/destinations/mp.json b/test/data/validation/destinations/mp.json index 93294b00f..34054629c 100644 --- a/test/data/validation/destinations/mp.json +++ b/test/data/validation/destinations/mp.json @@ -741,28 +741,5 @@ "ketchConsentPurposes.web must be array", "ketchConsentPurposes.unity.0 must be object" ] - }, - { - "config": { - "token": "dummy-token", - "dataResidency": "us", - "people": false, - "setAllTraitsByDefault": false, - "consolidatedPageCalls": true, - "trackCategorizedPages": false, - "trackNamedPages": false, - "crossSubdomainCookie": false, - "persistence": "localStorage", - "secureCookie": false, - "eventFilteringOption": "disable", - "useNativeSDK": { - "web": false - }, - "strictMode": false, - "ignoreDnt": true, - "dropTraitsInTrackEvent": "inValid" - }, - "result": false, - "err": ["dropTraitsInTrackEvent must be boolean"] } ]