Skip to content

Commit 84b09e2

Browse files
authored
chore(release): 1.23.0 (#659)
1 parent e5dde48 commit 84b09e2

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,19 @@
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.23.0](https://github.com/aws-observability/aws-rum-web/compare/v1.22.0...v1.23.0) (2025-05-07)
6+
7+
8+
### Features
9+
10+
* record INP ([#620](https://github.com/aws-observability/aws-rum-web/issues/620)) ([41347d3](https://github.com/aws-observability/aws-rum-web/commit/41347d3b66138748671b8cb3de189878fb7226e5))
11+
12+
13+
### Bug Fixes
14+
15+
* Add quotes around message to fix npm deprecate command ([#652](https://github.com/aws-observability/aws-rum-web/issues/652)) ([8d8cf2f](https://github.com/aws-observability/aws-rum-web/commit/8d8cf2fca324abec0913c43769c9be0692d8dfb4))
16+
* resolve off by one error in session expiration ([#647](https://github.com/aws-observability/aws-rum-web/issues/647)) ([a7a6fa2](https://github.com/aws-observability/aws-rum-web/commit/a7a6fa22f95afbf57e51251ede9a1631a3b9df59))
17+
518
## [1.22.0](https://github.com/aws-observability/aws-rum-web/compare/release/1.21.x...release/1.22.x) (2025-03-27)
619

720

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