Skip to content

Commit 4ba0076

Browse files
authored
chore(release): 1.24.0 (#665)
1 parent a6d2a3f commit 4ba0076

File tree

5 files changed

+12
-5
lines changed

5 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.24.0](https://github.com/aws-observability/aws-rum-web/compare/v1.23.0...v1.24.0) (2025-05-29)
6+
7+
### Bug Fixes
8+
9+
* add prerender offset to tti events ([#662](https://github.com/aws-observability/aws-rum-web/pull/662)) ([a6d2a3f](https://github.com/aws-observability/aws-rum-web/commit/a6d2a3f09c351286cb52ad6c1367a87b6d3abdf2))
10+
11+
512
## [1.23.0](https://github.com/aws-observability/aws-rum-web/compare/v1.22.0...v1.23.0) (2025-05-07)
613

714

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.23.0",
3+
"version": "1.24.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
@@ -13,7 +13,7 @@ import EventBus, { Topic } from '../event-bus/EventBus';
1313
import { RecordEvent } from '../plugins/types';
1414
import { SESSION_START_EVENT_TYPE } from '../plugins/utils/constant';
1515

16-
const webClientVersion = '1.23.0';
16+
const webClientVersion = '1.24.0';
1717

1818
/**
1919
* 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.23.0';
26+
export const WEB_CLIENT_VERSION = '1.24.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)