From ac471363f6a323fd1a57d898eb612f30a3dee763 Mon Sep 17 00:00:00 2001 From: Billy Date: Thu, 29 Jun 2023 17:19:23 -0700 Subject: [PATCH] chore(release): 1.14.0 (#421) * chore(release): 1.14.0 * docs: delete duplicate changes in 1.14.0 and 1.13.0 * docs: delete commits already released in v1.13.x * doc: fix diff link * doc: add feature description for performance filtering change * chore: update hardcoded versions for eventcache * doc: restore performance filtering commit title * Revert to main This reverts commit 9cec053a2e21179a4bc6c08cae0aea42cb69ee96. * chore(release): 1.14.0 * fix: update hardcoded versions in event cache --- CHANGELOG.md | 18 ++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- src/event-cache/EventCache.ts | 2 +- .../__tests__/EventCache.integ.test.ts | 2 +- src/event-cache/__tests__/EventCache.test.ts | 2 +- 6 files changed, 24 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ff3b9e3..93b89886 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,24 @@ 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.14.0](https://github.com/aws-observability/aws-rum-web/compare/v1.13.0...v1.14.0) (2023-06-29) + + +### Features + +* Ignore resources with non-http scheme ([#419](https://github.com/aws-observability/aws-rum-web/issues/419)) ([42a2ae5](https://github.com/aws-observability/aws-rum-web/commit/42a2ae568b954190db942377df32c7fc5b89686e)) + + +### Bug Fixes + +* Add @aws-sdk/querystring-builder as a dependency. ([#370](https://github.com/aws-observability/aws-rum-web/issues/370)) ([42662eb](https://github.com/aws-observability/aws-rum-web/commit/42662eb98695c027c3eef3ec6547527240486ac5)) +* Export PageAttributes type. ([#369](https://github.com/aws-observability/aws-rum-web/issues/369)) ([4b78dc1](https://github.com/aws-observability/aws-rum-web/commit/4b78dc14799151422bee07f6263c1aaa098354f6)) +* Handle missing pageId in metadata when page is resumed ([#388](https://github.com/aws-observability/aws-rum-web/issues/388)) ([f81bcf2](https://github.com/aws-observability/aws-rum-web/commit/f81bcf24e8094a65fe2b99e6bbe65196ec2ea595)) +* Hardcode webclient version ([#381](https://github.com/aws-observability/aws-rum-web/issues/381)) ([bc1c15f](https://github.com/aws-observability/aws-rum-web/commit/bc1c15ff7c6cc85a3d5843ba343e194b88449921)) +* Transpile [@aws-sdk](https://github.com/aws-sdk) to ES5. ([#363](https://github.com/aws-observability/aws-rum-web/issues/363)) ([f63150d](https://github.com/aws-observability/aws-rum-web/commit/f63150df6ed6a9d8a877ccfe8e160c5a8d9873ec)) +* Update entry point in package.json ([#377](https://github.com/aws-observability/aws-rum-web/issues/377)) ([7877e86](https://github.com/aws-observability/aws-rum-web/commit/7877e86ae4fd2f74cac8d603a59272eec015a852)) +* Update version during release workflow only ([#359](https://github.com/aws-observability/aws-rum-web/issues/359)) ([f6b7bd7](https://github.com/aws-observability/aws-rum-web/commit/f6b7bd744ec9e8413b93a2069c40b815e4ddc9ab)) + ## [1.13.0](https://github.com/aws-observability/aws-rum-web/compare/v1.12.0...v1.13.0) (2023-02-23) diff --git a/package-lock.json b/package-lock.json index cba06bac..4eee6e27 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "aws-rum-web", - "version": "1.13.0", + "version": "1.14.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "aws-rum-web", - "version": "1.13.0", + "version": "1.14.0", "license": "Apache-2.0", "dependencies": { "@aws-crypto/sha256-js": "^2.0.2", diff --git a/package.json b/package.json index b3679a02..1d0f198e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "aws-rum-web", - "version": "1.13.0", + "version": "1.14.0", "sideEffects": false, "description": "The Amazon CloudWatch RUM web client.", "license": "Apache-2.0", diff --git a/src/event-cache/EventCache.ts b/src/event-cache/EventCache.ts index 1faef62f..7a071e19 100644 --- a/src/event-cache/EventCache.ts +++ b/src/event-cache/EventCache.ts @@ -9,7 +9,7 @@ import { RumEvent } from '../dispatch/dataplane'; -const webClientVersion = '1.13.4'; +const webClientVersion = '1.14.0'; /** * A cache which stores events generated by telemetry plugins. diff --git a/src/event-cache/__tests__/EventCache.integ.test.ts b/src/event-cache/__tests__/EventCache.integ.test.ts index 04f732b7..8f2d2f89 100644 --- a/src/event-cache/__tests__/EventCache.integ.test.ts +++ b/src/event-cache/__tests__/EventCache.integ.test.ts @@ -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.13.4'; +const WEB_CLIENT_VERSION = '1.14.0'; global.fetch = mockFetch; describe('EventCache tests', () => { diff --git a/src/event-cache/__tests__/EventCache.test.ts b/src/event-cache/__tests__/EventCache.test.ts index 90074f83..9b009523 100644 --- a/src/event-cache/__tests__/EventCache.test.ts +++ b/src/event-cache/__tests__/EventCache.test.ts @@ -26,7 +26,7 @@ jest.mock('../../sessions/SessionManager', () => ({ })) })); -const WEB_CLIENT_VERSION = '1.13.4'; +const WEB_CLIENT_VERSION = '1.14.0'; describe('EventCache tests', () => { beforeAll(() => {