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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

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)
## [2.0.0](https://github.com/aws-observability/aws-rum-web/compare/v1.25.0...v2.0.0) (2026-01-09)


### ⚠ BREAKING CHANGES

* disable VirtualPageLoadTimer by default (#739)
Copy link
Copy Markdown
Contributor

@limhjgrace limhjgrace Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

question: Did we miss adding the links to the PR and commit here?

Copy link
Copy Markdown
Contributor

@limhjgrace limhjgrace Jan 10, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: We should also remove this from the ### Bug Fixes section below (line 20)


### 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.26.0",
"version": "2.0.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.26.0';
const webClientVersion = '2.0.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.26.0';
export const WEB_CLIENT_VERSION = '2.0.0';
export const AWS_RUM_REGION = 'us-west-2';
export const APPLICATION_ID = 'application123';
export const APPLICATION_VERSION = '1.2';
Expand Down