Skip to content

Commit

Permalink
chore(release): pull main into develop post release v1.40.2 (#2561)
Browse files Browse the repository at this point in the history
  • Loading branch information
krishna2020 authored Sep 8, 2023
2 parents ed27a11 + 7a36770 commit b3c328e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 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.40.2](https://github.com/rudderlabs/rudder-transformer/compare/v1.40.1...v1.40.2) (2023-09-06)


### Bug Fixes

* marketo bulk upload import issue ([#2559](https://github.com/rudderlabs/rudder-transformer/issues/2559)) ([752f351](https://github.com/rudderlabs/rudder-transformer/commit/752f351f02b7f7611c702d7dbcb4804972bb0970))

### [1.40.1](https://github.com/rudderlabs/rudder-transformer/compare/v1.40.0...v1.40.1) (2023-09-06)


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.40.1",
"version": "1.40.2",
"description": "",
"homepage": "https://github.com/rudderlabs/rudder-transformer#readme",
"bugs": {
Expand Down
5 changes: 3 additions & 2 deletions src/v0/destinations/marketo_bulk_upload/fileUpload.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ const {
getMarketoFilePath,
handleFileUploadResponse,
getFieldSchemaMap,
hydrateStatusForServer,
} = require('./util');
const { isHttpStatusSuccess, hydrateStatusForServer } = require('../../util');
const { isHttpStatusSuccess } = require('../../util');
const { MARKETO_FILE_SIZE, UPLOAD_FILE } = require('./config');
const {
getHashFromArray,
Expand Down Expand Up @@ -249,7 +250,7 @@ const responseHandler = async (input, config) => {
const response = {
statusCode: 200,
importId,
metadata
metadata,
};
return response;
}
Expand Down

0 comments on commit b3c328e

Please sign in to comment.