This is an automated email from the ASF dual-hosted git repository. poorejc pushed a commit to branch 2.3.0-RC-01 in repository https://gitbox.apache.org/repos/asf/incubator-flagon-useralejs.git
commit bcd47b27e1c37fa5d0bd9956dcbf3863269f7634 Author: poorejc <[email protected]> AuthorDate: Wed Apr 6 23:27:17 2022 -0400 docs update for 2.3.0-RC-01 --- CHANGELOG.md | 10 ++++++++++ NOTICE | 2 +- README.md | 18 ++++++++---------- doap-userale.js.rdf | 6 +++--- package.json | 4 ++-- 5 files changed, 24 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 25baedc..3796eae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Changelog ========= +Apache Flagon UserALE.js (Incubating) 2.3.0 (2021-04-05) +------------------------------- +* Release Notes - Flagon - Version UserALE.js 2.3.0 +* [Closed Tickets](https://github.com/apache/incubator-flagon-useralejs/projects/9) + * Fixes issue in autostart configurations and start(), stop() export usage + * Adds additional unit tests for autostart configurations + * Adds React App.js example/test utility + * Minor updates to update deprecated downstream dev dependencies + * Minor changes to documentation, updated examples + Apache Flagon UserALE.js (Incubating) 2.2.0 (2021-05-20) ------------------------------- * Release Notes - Flagon - Version UserALE.js 2.2.0 diff --git a/NOTICE b/NOTICE index 441e472..2d8bc9e 100755 --- a/NOTICE +++ b/NOTICE @@ -1,5 +1,5 @@ Apache Flagon UserALE.js -Copyright 2021 The Apache Software Foundation +Copyright 2022 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/), based on source code originally developed and generously granted to The Apache Software Foundation diff --git a/README.md b/README.md index 761bc0f..cfa420c 100644 --- a/README.md +++ b/README.md @@ -31,13 +31,11 @@ Additional documentation and a demonstration can be found at the [Apache Flagon [Contributing](https://github.com/apache/incubator-flagon-useralejs#contributing) [License](https://github.com/apache/incubator-flagon-useralejs#license) -## What's New in Version 2.2.0? +## What's New in Version 2.3.0? -- Fixes issue in SendOnClose that caused end-of-page-lifecyle events not to be logged -- Modernizes build pipeline (now uses rollup instead of gulp) -- Adds Cypress Journey testing framework -- Modernizes Unit Testing Framework -- Adds 'PageLoad' logs, with load time metrics +- Fixes issue in autostart configurations and start(), stop() export usage +- Adds additional unit tests for autostart configurations +- Adds React App.js example/test utility - Minor updates to update deprecated downstream dev dependencies - Minor changes to documentation, updated examples @@ -66,7 +64,7 @@ You can also include UserALE.js as a `script-tag`. A pre-built version of the us repositories: ```html -<script src="./node_modules/flagon-userale/build/userale-2.2.0.min.js"></script> +<script src="./node_modules/flagon-userale/build/userale-2.3.0.min.js"></script> ``` Our [script tag example](https://github.com/apache/incubator-flagon-useralejs/tree/master/example) illustrates this use-case @@ -79,7 +77,7 @@ npm install --save-dev flagon-userale Or if you want to use a CDN, then you can use something like ```html -<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/userale-2.2.0.min.js"></script> +<script src="https://cdn.jsdelivr.net/npm/[email protected]/build/userale-2.3.0.min.js"></script> ``` We also support a [WebExtension](https://github.com/apache/incubator-flagon-useralejs/tree/master/src/UserALEWebExtension) that can be added to your browser in developer mode. Follow the link for instructions. @@ -129,10 +127,10 @@ If you have included UserALE.js as a `script-tag` in your project, you can use H ```html <script - src="./node_modules/flagon-userale/build/userale-2.2.0.min.js" + src="./node_modules/flagon-userale/build/userale-2.3.0.min.js" data-url="http://localhost:8000/" data-user="example-user" - data-version="2.2.0" + data-version="2.3.0" data-tool="Apache UserALE.js Example" ></script> ``` diff --git a/doap-userale.js.rdf b/doap-userale.js.rdf index 05961b1..17f534c 100755 --- a/doap-userale.js.rdf +++ b/doap-userale.js.rdf @@ -36,9 +36,9 @@ <category rdf:resource="https://projects.apache.org/projects.html?category#Library" /> <release> <Version> - <name>2.2.0 release</name> - <created>2021-05-18</created> - <revision>2.2.0</revision> + <name>2.3.0 release</name> + <created>2022-04-06</created> + <revision>2.3.0</revision> </Version> </release> <repository> diff --git a/package.json b/package.json index 420fbd7..dbc204c 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,8 @@ { "name": "flagon-userale", - "version": "2.2.0", + "version": "2.3.0", "description": "UserALE.js is the UserALE client for DOM and JavaScript-based applications. It automatically attaches event handlers to log every user interaction on a web page, including rich JS single-page apps.", - "main": "build/userale-2.2.0.js", + "main": "build/userale-2.3.0.js", "scripts": { "lint": "eslint ./src --fix", "pretest": "npm run lint && npm run clean && npm run build",
