Skip to content

Commit

Permalink
chore(release): pull main into develop post release v1.70.1 (#3531)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna2020 authored Jul 8, 2024
2 parents 324f6a0 + 56e5267 commit aaa458f
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 118 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

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.70.1](https://github.com/rudderlabs/rudder-transformer/compare/v1.70.0...v1.70.1) (2024-07-03)

### Bug Fixes

* revert fb pixel change ([769161a](https://github.com/rudderlabs/rudder-transformer/commit/a0026152e4763569dc05693af1639e5a44d47b05))

## [1.70.0](https://github.com/rudderlabs/rudder-transformer/compare/v1.69.1...v1.70.0) (2024-07-01)


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-transformer",
"version": "1.70.0",
"version": "1.70.1",
"description": "",
"homepage": "https://github.com/rudderlabs/rudder-transformer#readme",
"bugs": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,5 @@
"context.traits.action_source",
"properties.action_source"
]
},
{
"destKey": "advertiser_tracking_enabled",
"sourceKeys": "context.device.adTrackingEnabled",
"required": false
}
]
110 changes: 0 additions & 110 deletions test/integrations/destinations/facebook_pixel/router/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,114 +202,4 @@ export const data = [
},
},
},
{
name: 'facebook_pixel',
description:
'Test 1 : adTrackingEnabled is passed in context, advertiser_tracking_enabled set to true',
feature: 'router',
module: 'destination',
version: 'v0',
input: {
request: {
body: {
input: [
{
message: {
anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1',
destination_props: { Fb: { app_id: 'RudderFbApp' } },
context: {
device: {
id: 'df16bffa-5c3d-4fbb-9bce-3bab098129a7R',
manufacturer: 'Xiaomi',
model: 'Redmi 6',
name: 'xiaomi',
adTrackingEnabled: true,
},
network: { carrier: 'Banglalink' },
os: { name: 'android', version: '8.1.0' },
screen: { height: '100', density: 50 },
traits: {
email: '[email protected]',
anonymousId: 'c82cbdff-e5be-4009-ac78-cdeea09ab4b1',
},
},
event: 'spin_result',
integrations: { All: true },
message_id: 'a80f82be-9bdc-4a9f-b2a5-15621ee41df8',
properties: { revenue: 400, additional_bet_index: 0 },
timestamp: '2023-10-14T15:46:51.693229+05:30',
type: 'track',
},
metadata: { jobId: 1, userId: 'u1' },
destination: {
Config: {
limitedDataUsage: true,
blacklistPiiProperties: [{ blacklistPiiProperties: '', blacklistPiiHash: false }],
removeExternalId: true,
accessToken: '09876',
pixelId: 'dummyPixelId',
eventsToEvents: [{ from: '', to: '' }],
eventCustomProperties: [{ eventCustomProperties: '' }],
valueFieldIdentifier: '',
advancedMapping: false,
whitelistPiiProperties: [{ whitelistPiiProperties: '' }],
},
Enabled: true,
},
},
],
destType: 'facebook_pixel',
},
method: 'POST',
},
},
output: {
response: {
status: 200,
body: {
output: [
{
batchedRequest: {
version: '1',
type: 'REST',
method: 'POST',
endpoint: 'https://graph.facebook.com/v18.0/dummyPixelId/events?access_token=09876',
headers: {},
params: {},
body: {
JSON: {},
XML: {},
JSON_ARRAY: {},
FORM: {
data: [
'{"user_data":{"em":"48ddb93f0b30c475423fe177832912c5bcdce3cc72872f8051627967ef278e08"},"event_name":"spin_result","event_time":1697278611,"advertiser_tracking_enabled":true,"action_source":"other","custom_data":{"additional_bet_index":0,"value":400}}',
],
},
},
files: {},
},
metadata: [{ jobId: 1, userId: 'u1' }],
batched: false,
statusCode: 200,
destination: {
Config: {
limitedDataUsage: true,
blacklistPiiProperties: [{ blacklistPiiProperties: '', blacklistPiiHash: false }],
removeExternalId: true,
accessToken: '09876',
pixelId: 'dummyPixelId',
eventsToEvents: [{ from: '', to: '' }],
eventCustomProperties: [{ eventCustomProperties: '' }],
valueFieldIdentifier: '',
advancedMapping: false,
whitelistPiiProperties: [{ whitelistPiiProperties: '' }],
},
Enabled: true,
},
},
],
},
},
},
},
].map((d) => ({ ...d, mockFns }));

0 comments on commit aaa458f

Please sign in to comment.