diff --git a/CHANGELOG.md b/CHANGELOG.md index 683c7b87..5edf52e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ 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. +## [1.16.0](https://github.com/aws-observability/aws-rum-web/compare/v1.15.0...v1.16.0) (2023-11-16) + + +### Features + +* 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)) +* 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)) +* 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)) + + ## [1.15.0](https://github.com/aws-observability/aws-rum-web/compare/v1.14.0...v1.15.0) (2023-10-02) diff --git a/package-lock.json b/package-lock.json index f5144956..e5e42eee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "aws-rum-web", - "version": "1.15.0", + "version": "1.16.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "aws-rum-web", - "version": "1.15.0", + "version": "1.16.0", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-js": "^2.0.2", diff --git a/package.json b/package.json index 17074596..18a76ad9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aws-rum-web", - "version": "1.15.0", + "version": "1.16.0", "sideEffects": false, "description": "The Amazon CloudWatch RUM web client.", "license": "Apache-2.0", diff --git a/src/event-cache/EventCache.ts b/src/event-cache/EventCache.ts index e412f589..25d5915d 100644 --- a/src/event-cache/EventCache.ts +++ b/src/event-cache/EventCache.ts @@ -10,7 +10,7 @@ import { } from '../dispatch/dataplane'; import EventBus, { Topic } from '../event-bus/EventBus'; -const webClientVersion = '1.15.0'; +const webClientVersion = '1.16.0'; /** * A cache which stores events generated by telemetry plugins. diff --git a/src/event-cache/__tests__/EventCache.integ.test.ts b/src/event-cache/__tests__/EventCache.integ.test.ts index a5cc24aa..550547f0 100644 --- a/src/event-cache/__tests__/EventCache.integ.test.ts +++ b/src/event-cache/__tests__/EventCache.integ.test.ts @@ -6,7 +6,7 @@ import { DEFAULT_CONFIG, mockFetch } from '../../test-utils/test-utils'; import { SESSION_START_EVENT_TYPE } from '../../sessions/SessionManager'; import { INSTALL_MODULE } from '../../utils/constants'; -const WEB_CLIENT_VERSION = '1.15.0'; +const WEB_CLIENT_VERSION = '1.16.0'; global.fetch = mockFetch; describe('EventCache tests', () => { diff --git a/src/event-cache/__tests__/EventCache.test.ts b/src/event-cache/__tests__/EventCache.test.ts index 0053f1ee..9a5cc395 100644 --- a/src/event-cache/__tests__/EventCache.test.ts +++ b/src/event-cache/__tests__/EventCache.test.ts @@ -28,7 +28,7 @@ jest.mock('../../sessions/SessionManager', () => ({ })) })); -const WEB_CLIENT_VERSION = '1.15.0'; +const WEB_CLIENT_VERSION = '1.16.0'; describe('EventCache tests', () => { beforeAll(() => {