Skip to content

Commit cc96a7e

Browse files
authored
chore(release): 1.22.0 (#634)
1 parent 6ffe2b9 commit cc96a7e

File tree

5 files changed

+18
-4
lines changed

5 files changed

+18
-4
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
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.22.0](https://github.com/aws-observability/aws-rum-web/compare/release/1.21.x...release/1.22.x) (2025-03-27)
6+
7+
8+
### Features
9+
10+
* fetch with keepalive ([#618](https://github.com/aws-observability/aws-rum-web/issues/618)) ([ade3e4d](https://github.com/aws-observability/aws-rum-web/commit/ade3e4d52cf993d0001c8c6a6766847dd79d47fe))
11+
* custom headers ([#610](https://github.com/aws-observability/aws-rum-web/issues/610)) ([986fc17](https://github.com/aws-observability/aws-rum-web/commit/986fc17c08fd44aab0bee72eb88d939e0b25437c))
12+
13+
14+
### Bug Fixes
15+
16+
* call sendBeacon synchronously ([#631](https://github.com/aws-observability/aws-rum-web/issues/631)) ([26aad1c](https://github.com/aws-observability/aws-rum-web/commit/26aad1c27db7237741dd58f3422e5f4b4c07c717))
17+
* Use port from endpoint url to create HttpRequestOptions ([#595](https://github.com/aws-observability/aws-rum-web/issues/595)) ([b2d08c3](https://github.com/aws-observability/aws-rum-web/commit/b2d08c31b25494ee139683736befbd90d024b187))
18+
519
## [1.21.0](https://github.com/aws-observability/aws-rum-web/compare/release/1.20.x...release/1.21.x) (2025-03-17)
620

721

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aws-rum-web",
3-
"version": "1.21.0",
3+
"version": "1.22.0",
44
"sideEffects": false,
55
"description": "The Amazon CloudWatch RUM web client.",
66
"license": "Apache-2.0",

src/event-cache/EventCache.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from '../dispatch/dataplane';
1111
import EventBus, { Topic } from '../event-bus/EventBus';
1212

13-
const webClientVersion = '1.21.0';
13+
const webClientVersion = '1.22.0';
1414

1515
/**
1616
* A cache which stores events generated by telemetry plugins.

src/event-cache/__tests__/EventCache.integ.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { DEFAULT_CONFIG, mockFetch } from '../../test-utils/test-utils';
66
import { SESSION_START_EVENT_TYPE } from '../../sessions/SessionManager';
77
import { INSTALL_MODULE } from '../../utils/constants';
88

9-
const WEB_CLIENT_VERSION = '1.21.0';
9+
const WEB_CLIENT_VERSION = '1.22.0';
1010

1111
global.fetch = mockFetch;
1212
describe('EventCache tests', () => {

src/event-cache/__tests__/EventCache.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jest.mock('../../sessions/SessionManager', () => ({
3131
}))
3232
}));
3333

34-
const WEB_CLIENT_VERSION = '1.21.0';
34+
const WEB_CLIENT_VERSION = '1.22.0';
3535

3636
describe('EventCache tests', () => {
3737
beforeAll(() => {

0 commit comments

Comments
 (0)