From 514edc0c844e6907a0f4cc66405bdc554859dae2 Mon Sep 17 00:00:00 2001 From: Vincent Pretre Date: Thu, 7 Dec 2023 11:00:38 +0100 Subject: [PATCH] Prepare release 3.17 --- CHANGELOG.md | 12 +----------- README.md | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- src/config.ts | 2 +- 5 files changed, 7 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ac96d07..bc9bbe2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,22 +5,12 @@ 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.16.0...main) - -### Info - -### Added +## [3.17.0](https://github.com/Smartesting/gravity-data-collector/compare/v3.16.0...v3.17.0) ### Changed - Update `UserActionData` to embed data about the targeted element. -### Deprecated - -### Removed - -### Fixed - ## [3.16.0](https://github.com/Smartesting/gravity-data-collector/compare/v3.15.0...v3.16.0) ### Added diff --git a/README.md b/README.md index 942f077..f0cfb7d 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.16.0" + "@smartesting/gravity-data-collector": "^3.17.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.16.0/dist/gravity-logger-min.js" + src="https://unpkg.com/@smartesting/gravity-data-collector@3.17.0/dist/gravity-logger-min.js" > ``` diff --git a/package-lock.json b/package-lock.json index 11d3c3a..4634046 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@smartesting/gravity-data-collector", - "version": "3.16.0", + "version": "3.17.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@smartesting/gravity-data-collector", - "version": "3.16.0", + "version": "3.17.0", "license": "MIT", "dependencies": { "@rrweb/types": "^2.0.0-alpha.11", diff --git a/package.json b/package.json index 68baba6..fe18d29 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@smartesting/gravity-data-collector", - "version": "3.16.0", + "version": "3.17.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 a0251c7..49c66ee 100644 --- a/src/config.ts +++ b/src/config.ts @@ -1,4 +1,4 @@ export const config = { - COLLECTOR_VERSION: '3.16.0', + COLLECTOR_VERSION: '3.17.0', ERRORS_TERMINATE_TRACKING: [403, 409, 422], }