Skip to content

Commit

Permalink
updated changelog for v1212 (#147)
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Kuba authored Nov 4, 2021
1 parent 7aa40d5 commit e95d35c
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 1 deletion.
35 changes: 35 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,38 @@
## v1212

* Staging release date: 11/04/2021
* Production APM-injected release date: TBD
* Production Standalone release date: TBD

### Updated LCP tracking

Largest Contentful Paint will now stop being tracked when page visibility changes to hidden. This aligns with the [web-vitals](https://github.com/GoogleChrome/web-vitals) library.

### Added passive flag to addEventListener calls

Using the addEventEventListener without the passive flag for the `touchstart` event is flagged in Lighthouse. The passive flag is now applied to all addEventListener calls in the agent.

### Fixed issue with Array.isArray() call

`Array.isArray()` call is not supported on old browsers and can cause a runtime error. This call has been replaced with an alternative that works on older browsers.

### Fixed issue with null function argument in the addEventListener API

When a null value was passed in to the addEventListener API, the agent would report an internal error. This edge case is now being handled.

### Fixed issue with Ajax deny list

There was an edge case where certain ajax calls could have been excluded when they should not have been. This is now handled correctly.

### Added support for collecting internal/supportability metrics

The agent can now send metrics that capture information about how the agent itself is working internally.

### Added agent supportability metrics for tracking API usage

### Added agent supportability metrics for tracking excluded Ajax events


## v1211

* Staging release date: 09/27/2021
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1211
1212

0 comments on commit e95d35c

Please sign in to comment.