Skip to content

Commit 4819860

Browse files
committed
chore:Hardcode web client version to v1.13.6
1 parent a6ecc40 commit 4819860

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/event-cache/EventCache.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
RumEvent
1010
} from '../dispatch/dataplane';
1111

12-
const webClientVersion = '1.13.4';
12+
const webClientVersion = '1.13.6';
1313

1414
/**
1515
* A cache which stores events generated by telemetry plugins.

src/event-cache/__tests__/EventCache.integ.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { DEFAULT_CONFIG, mockFetch } from '../../test-utils/test-utils';
66
import { SESSION_START_EVENT_TYPE } from '../../sessions/SessionManager';
77
import { INSTALL_MODULE } from '../../utils/constants';
88

9-
const WEB_CLIENT_VERSION = '1.13.4';
9+
const WEB_CLIENT_VERSION = '1.13.6';
1010

1111
global.fetch = mockFetch;
1212
describe('EventCache tests', () => {

src/event-cache/__tests__/EventCache.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jest.mock('../../sessions/SessionManager', () => ({
2626
}))
2727
}));
2828

29-
const WEB_CLIENT_VERSION = '1.13.4';
29+
const WEB_CLIENT_VERSION = '1.13.6';
3030

3131
describe('EventCache tests', () => {
3232
beforeAll(() => {

0 commit comments

Comments
 (0)