Skip to content

Commit

Permalink
chore(release): pull main into develop post release v1.63.0 (#3313)
Browse files Browse the repository at this point in the history
  • Loading branch information
ItsSudip authored Apr 25, 2024
2 parents 89a71b7 + 616683f commit 999b83e
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 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.63.0](https://github.com/rudderlabs/rudder-transformer/compare/v1.62.2...v1.63.0) (2024-04-25)


### Features

* remove redundant data from traits in hubspot ([#3310](https://github.com/rudderlabs/rudder-transformer/issues/3310)) ([4b21f13](https://github.com/rudderlabs/rudder-transformer/commit/4b21f1353d3d9a431a0d5446d019f66a543b977b))

### [1.62.2](https://github.com/rudderlabs/rudder-transformer/compare/v1.62.1...v1.62.2) (2024-04-18)


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.62.2",
"version": "1.63.0",
"description": "",
"homepage": "https://github.com/rudderlabs/rudder-transformer#readme",
"bugs": {
Expand Down
2 changes: 1 addition & 1 deletion src/v0/destinations/hs/HSTransform-v2.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,11 +110,11 @@ const processIdentify = async (message, destination, propertyMap) => {
GENERIC_TRUE_VALUES.includes(mappedToDestination.toString()) &&
operation
) {
addExternalIdToHSTraits(message);
if (!objectType) {
throw new InstrumentationError('objectType not found');
}
if (operation === 'createObject') {
addExternalIdToHSTraits(message);
endpoint = CRM_CREATE_UPDATE_ALL_OBJECTS.replace(':objectType', objectType);
} else if (operation === 'updateObject' && getHsSearchId(message)) {
const { hsSearchId } = getHsSearchId(message);
Expand Down
1 change: 0 additions & 1 deletion test/integrations/destinations/hs/processor/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1534,7 +1534,6 @@ export const data = [
firstname: 'Test Hubspot',
anonymousId: '12345',
country: 'India',
email: '[email protected]',
},
},
XML: {},
Expand Down
1 change: 0 additions & 1 deletion test/integrations/destinations/hs/router/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,6 @@ export const data = [
firstname: 'Test Hubspot',
anonymousId: '12345',
country: 'India',
email: '[email protected]',
},
id: '103605',
},
Expand Down

0 comments on commit 999b83e

Please sign in to comment.