Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

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.26.0](https://github.com/aws-observability/aws-rum-web/compare/v1.25.0...v1.26.0) (2026-01-06)

### Features

* add debugging mode to expose data loss scenarios ([#727](https://github.com/aws-observability/aws-rum-web/issues/727)) ([5fd50aa](https://github.com/aws-observability/aws-rum-web/commit/5fd50aa6f716181c21fcc06b60523d8f6a1f627c))
* increase default eventCacheSize to 1000 ([#728](https://github.com/aws-observability/aws-rum-web/issues/728)) ([39ba7da](https://github.com/aws-observability/aws-rum-web/commit/39ba7da83b01d3074bcbaffe3ebec90f48ea2542))


### Bug Fixes

* disable VirtualPageLoadTimer by default ([#739](https://github.com/aws-observability/aws-rum-web/issues/739)) ([215d4c2](https://github.com/aws-observability/aws-rum-web/commit/215d4c230fd2eec879f2aef4b6d5693883733027))
* ignore PutRumEvents for PerformanceResource events ([#712](https://github.com/aws-observability/aws-rum-web/issues/712)) ([8377316](https://github.com/aws-observability/aws-rum-web/commit/8377316c1189827d08708a48438c1f52a189c6e8))
* purge invalid credentials on 403 ([#740](https://github.com/aws-observability/aws-rum-web/issues/740)) ([2329ecc](https://github.com/aws-observability/aws-rum-web/commit/2329ecc23f857226dc273d3b24ba23b836dc33c4))
* resolve npe in web vitals attribution ([#716](https://github.com/aws-observability/aws-rum-web/issues/716)) ([6151a9b](https://github.com/aws-observability/aws-rum-web/commit/6151a9b2e82d9bb4e45db1c15c631690b07cf3bf))

## [1.25.0](https://github.com/aws-observability/aws-rum-web/compare/v1.24.0...v1.25.0) (2025-07-23)

### Features
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-rum-web",
"version": "1.25.0",
"version": "1.26.0",
"sideEffects": false,
"description": "The Amazon CloudWatch RUM web client.",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion src/event-cache/EventCache.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { RecordEvent } from '../plugins/types';
import { SESSION_START_EVENT_TYPE } from '../plugins/utils/constant';
import { InternalLogger } from '../utils/InternalLogger';

const webClientVersion = '1.25.0';
const webClientVersion = '1.26.0';

/**
* A cache which stores events generated by telemetry plugins.
Expand Down
2 changes: 1 addition & 1 deletion src/test-utils/test-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import { INSTALL_MODULE } from '../utils/constants';
export const AWS_RUM_ENDPOINT = new URL(
'https://rumservicelambda.us-west-2.amazonaws.com'
);
export const WEB_CLIENT_VERSION = '1.25.0';
export const WEB_CLIENT_VERSION = '1.26.0';
export const AWS_RUM_REGION = 'us-west-2';
export const APPLICATION_ID = 'application123';
export const APPLICATION_VERSION = '1.2';
Expand Down