Skip to content

Commit

Permalink
chore(release): pull hotfix-release/3.63.0-SDK-2689 into main (#1945)
Browse files Browse the repository at this point in the history
  • Loading branch information
saikumarrs authored Nov 22, 2024
2 parents fd92f53 + eaff3b0 commit bb280f9
Show file tree
Hide file tree
Showing 44 changed files with 399 additions and 286 deletions.
22 changes: 11 additions & 11 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": "@rudderstack/analytics-js-monorepo",
"version": "3.62.0",
"version": "3.63.0",
"private": true,
"description": "Monorepo for RudderStack Analytics JS SDK",
"workspaces": [
Expand Down
7 changes: 7 additions & 0 deletions packages/analytics-js-common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).

## [3.14.10](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-22)


### Bug Fixes

* restore data sanitization changes but avoid using api overloads ([d0913ae](https://github.com/rudderlabs/rudder-sdk-js/commit/d0913ae32a8c63def26c081c7570a9960dcd1ebf))

## [3.14.9](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected]...@rudderstack/[email protected]) (2024-11-22)


Expand Down
4 changes: 2 additions & 2 deletions packages/analytics-js-common/CHANGELOG_LATEST.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
## [3.14.9](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].8...@rudderstack/[email protected].9) (2024-11-22)
## [3.14.10](https://github.com/rudderlabs/rudder-sdk-js/compare/@rudderstack/[email protected].9...@rudderstack/[email protected].10) (2024-11-22)


### Bug Fixes

* restore data sanitization changes ([2a13e7c](https://github.com/rudderlabs/rudder-sdk-js/commit/2a13e7c463b2d480f6d9a23f32abe4e56f6557d4))
* restore data sanitization changes but avoid using api overloads ([d0913ae](https://github.com/rudderlabs/rudder-sdk-js/commit/d0913ae32a8c63def26c081c7570a9960dcd1ebf))

7 changes: 4 additions & 3 deletions packages/analytics-js-common/__tests__/utilities/json.test.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { clone } from 'ramda';
import {
getSanitizedValue,
stringifyData,
stringifyWithoutCircular,
} from '../../src/utilities/json';
Expand Down Expand Up @@ -228,7 +229,7 @@ describe('Common Utils - JSON', () => {
});
});

describe.skip('getSanitizedValue', () => {
describe('getSanitizedValue', () => {
const mockLogger = {
warn: jest.fn(),
};
Expand Down Expand Up @@ -259,7 +260,7 @@ describe('Common Utils - JSON', () => {
expect(getSanitizedValue(obj)).toEqual(obj);
});

it.skip('should sanitize json after replacing BigInt and circular references', () => {
it('should sanitize json after replacing BigInt and circular references', () => {
const obj = {
a: BigInt(1),
b: undefined,
Expand Down Expand Up @@ -332,7 +333,7 @@ describe('Common Utils - JSON', () => {
);
});

it.skip('should sanitize json even if it contains reused objects', () => {
it('should sanitize json even if it contains reused objects', () => {
const obj = {
a: BigInt(1),
b: undefined,
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics-js-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@rudderstack/analytics-js-common",
"version": "3.14.9",
"version": "3.14.10",
"private": true,
"description": "RudderStack JavaScript SDK common code",
"module": "dist/npm/index.js",
Expand Down
6 changes: 3 additions & 3 deletions packages/analytics-js-common/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
"github": {
"executor": "@jscutlery/semver:github",
"options": {
"tag": "@rudderstack/[email protected].9",
"title": "@rudderstack/[email protected].9",
"discussion-category": "@rudderstack/[email protected].9",
"tag": "@rudderstack/[email protected].10",
"title": "@rudderstack/[email protected].10",
"discussion-category": "@rudderstack/[email protected].10",
"notesFile": "./packages/analytics-js-common/CHANGELOG_LATEST.md"
}
}
Expand Down
Loading

0 comments on commit bb280f9

Please sign in to comment.