Skip to content

Commit c65c04d

Browse files
author
leonardo zizzamia
committed
chore: release v8.2.0 ⚡
1 parent 73a267f commit c65c04d

File tree

6 files changed

+16
-12
lines changed

6 files changed

+16
-12
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 8.2.0 (2022-12-30)
4+
5+
* **feat:** added ability to provide web-vitals report options
6+
37
## 8.1.6 (2022-12-30)
48

59
* **fix:** added back the `visibility.isHidden` check when reporting metrics. Apparently, without this check, we end up over-reporting metrics that risk being inaccurate because the page suddenly becomes hidden.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
align="left" width="200" alt="Perfume.js logo" />
44
</a>
55

6-
# [Perfume.js v8.1.6](http://perfumejs.com)
6+
# [Perfume.js v8.2.0](http://perfumejs.com)
77

88
[![Current version](https://img.shields.io/github/tag/zizzamia/perfume.js?color=3498DB&label=version)](https://www.npmjs.org/package/perfume.js) [![Test Coverage](https://api.codeclimate.com/v1/badges/f813d2f45b274d93b8c5/test_coverage)](https://codeclimate.com/github/Zizzamia/perfume.js/test_coverage) <img alt="No dependencies" src="https://img.shields.io/badge/dependencies-none-27ae60.svg"> [![Build Status](https://travis-ci.org/Zizzamia/perfume.js.svg?branch=master)](https://travis-ci.org/Zizzamia/perfume.js) [![NPM Downloads](http://img.shields.io/npm/dm/perfume.js.svg)](https://www.npmjs.org/package/perfume.js) [![gzip size](https://img.badgesize.io/https://unpkg.com/perfume.js?compression=gzip&label=JS+gzip+size)](https://unpkg.com/perfume.js) [![brotli size](https://img.badgesize.io/https://unpkg.com/perfume.js?compression=brotli&label=JS+brotli+size)](https://unpkg.com/perfume.js)
99

docs/package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"core-js": "3.26.0",
2424
"idb": "5.0.3",
2525
"ng-packagr": "^14.2.2",
26-
"perfume.js": "8.1.5",
26+
"perfume.js": "8.1.6",
2727
"rxjs": "7.5.7",
2828
"tslib": "^2.4.1",
2929
"typescript": "4.8.4",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "perfume.js",
3-
"version": "8.1.6",
3+
"version": "8.2.0",
44
"description": "Web performance library for measuring all User-centric performance metrics, including the latest Web Vitals.",
55
"keywords": [
66
"performance",

src/perfume.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Perfume.js v8.1.6 (http://zizzamia.github.io/perfume)
2+
* Perfume.js v8.2.0 (http://zizzamia.github.io/perfume)
33
* Copyright 2022 Leonardo Zizzamia (https://github.com/Zizzamia/perfume.js/graphs/contributors)
44
* Licensed under MIT (https://github.com/Zizzamia/perfume.js/blob/master/LICENSE)
55
*
@@ -23,7 +23,7 @@ import { getVitalsScore } from './vitalsScore';
2323
let ntbtTimeoutID = 0;
2424

2525
export default class Perfume {
26-
v = '8.1.6';
26+
v = '8.2.0';
2727

2828
constructor(options: IPerfumeOptions = {}) {
2929
// Extend default config with external options

0 commit comments

Comments
 (0)