Skip to content

Commit

Permalink
Merge pull request #915 from rudderlabs/hotfix-release/v1.50.0
Browse files Browse the repository at this point in the history
chore(release): pull hotfix-release/v1.50.0 into main
  • Loading branch information
ItsSudip authored Sep 19, 2023
2 parents a1236c9 + ef237be commit 69a778b
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.50.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.49.2...v1.50.0) (2023-09-19)


### Features

* **appcues:** proxyurl support ([5883d55](https://github.com/rudderlabs/rudder-config-schema/commit/5883d558b00104e044313d454dc5309813e13916))

### [1.49.2](https://github.com/rudderlabs/rudder-config-schema/compare/v1.49.1...v1.49.2) (2023-09-12)

### [1.49.1](https://github.com/rudderlabs/rudder-config-schema/compare/v1.49.0...v1.49.1) (2023-09-11)
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.49.2",
"version": "1.50.0",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
15 changes: 12 additions & 3 deletions src/configurations/destinations/appcues/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"saveDestinationResponse": true,
"includeKeys": [
"accountId",
"nativeSdkUrl",
"blacklistedEvents",
"whitelistedEvents",
"oneTrustCookieCategories",
Expand All @@ -26,7 +27,12 @@
"cordova",
"shopify"
],
"supportedMessageTypes": ["identify", "page", "screen", "track"],
"supportedMessageTypes": [
"identify",
"page",
"screen",
"track"
],
"destConfig": {
"defaultConfig": [
"accountId",
Expand All @@ -35,8 +41,11 @@
"eventFilteringOption",
"oneTrustCookieCategories"
],
"web": ["useNativeSDK"]
"web": [
"nativeSdkUrl",
"useNativeSDK"
]
},
"secretKeys": []
}
}
}
9 changes: 9 additions & 0 deletions src/configurations/destinations/appcues/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@
"regexErrorMessage": "Invalid Account Id",
"required": true,
"placeholder": "e.g: 81429"
},
{
"type": "textInput",
"label": "Appcues Javascript Native SDK URL",
"value": "nativeSdkUrl",
"regex": "(^\\{\\{.*\\|\\|(.*)\\}\\}$)|(^env[.].+)|(?!.*\\.ngrok\\.io)^(.{0,100})$",
"regexErrorMessage": "Please put a valid url",
"required": false,
"footerNote": "Enter your native appcues JS SDK url for hosting appcues JS SDK. By default it is https://fast.appcues.com/${your_account_id}.js"
}
]
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"category": "singer-protocol",
"displayName": "Facebook Ads",
"options": {
"image": "rudderstack/source-facebook-marketing:v8.1.9"
"image": "rudderstack/source-facebook-marketing:v8.1.9",
"hidden": true
},
"type": "cloudSource"
}

0 comments on commit 69a778b

Please sign in to comment.