diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b32fb9..2cea304 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,19 +5,11 @@ 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/v8.0.2...main) - -### Info +## [8.1.0](https://github.com/Smartesting/gravity-data-collector/compare/v8.0.2...v8.1.0) ### Added -### Changed - -### Deprecated - -### Removed - -### Fixed +- use `collectorApiUrl` property in `/settings` response to make tracking requests ## [8.0.2](https://github.com/Smartesting/gravity-data-collector/compare/v8.0.1...v8.0.2) diff --git a/README.md b/README.md index 8185462..9bb7797 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ In your `package.json`, add the following: ```json { "dependencies": { - "@smartesting/gravity-data-collector": "^8.0.2" + "@smartesting/gravity-data-collector": "^8.1.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@8.0.2/dist/gravity-logger-min.js" + src="https://unpkg.com/@smartesting/gravity-data-collector@8.1.0/dist/gravity-logger-min.js" > ``` diff --git a/package-lock.json b/package-lock.json index c9eb262..d2bac2a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@smartesting/gravity-data-collector", - "version": "8.0.2", + "version": "8.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@smartesting/gravity-data-collector", - "version": "8.0.2", + "version": "8.1.0", "license": "MIT", "dependencies": { "@smartesting/rrdom": "^2.0.0-alpha.20", diff --git a/package.json b/package.json index d8345cc..18c4048 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smartesting/gravity-data-collector", - "version": "8.0.2", + "version": "8.1.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 0d67300..17f5087 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,4 +1,4 @@ export const config = { - COLLECTOR_VERSION: '8.0.2', + COLLECTOR_VERSION: '8.1.0', ERRORS_TERMINATE_TRACKING: [403, 409, 422], }