Skip to content

Commit ac5b2b9

Browse files
committed
chore(release): 1.13.7
1 parent e132ab7 commit ac5b2b9

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
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.
44

5+
### [1.13.7](https://github.com/aws-observability/aws-rum-web/compare/v1.13.6...v1.13.7) (2023-04-11)
6+
7+
8+
### Bug Fixes
9+
10+
* Add @aws-sdk/querystring-builder as a dependency. ([#370](https://github.com/aws-observability/aws-rum-web/issues/370)) ([9e7ffdc](https://github.com/aws-observability/aws-rum-web/commit/9e7ffdcd39d09d3dc5cef6867a59252b1f419e2a))
11+
512
### [1.13.6]((https://github.com/aws-observability/aws-rum-web/compare/v1.13.5...v1.13.6)) (2023-03-17)
613

714
### Bug Fixes

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-rum-web",
3-
"version": "1.13.6",
3+
"version": "1.13.7",
44
"sideEffects": false,
55
"description": "The Amazon CloudWatch RUM web client.",
66
"license": "Apache-2.0",

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.6';
12+
const webClientVersion = '1.13.7';
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.6';
9+
const WEB_CLIENT_VERSION = '1.13.7';
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.6';
29+
const WEB_CLIENT_VERSION = '1.13.7';
3030

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

0 commit comments

Comments
 (0)