Skip to content

Commit

Permalink
Merge pull request #1035 from rudderlabs/main
Browse files Browse the repository at this point in the history
chore(release): pull main into develop post release v1.57.0
  • Loading branch information
yashasvibajpai authored Oct 31, 2023
2 parents a031d70 + b5ad981 commit 04f30c8
Show file tree
Hide file tree
Showing 10 changed files with 99 additions and 27 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,25 @@

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.57.0](https://github.com/rudderlabs/rudder-config-schema/compare/v1.56.2...v1.57.0) (2023-10-30)


### Features

* deprecate GA and Facebook Offline Conversions destinations using options flag ([#1016](https://github.com/rudderlabs/rudder-config-schema/issues/1016)) ([b3a1567](https://github.com/rudderlabs/rudder-config-schema/commit/b3a1567f27a78d1088758f91ad8cfa786bd7e049))
* **facebook_pixel:** move facebook pixel to new UI from-builder ([#1004](https://github.com/rudderlabs/rudder-config-schema/issues/1004)) ([f6ff024](https://github.com/rudderlabs/rudder-config-schema/commit/f6ff024fcac22a88bb8b71b539b40b0bf19a6842))
* **fb:** move fb app events to new UI form-builder ([#1007](https://github.com/rudderlabs/rudder-config-schema/issues/1007)) ([7e8e3d1](https://github.com/rudderlabs/rudder-config-schema/commit/7e8e3d16da2cec375de144a99203358a377a31f5))
* matomo: support premise version ([#989](https://github.com/rudderlabs/rudder-config-schema/issues/989)) ([f2d149d](https://github.com/rudderlabs/rudder-config-schema/commit/f2d149d707f5cdc234009e5f512f073da8f9f99b))
* onboard facebook conversions destination ([#982](https://github.com/rudderlabs/rudder-config-schema/issues/982)) ([8c23561](https://github.com/rudderlabs/rudder-config-schema/commit/8c23561a90d6b9819af783ad1081103df775a613))
* onboard ortto destination ([#979](https://github.com/rudderlabs/rudder-config-schema/issues/979)) ([09ef62e](https://github.com/rudderlabs/rudder-config-schema/commit/09ef62eb09c6550f3d6a9428b77edca45e0b27d4))
* refactor supportedMessageTypes and supportedConnectionModes ([#1026](https://github.com/rudderlabs/rudder-config-schema/issues/1026)) ([a2b7438](https://github.com/rudderlabs/rudder-config-schema/commit/a2b74388fb7b349381df1a9b52ef9ba53e0bdcee))



### Bug Fixes

* change value of a config in ui ([#1003](https://github.com/rudderlabs/rudder-config-schema/issues/1003)) ([de2cc4e](https://github.com/rudderlabs/rudder-config-schema/commit/de2cc4e1e66c74de54aebe01267ebc3fc9714f28))

### [1.56.2](https://github.com/rudderlabs/rudder-config-schema/compare/v1.56.1...v1.56.2) (2023-10-28)


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.56.2",
"version": "1.57.0",
"description": "",
"main": "src/index.ts",
"private": true,
Expand Down
17 changes: 15 additions & 2 deletions src/configurations/destinations/active_campaign/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,22 @@
"cordova",
"shopify"
],
"supportedMessageTypes": ["identify", "page", "screen", "track"],
"supportedMessageTypes": {
"cloud": ["identify", "page", "screen", "track"],
"device": {
"web": ["identify", "page", "screen", "track"]
}
},
"supportedConnectionModes": {
"web": ["cloud", "device", "hybrid"]
"web": ["cloud", "device", "hybrid"],
"android": ["cloud"],
"ios": ["cloud"],
"unity": ["cloud"],
"amp": ["cloud"],
"reactnative": ["cloud"],
"flutter": ["cloud"],
"cordova": ["cloud"],
"shopify": ["cloud"]
},
"hybridModeCloudEventsFilter": {
"web": {
Expand Down
39 changes: 23 additions & 16 deletions src/configurations/destinations/adj/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,24 @@
"cordova",
"shopify"
],
"supportedMessageTypes": [
"track"
],
"supportedMessageTypes": {
"cloud": ["track"],
"device": {
"android": ["track"],
"ios": ["track"],
"flutter": ["track"],
"unity": ["track"]
}
},
"supportedConnectionModes": {
"android": ["cloud", "device"],
"ios": ["cloud", "device"],
"flutter": ["cloud", "device"],
"unity": ["cloud", "device"],
"reactnative": ["cloud"],
"cordova": ["cloud"],
"shopify": ["cloud"]
},
"destConfig": {
"defaultConfig": [
"appToken",
Expand All @@ -41,19 +56,11 @@
"partnerParamsKeys",
"oneTrustCookieCategories"
],
"android": [
"useNativeSDK"
],
"ios": [
"useNativeSDK"
],
"flutter": [
"useNativeSDK"
],
"unity": [
"useNativeSDK"
]
"android": ["useNativeSDK"],
"ios": ["useNativeSDK"],
"flutter": ["useNativeSDK"],
"unity": ["useNativeSDK"]
},
"secretKeys": []
}
}
}
16 changes: 15 additions & 1 deletion src/configurations/destinations/adobe_analytics/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,24 @@
"cordova",
"shopify"
],
"supportedMessageTypes": {
"cloud": ["track", "page", "screen"],
"device": {
"web": ["page", "track"],
"android": ["identify", "track", "screen"],
"ios": ["identify", "track", "screen"]
}
},
"supportedConnectionModes": {
"web": ["cloud", "device"],
"android": ["cloud", "device"],
"ios": ["cloud", "device"]
"ios": ["cloud", "device"],
"unity": ["cloud"],
"amp": ["cloud"],
"reactnative": ["cloud"],
"flutter": ["cloud"],
"cordova": ["cloud"],
"shopify": ["cloud"]
},
"destConfig": {
"defaultConfig": [
Expand Down
21 changes: 20 additions & 1 deletion src/configurations/destinations/af/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,26 @@
"cordova",
"shopify"
],
"supportedMessageTypes": ["track", "screen", "page"],
"supportedMessageTypes": {
"cloud": ["track", "screen", "page"],
"device": {
"android": ["track", "screen", "page"],
"cordova": ["track", "screen", "page"],
"ios": ["track", "screen", "page"],
"flutter": ["track", "screen", "page"],
"reactnative": ["track", "screen", "page"]
}
},
"supportedConnectionModes": {
"cordova": ["cloud", "device"],
"android": ["cloud", "device"],
"ios": ["cloud", "device"],
"flutter": ["cloud", "device"],
"reactnative": ["cloud", "device"],
"web": ["cloud"],
"amp": ["cloud"],
"unity": ["cloud"]
},
"destConfig": {
"defaultConfig": [
"devKey",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
],
"supportedMessageTypes": ["identify", "page", "screen", "track"],
"supportedConnectionModes": {
"web": ["device"]
"web": ["cloud", "device"]
},
"destConfig": {
"defaultConfig": [
Expand Down
4 changes: 2 additions & 2 deletions src/configurations/destinations/fb/db-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
],
"supportedMessageTypes": ["page", "screen", "track"],
"supportedConnectionModes": {
"android": ["device"],
"ios": ["device"]
"android": ["cloud", "device"],
"ios": ["cloud", "device"]
},
"destConfig": {
"defaultConfig": [
Expand Down
2 changes: 1 addition & 1 deletion src/configurations/destinations/ortto/ui-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"fields": [
{
"type": "dynamicCustomForm",
"label": "Map RudderStack event name to HubSpot Custom Behavioral event name",
"label": "Map RudderStack event name to Ortto Custom event name",
"configKey": "orttoEventsMapping",
"rowFields": [
{
Expand Down

0 comments on commit 04f30c8

Please sign in to comment.