Skip to content

Commit 92ea8f0

Browse files
authored
chore(release): 1.25.0 (#682)
1 parent a42a4df commit 92ea8f0

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.25.0](https://github.com/aws-observability/aws-rum-web/compare/v1.24.0...v1.25.0) (2025-07-23)
6+
7+
### Features
8+
9+
* add w3c trace id format support ([#655](https://github.com/aws-observability/aws-rum-web/issues/655)) ([206d04b](https://github.com/aws-observability/aws-rum-web/commit/206d04bc59d6e8ebc3e6761d0fdf1d9d9feab52f))
10+
11+
512
## [1.24.0](https://github.com/aws-observability/aws-rum-web/compare/v1.23.0...v1.24.0) (2025-05-29)
613

714
### Bug Fixes

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.24.0",
3+
"version": "1.25.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.24.0';
16+
const webClientVersion = '1.25.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.24.0';
26+
export const WEB_CLIENT_VERSION = '1.25.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)