Skip to content

Commit d778bac

Browse files
authored
chore(release): 1.16.0 (#468)
1 parent 8cf2753 commit d778bac

File tree

6 files changed

+16
-6
lines changed

6 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
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.16.0](https://github.com/aws-observability/aws-rum-web/compare/v1.15.0...v1.16.0) (2023-11-16)
6+
7+
8+
### Features
9+
10+
* Allow override of domain metadata attribute ([#453](https://github.com/aws-observability/aws-rum-web/issues/453)) ([b658d45](https://github.com/aws-observability/aws-rum-web/commit/b658d45257c1632f183baace0f5a1e19ca78ede3))
11+
* extend addXRayTraceIdHeader to accept allow list ([#466](https://github.com/aws-observability/aws-rum-web/issues/466)) ([fdc30fd](https://github.com/aws-observability/aws-rum-web/commit/fdc30fd99dd3fc133695fcbf40867bfd8175d0b2))
12+
* Time to interactive ([#465](https://github.com/aws-observability/aws-rum-web/issues/465)) ([8cf2753](https://github.com/aws-observability/aws-rum-web/commit/8cf2753f5a8ad6bf0dfc5b7224bcaac2eee78ef8))
13+
14+
515
## [1.15.0](https://github.com/aws-observability/aws-rum-web/compare/v1.14.0...v1.15.0) (2023-10-02)
616

717

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.15.0",
3+
"version": "1.16.0",
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
@@ -10,7 +10,7 @@ import {
1010
} from '../dispatch/dataplane';
1111
import EventBus, { Topic } from '../event-bus/EventBus';
1212

13-
const webClientVersion = '1.15.0';
13+
const webClientVersion = '1.16.0';
1414

1515
/**
1616
* 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.15.0';
9+
const WEB_CLIENT_VERSION = '1.16.0';
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
@@ -28,7 +28,7 @@ jest.mock('../../sessions/SessionManager', () => ({
2828
}))
2929
}));
3030

31-
const WEB_CLIENT_VERSION = '1.15.0';
31+
const WEB_CLIENT_VERSION = '1.16.0';
3232

3333
describe('EventCache tests', () => {
3434
beforeAll(() => {

0 commit comments

Comments
 (0)