diff --git a/CHANGELOG.md b/CHANGELOG.md index 55ebc1b3..6905cf97 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ 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.2](https://github.com/aws-observability/aws-rum-web/compare/v1.16.1...v1.16.2) (2024-01-30) + + +### Bug Fixes + +* Invalidate cognito identity and re-try ([#498](https://github.com/aws-observability/aws-rum-web/issues/498)) ([afe87e8](https://github.com/aws-observability/aws-rum-web/commit/afe87e8949da1826991591c20139bbf5407e2add)) +* Record 0 for headerSize if transferSize is 0 ([#496](https://github.com/aws-observability/aws-rum-web/issues/496)) ([6773ffa](https://github.com/aws-observability/aws-rum-web/commit/6773ffabdf699b913f712d455db97eabebb7aa4b)) + ### [1.16.1](https://github.com/aws-observability/aws-rum-web/compare/v1.16.0...v1.16.1) (2023-12-13) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index cc935dd0..e213b4a5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "aws-rum-web", - "version": "1.16.1", + "version": "1.16.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "aws-rum-web", - "version": "1.16.1", + "version": "1.16.2", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-js": "^2.0.2", diff --git a/package.json b/package.json index 061b0024..9bc22468 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aws-rum-web", - "version": "1.16.1", + "version": "1.16.2", "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 0d6095cd..0ad9bbe9 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.16.1'; +const webClientVersion = '1.16.2'; /** * 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 9254efcb..0a619be4 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.16.1'; +const WEB_CLIENT_VERSION = '1.16.2'; 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 1e9598a8..a4a3a874 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.16.1'; +const WEB_CLIENT_VERSION = '1.16.2'; describe('EventCache tests', () => { beforeAll(() => {