Skip to content

Commit

Permalink
Merge pull request #1700 from rudderlabs/main
Browse files Browse the repository at this point in the history
chore(release): pull main into develop post release v1.92.1
  • Loading branch information
sanpj2292 authored Sep 20, 2024
2 parents 774bd43 + 609bbd6 commit 05bd608
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 6 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.92.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.92.0...v1.92.1) (2024-09-20)


### Bug Fixes

* kafka topic name regex ([#1698](https://github.com/rudderlabs/rudder-config-schema/issues/1698)) ([3583ce8](https://github.com/rudderlabs/rudder-config-schema/commit/3583ce8dcefead90ba10b7750bd5333e89dc41c3))
* set wunderkind accountId and instanceId as secret in ui ([#1697](https://github.com/rudderlabs/rudder-config-schema/issues/1697)) ([860a9bb](https://github.com/rudderlabs/rudder-config-schema/commit/860a9bb6e6e5d7aceacb83c6a0b7792e88705a71))

## [1.92.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.91.0...v1.92.0) (2024-09-19)


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.92.0",
"version": "1.92.1",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/kafka/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"label": "Topic Name",
"note": "Please enter the topic name",
"configKey": "topic",
"regex": "^[a-zA-Z0-9_\\-]{1,249}$",
"regex": "^[a-zA-Z0-9_.\\-]{1,249}$",
"regexErrorMessage": "Invalid Topic Name",
"placeholder": "e.g: test-topic"
}
Expand Down
6 changes: 4 additions & 2 deletions src/configurations/destinations/wunderkind/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"configKey": "accountID",
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$",
"regexErrorMessage": "Invalid Account ID",
"placeholder": "e.g. 599xx"
"placeholder": "e.g. 599xx",
"secret": true
},
{
"type": "textInput",
Expand All @@ -27,7 +28,8 @@
"configKey": "instanceID",
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|^(.{1,100})$",
"regexErrorMessage": "Invalid Instance ID",
"placeholder": "e.g. wr4xxx85m-1"
"placeholder": "e.g. wr4xxx85m-1",
"secret": true
},
{
"type": "textInput",
Expand Down
8 changes: 8 additions & 0 deletions test/data/validation/destinations/kafka.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,14 @@
},
"result": true
},
{
"config": {
"hostName": "rudder.com",
"port": "65535",
"topic": "test.Topic-1_2_3"
},
"result": true
},
{
"config": {
"hostName": "rudder.com",
Expand Down

0 comments on commit 05bd608

Please sign in to comment.