Skip to content

Commit

Permalink
chore: release v8.2.0 ⚡
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardo zizzamia committed Dec 31, 2022
1 parent 73a267f commit c65c04d
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 8.2.0 (2022-12-30)

* **feat:** added ability to provide web-vitals report options

## 8.1.6 (2022-12-30)

* **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.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
align="left" width="200" alt="Perfume.js logo" />
</a>

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

[![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)

Expand Down
14 changes: 7 additions & 7 deletions docs/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 docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"core-js": "3.26.0",
"idb": "5.0.3",
"ng-packagr": "^14.2.2",
"perfume.js": "8.1.5",
"perfume.js": "8.1.6",
"rxjs": "7.5.7",
"tslib": "^2.4.1",
"typescript": "4.8.4",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "perfume.js",
"version": "8.1.6",
"version": "8.2.0",
"description": "Web performance library for measuring all User-centric performance metrics, including the latest Web Vitals.",
"keywords": [
"performance",
Expand Down
4 changes: 2 additions & 2 deletions src/perfume.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**
* Perfume.js v8.1.6 (http://zizzamia.github.io/perfume)
* Perfume.js v8.2.0 (http://zizzamia.github.io/perfume)
* Copyright 2022 Leonardo Zizzamia (https://github.com/Zizzamia/perfume.js/graphs/contributors)
* Licensed under MIT (https://github.com/Zizzamia/perfume.js/blob/master/LICENSE)
*
Expand All @@ -23,7 +23,7 @@ import { getVitalsScore } from './vitalsScore';
let ntbtTimeoutID = 0;

export default class Perfume {
v = '8.1.6';
v = '8.2.0';

constructor(options: IPerfumeOptions = {}) {
// Extend default config with external options
Expand Down

0 comments on commit c65c04d

Please sign in to comment.