Skip to content

Commit

Permalink
chore(release): pull release/v1.21.0 into main (#2037)
Browse files Browse the repository at this point in the history
  • Loading branch information
shrouti1507 authored Apr 4, 2023
2 parents a9eb4d8 + 962574b commit 9b926c0
Show file tree
Hide file tree
Showing 14 changed files with 790 additions and 396 deletions.
503 changes: 503 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

18 changes: 0 additions & 18 deletions appspec.yml

This file was deleted.

51 changes: 0 additions & 51 deletions buildspec.dev.yml

This file was deleted.

51 changes: 0 additions & 51 deletions buildspec.master.yml

This file was deleted.

81 changes: 0 additions & 81 deletions buildspec.saas.yml

This file was deleted.

51 changes: 0 additions & 51 deletions buildspec.saasdev.yml

This file was deleted.

30 changes: 0 additions & 30 deletions buildspec.yml

This file was deleted.

2 changes: 1 addition & 1 deletion 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-transformer",
"version": "1.20.2",
"version": "1.21.0",
"description": "",
"homepage": "https://github.com/rudderlabs/rudder-transformer#readme",
"bugs": {
Expand Down
26 changes: 19 additions & 7 deletions src/constants/destinationCanonicalNames.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,14 @@ const DestHandlerMap = {
};

const DestCanonicalNames = {
fb_pixel: ['fb_pixel', 'fb pixel', 'FacebookPixel', 'Facebook Pixel', 'FB Pixel', "Facebook_Pixel"],
fb_pixel: [
'fb_pixel',
'fb pixel',
'FacebookPixel',
'Facebook Pixel',
'FB Pixel',
'Facebook_Pixel',
],
ometria: ['Ometria', 'ometria', 'OMETRIA'],
sendgrid: ['sendgrid', 'Sendgrid', 'SENDGRID'],
dcm_floodlight: [
Expand Down Expand Up @@ -87,7 +94,16 @@ const DestCanonicalNames = {
ga4: ['GA4', 'ga4', 'Ga4', 'Google Analytics 4', 'googleAnalytics4'],
pipedream: ['Pipedream', 'PipeDream', 'pipedream', 'PIPEDREAM'],
pagerduty: ['pagerduty', 'PAGERDUTY', 'PagerDuty', 'Pagerduty', 'pagerDuty'],
adobe_analytics: ['adobe_analytics', 'ADOBE_ANALYTICS'],
adobe_analytics: [
'adobe_analytics',
'ADOBE_ANALYTICS',
'adobe analytics',
'adobeAnalytics',
'Adobe Analytics',
'adobeanalytics',
'ADOBE ANALYTICS',
'ADOBEANALYTICS',
],
criteo_audience: [
'criteo audience',
'criteoAudience',
Expand All @@ -106,11 +122,7 @@ const DestCanonicalNames = {
'optimizely_fullstack',
],
vitally: ['vitally', 'Vitally', 'VITALLY'],
courier: [
'Courier',
'courier',
'COURIER',
],
courier: ['Courier', 'courier', 'COURIER'],
};

module.exports = { DestHandlerMap, DestCanonicalNames };
2 changes: 1 addition & 1 deletion src/v0/destinations/customerio/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ const batchEvents = (successRespList) => {
const groupEvents = [];
// Filtering out group calls to process batching
successRespList.forEach((resp) => {
if (resp.message.endpoint !== OBJECT_EVENT_ENDPOINT) {
if (!resp.message.endpoint.includes("v2/batch")) {
batchedResponseList.push(
getSuccessRespEvents(resp.message, [resp.metadata], resp.destination),
);
Expand Down
Loading

0 comments on commit 9b926c0

Please sign in to comment.