diff --git a/CHANGELOG.md b/CHANGELOG.md index 66153a9..f093c95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/Smartesting/gravity-data-collector/compare/v3.15.0...main) - -### Info +## [3.16.0](https://github.com/Smartesting/gravity-data-collector/compare/v3.15.0...v3.16.0) ### Added @@ -46,12 +44,6 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - `data-testid` attribute is now collected by default on targeted user actions -### Deprecated - -### Removed - -### Fixed - ## [3.15](https://github.com/Smartesting/gravity-data-collector/compare/v3.14.0...v3.15.0) ### Added diff --git a/README.md b/README.md index 42e143e..942f077 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ In your `package.json`, add the following: ```json { "dependencies": { - "@smartesting/gravity-data-collector": "^3.15.0" + "@smartesting/gravity-data-collector": "^3.16.0" } } ``` @@ -42,7 +42,7 @@ Put this tag in each page that must use Gravity Data Collector. async id="logger" type="text/javascript" - src="https://unpkg.com/@smartesting/gravity-data-collector@3.15.0/dist/gravity-logger-min.js" + src="https://unpkg.com/@smartesting/gravity-data-collector@3.16.0/dist/gravity-logger-min.js" > ``` diff --git a/package-lock.json b/package-lock.json index 3742d68..11d3c3a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@smartesting/gravity-data-collector", - "version": "3.15.0", + "version": "3.16.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@smartesting/gravity-data-collector", - "version": "3.15.0", + "version": "3.16.0", "license": "MIT", "dependencies": { "@rrweb/types": "^2.0.0-alpha.11", diff --git a/package.json b/package.json index aaf6c48..68baba6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smartesting/gravity-data-collector", - "version": "3.15.0", + "version": "3.16.0", "description": "Browser lib to collect your users behaviors and push the data in your Gravity project", "main": "dist/index.js", "types": "dist/types.d.ts", diff --git a/src/config.ts b/src/config.ts index 202f2b5..a0251c7 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,4 +1,4 @@ export const config = { - COLLECTOR_VERSION: '3.15.0', + COLLECTOR_VERSION: '3.16.0', ERRORS_TERMINATE_TRACKING: [403, 409, 422], }