Skip to content

Commit c0a0de2

Browse files
authored
chore(release): 1.26.0 (#749)
1 parent 2329ecc commit c0a0de2

File tree

5 files changed

+20
-5
lines changed

5 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
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.26.0](https://github.com/aws-observability/aws-rum-web/compare/v1.25.0...v1.26.0) (2026-01-06)
6+
7+
### Features
8+
9+
* 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))
10+
* 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))
11+
12+
13+
### Bug Fixes
14+
15+
* 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))
16+
* 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))
17+
* 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))
18+
* 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))
19+
520
## [1.25.0](https://github.com/aws-observability/aws-rum-web/compare/v1.24.0...v1.25.0) (2025-07-23)
621

722
### Features

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.25.0",
3+
"version": "1.26.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
@@ -14,7 +14,7 @@ import { RecordEvent } from '../plugins/types';
1414
import { SESSION_START_EVENT_TYPE } from '../plugins/utils/constant';
1515
import { InternalLogger } from '../utils/InternalLogger';
1616

17-
const webClientVersion = '1.25.0';
17+
const webClientVersion = '1.26.0';
1818

1919
/**
2020
* A cache which stores events generated by telemetry plugins.

src/test-utils/test-utils.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ import { INSTALL_MODULE } from '../utils/constants';
2323
export const AWS_RUM_ENDPOINT = new URL(
2424
'https://rumservicelambda.us-west-2.amazonaws.com'
2525
);
26-
export const WEB_CLIENT_VERSION = '1.25.0';
26+
export const WEB_CLIENT_VERSION = '1.26.0';
2727
export const AWS_RUM_REGION = 'us-west-2';
2828
export const APPLICATION_ID = 'application123';
2929
export const APPLICATION_VERSION = '1.2';

0 commit comments

Comments
 (0)