Skip to content

Commit

Permalink
chore(release): 1.16.0 (#468)
Browse files Browse the repository at this point in the history
  • Loading branch information
ps863 committed Nov 16, 2023
1 parent 8cf2753 commit d778bac
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 6 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

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.16.0](https://github.com/aws-observability/aws-rum-web/compare/v1.15.0...v1.16.0) (2023-11-16)


### Features

* Allow override of domain metadata attribute ([#453](https://github.com/aws-observability/aws-rum-web/issues/453)) ([b658d45](https://github.com/aws-observability/aws-rum-web/commit/b658d45257c1632f183baace0f5a1e19ca78ede3))
* extend addXRayTraceIdHeader to accept allow list ([#466](https://github.com/aws-observability/aws-rum-web/issues/466)) ([fdc30fd](https://github.com/aws-observability/aws-rum-web/commit/fdc30fd99dd3fc133695fcbf40867bfd8175d0b2))
* Time to interactive ([#465](https://github.com/aws-observability/aws-rum-web/issues/465)) ([8cf2753](https://github.com/aws-observability/aws-rum-web/commit/8cf2753f5a8ad6bf0dfc5b7224bcaac2eee78ef8))


## [1.15.0](https://github.com/aws-observability/aws-rum-web/compare/v1.14.0...v1.15.0) (2023-10-02)


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.15.0",
"version": "1.16.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 @@ -10,7 +10,7 @@ import {
} from '../dispatch/dataplane';
import EventBus, { Topic } from '../event-bus/EventBus';

const webClientVersion = '1.15.0';
const webClientVersion = '1.16.0';

/**
* A cache which stores events generated by telemetry plugins.
Expand Down
2 changes: 1 addition & 1 deletion src/event-cache/__tests__/EventCache.integ.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { DEFAULT_CONFIG, mockFetch } from '../../test-utils/test-utils';
import { SESSION_START_EVENT_TYPE } from '../../sessions/SessionManager';
import { INSTALL_MODULE } from '../../utils/constants';

const WEB_CLIENT_VERSION = '1.15.0';
const WEB_CLIENT_VERSION = '1.16.0';

global.fetch = mockFetch;
describe('EventCache tests', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/event-cache/__tests__/EventCache.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jest.mock('../../sessions/SessionManager', () => ({
}))
}));

const WEB_CLIENT_VERSION = '1.15.0';
const WEB_CLIENT_VERSION = '1.16.0';

describe('EventCache tests', () => {
beforeAll(() => {
Expand Down

0 comments on commit d778bac

Please sign in to comment.