diff --git a/CHANGELOG.md b/CHANGELOG.md index 458f7bce3..cc2b91a2e 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.97.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.97.0...v1.97.1) (2024-11-01) + + +### Bug Fixes + +* **MP:** now showing setOnceProperties in cloud mode also ([#1779](https://github.com/rudderlabs/rudder-config-schema/issues/1779)) ([760e5cb](https://github.com/rudderlabs/rudder-config-schema/commit/760e5cbcc43c4661a5f0c9bd3ae0762f8b3fb43e)) + ## [1.97.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.96.0...v1.97.0) (2024-10-25) diff --git a/package-lock.json b/package-lock.json index 93b491d2e..1c489a60a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "rudder-config-schema", - "version": "1.97.0", + "version": "1.97.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "rudder-config-schema", - "version": "1.97.0", + "version": "1.97.1", "license": "MIT", "dependencies": { "ajv": "^8.12.0", diff --git a/package.json b/package.json index 4d6ff06b8..73cc17f4e 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "rudder-config-schema", - "version": "1.97.0", + "version": "1.97.1", "description": "", "main": "src/index.ts", "private": true, diff --git a/src/configurations/destinations/mp/ui-config.json b/src/configurations/destinations/mp/ui-config.json index 2c6316ca9..70ca09310 100644 --- a/src/configurations/destinations/mp/ui-config.json +++ b/src/configurations/destinations/mp/ui-config.json @@ -188,6 +188,22 @@ "regex": "^(.{0,100})$", "regexErrorMessage": "Invalid Property Name", "placeholder": "e.g: Cart-Value" + }, + { + "type": "tagInput", + "configKey": "setOnceProperties", + "label": "Properties to set only once", + "note": [ + "Set this for those properties who's values are not supposed to change in profile level.", + { + "text": "Reference", + "link": "https://developer.mixpanel.com/reference/profile-set-property-once" + } + ], + "tagKey": "property", + "regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$", + "regexErrorMessage": "Invalid Property Name", + "placeholder": "e.g: joiningDate" } ] }, @@ -492,16 +508,6 @@ "regexErrorMessage": "Invalid Property Name", "placeholder": "e.g: residence" }, - { - "type": "tagInput", - "configKey": "setOnceProperties", - "label": "Properties to set only once", - "note": "Set this for those properties who's values are not supposed to change in profile level. Reference: https://developer.mixpanel.com/reference/profile-set-property-once", - "tagKey": "property", - "regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$", - "regexErrorMessage": "Invalid Property Name", - "placeholder": "e.g: joiningDate" - }, { "type": "tagInput", "configKey": "peopleProperties",