Skip to content

Commit

Permalink
Merge pull request #1316 from rudderlabs/release/v1.71.0
Browse files Browse the repository at this point in the history
chore(release): pull release/v1.71.0 into main
  • Loading branch information
aashishmalik authored Apr 19, 2024
2 parents bdc468a + 662a10c commit 5320178
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

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.71.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.70.1...v1.71.0) (2024-04-15)


### Features

* add connectionMode for all sourceTypes in dest def for all destinations ([#1271](https://github.com/rudderlabs/rudder-config-schema/issues/1271)) ([d2420e3](https://github.com/rudderlabs/rudder-config-schema/commit/d2420e354873fdce8476d7792e9c84c5a2c0934e))
* make regex mandatory for required textInputs ([#1289](https://github.com/rudderlabs/rudder-config-schema/issues/1289)) ([ce6eaa1](https://github.com/rudderlabs/rudder-config-schema/commit/ce6eaa182b34be31871aabd1f040d1318ec0b343))

### [1.70.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.70.0...v1.70.1) (2024-04-08)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rudder-config-schema",
"version": "1.70.1",
"version": "1.71.0",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
4 changes: 4 additions & 0 deletions src/configurations/destinations/mp/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$"
},
"apiSecret": {
"type": "string",
"pattern": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$"
},
"serviceAccountUserName": {
"type": "string"
},
Expand Down
10 changes: 10 additions & 0 deletions src/configurations/destinations/mp/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,16 @@
"placeholder": "c24f56ed8172XXXX6de5a5f0befe8b92",
"secret": true
},
{
"type": "textInput",
"label": "API Secret",
"value": "apiSecret",
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{0,100})$",
"regexErrorMessage": "Invalid API Secret",
"required": false,
"placeholder": "f8a911adfbb6XXXXc43cdfe29e912a90",
"secret": true
},
{
"type": "textInput",
"label": "Service Account Username",
Expand Down

0 comments on commit 5320178

Please sign in to comment.