Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(release): pull hotfix-release/3.63.0-SDK-2689 into main #1945

Merged
merged 11 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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))

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
Loading