This is an automated email from the ASF dual-hosted git repository.
poorejc pushed a commit to branch test
in repository https://gitbox.apache.org/repos/asf/flagon-useralejs.git
The following commit(s) were added to refs/heads/test by this push:
new 45adac9 updated versioning to 2.4.0 throughout file structure
45adac9 is described below
commit 45adac9881759501827df611a6e3ae5420d304f8
Author: poorejc <[email protected]>
AuthorDate: Wed Aug 9 00:42:05 2023 -0400
updated versioning to 2.4.0 throughout file structure
---
NOTICE | 2 +-
README.md | 16 +++++++---------
build/UserALEWebExtension/background.js | 4 ++--
build/UserALEWebExtension/content.js | 6 +++---
build/UserALEWebExtension/manifest.json | 2 +-
build/UserALEWebExtension/options.js | 4 ++--
build/{userale-2.3.0.js => userale-2.4.0.js} | 2 +-
build/{userale-2.3.0.min.js => userale-2.4.0.min.js} | 2 +-
doap-userale.js.rdf | 4 ++--
package-lock.json | 4 ++--
package.json | 4 ++--
src/UserALEWebExtension/globals.js | 4 ++--
src/UserALEWebExtension/manifest.json | 2 +-
test/getInitialSettings_fetchAll.html | 2 +-
test/getInitialSettings_userParam.html | 2 +-
test/main.html | 2 +-
16 files changed, 30 insertions(+), 32 deletions(-)
diff --git a/NOTICE b/NOTICE
index 2d8bc9e..3ccdb80 100755
--- a/NOTICE
+++ b/NOTICE
@@ -1,5 +1,5 @@
Apache Flagon UserALE.js
-Copyright 2022 The Apache Software Foundation
+Copyright 2023 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 8249dbe..214812c 100644
--- a/README.md
+++ b/README.md
@@ -32,12 +32,10 @@ Additional documentation and a demonstration can be found
at the [Apache Flagon
[Contributing](https://github.com/apache/flagon-useralejs#contributing)
[License](https://github.com/apache/flagon-useralejs#license)
-## What's New in Version 2.3.0?
+## What's New in Version 2.4.0?
-- Fixes issue in autostart configurations and start(), stop() export usage
-- Adds additional unit tests for autostart configurations
-- Adds React App.js example/test utility
-- Adds additional UserALE.js custom logging examples
+- Refactors Map and Filter APIs as generalized callbacks for functionality
+- Adds additional UserALE.js API examples utilizing generalized callbacks
- Minor updates to update deprecated downstream dev dependencies
- Minor changes to documentation, updated examples
@@ -71,7 +69,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.3.0.min.js"></script>
+<script
src="./node_modules/flagon-userale/build/userale-2.4.0.min.js"></script>
```
Our [script tag
example](https://github.com/apache/flagon-useralejs/tree/master/example)
illustrates this use-case
@@ -84,7 +82,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.3.0.min.js"></script>
+<script
src="https://cdn.jsdelivr.net/npm/[email protected]/build/userale-2.4.0.min.js"></script>
```
We also support a
[WebExtension](https://github.com/apache/flagon-useralejs/tree/master/src/UserALEWebExtension)
that can be added to your browser in developer mode. Follow the link for
instructions.
@@ -146,10 +144,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.3.0.min.js"
+ src="./node_modules/flagon-userale/build/userale-2.4.0.min.js"
data-url="http://localhost:8000/"
data-user="example-user"
- data-version="2.3.0"
+ data-version="2.4.0"
data-tool="Apache UserALE.js Example"
></script>
```
diff --git a/build/UserALEWebExtension/background.js
b/build/UserALEWebExtension/background.js
index ad860f7..e5c2d63 100644
--- a/build/UserALEWebExtension/background.js
+++ b/build/UserALEWebExtension/background.js
@@ -19,10 +19,10 @@
// these are default values, which can be overridden by the user on the
options page
var userAleHost = 'http://localhost:8000';
-var userAleScript = 'userale-2.3.0.min.js';
+var userAleScript = 'userale-2.4.0.min.js';
var toolUser = 'nobody';
var toolName = 'test_app';
-var toolVersion = '2.3.0';
+var toolVersion = '2.4.0';
/* eslint-enable */
diff --git a/build/UserALEWebExtension/content.js
b/build/UserALEWebExtension/content.js
index 4fed168..23d353a 100644
--- a/build/UserALEWebExtension/content.js
+++ b/build/UserALEWebExtension/content.js
@@ -19,10 +19,10 @@
// these are default values, which can be overridden by the user on the
options page
var userAleHost = 'http://localhost:8000';
-var userAleScript = 'userale-2.3.0.min.js';
+var userAleScript = 'userale-2.4.0.min.js';
var toolUser = 'nobody';
var toolName = 'test_app';
-var toolVersion = '2.3.0';
+var toolVersion = '2.4.0';
/* eslint-enable */
@@ -47,7 +47,7 @@ var prefix = 'USERALE_';
var CONFIG_CHANGE = prefix + 'CONFIG_CHANGE';
var ADD_LOG = prefix + 'ADD_LOG';
-var version = "2.3.0";
+var version = "2.4.0";
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/build/UserALEWebExtension/manifest.json
b/build/UserALEWebExtension/manifest.json
index 3984e87..ca26fdc 100644
--- a/build/UserALEWebExtension/manifest.json
+++ b/build/UserALEWebExtension/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "User ALE Extension",
- "version": "2.3.0",
+ "version": "2.4.0",
"description": "Injects UserALE.js into every page for testing & user
research purposes",
"icons": {
"48": "icons/border-48.png"
diff --git a/build/UserALEWebExtension/options.js
b/build/UserALEWebExtension/options.js
index d935e14..8a40ae3 100644
--- a/build/UserALEWebExtension/options.js
+++ b/build/UserALEWebExtension/options.js
@@ -19,10 +19,10 @@
// these are default values, which can be overridden by the user on the
options page
var userAleHost = 'http://localhost:8000';
-var userAleScript = 'userale-2.3.0.min.js';
+var userAleScript = 'userale-2.4.0.min.js';
var toolUser = 'nobody';
var toolName = 'test_app';
-var toolVersion = '2.3.0';
+var toolVersion = '2.4.0';
/* eslint-enable */
diff --git a/build/userale-2.3.0.js b/build/userale-2.4.0.js
similarity index 99%
rename from build/userale-2.3.0.js
rename to build/userale-2.4.0.js
index d1a22fb..38c7f95 100644
--- a/build/userale-2.3.0.js
+++ b/build/userale-2.4.0.js
@@ -32,7 +32,7 @@
}, _typeof(obj);
}
- var version$1 = "2.3.0";
+ var version$1 = "2.4.0";
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
diff --git a/build/userale-2.3.0.min.js b/build/userale-2.4.0.min.js
similarity index 99%
rename from build/userale-2.3.0.min.js
rename to build/userale-2.4.0.min.js
index 6710907..f21c93a 100644
--- a/build/userale-2.3.0.min.js
+++ b/build/userale-2.4.0.min.js
@@ -16,4 +16,4 @@
* @preserved
*/
-!function(e,t){"object"==typeof exports&&"undefined"!=typeof
module?t(exports):"function"==typeof
define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof
globalThis?globalThis:e||self).userale={})}(this,(function(e){"use
strict";function t(e){return t="function"==typeof Symbol&&"symbol"==typeof
Symbol.iterator?function(e){return typeof e}:function(e){return
e&&"function"==typeof
Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof
e},t(e)}var n="2.3.0",o=null;fu [...]
+!function(e,t){"object"==typeof exports&&"undefined"!=typeof
module?t(exports):"function"==typeof
define&&define.amd?define(["exports"],t):t((e="undefined"!=typeof
globalThis?globalThis:e||self).userale={})}(this,(function(e){"use
strict";function t(e){return t="function"==typeof Symbol&&"symbol"==typeof
Symbol.iterator?function(e){return typeof e}:function(e){return
e&&"function"==typeof
Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof
e},t(e)}var n="2.4.0",o=null;fu [...]
diff --git a/doap-userale.js.rdf b/doap-userale.js.rdf
index 8486624..3538342 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.3.0 release</name>
+ <name>2.4.0 release</name>
<created>2022-04-06</created>
- <revision>2.3.0</revision>
+ <revision>2.4.0</revision>
</Version>
</release>
<repository>
diff --git a/package-lock.json b/package-lock.json
index 2cb5664..65df1e5 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "flagon-userale",
- "version": "2.3.0",
+ "version": "2.4.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "flagon-userale",
- "version": "2.3.0",
+ "version": "2.4.0",
"license": "Apache-2.0",
"devDependencies": {
"@babel/core": "^7.22.10",
diff --git a/package.json b/package.json
index 626d7e1..637de79 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "flagon-userale",
- "version": "2.3.0",
+ "version": "2.4.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.3.0.js",
+ "main": "build/userale-2.4.0.js",
"scripts": {
"lint": "eslint ./src --fix",
"pretest": "npm run lint && npm run clean && npm run build",
diff --git a/src/UserALEWebExtension/globals.js
b/src/UserALEWebExtension/globals.js
index f1887e7..bda0d7f 100644
--- a/src/UserALEWebExtension/globals.js
+++ b/src/UserALEWebExtension/globals.js
@@ -19,9 +19,9 @@
// these are default values, which can be overridden by the user on the
options page
export var userAleHost = 'http://localhost:8000';
-export var userAleScript = 'userale-2.3.0.min.js';
+export var userAleScript = 'userale-2.4.0.min.js';
export var toolUser = 'nobody';
export var toolName = 'test_app';
-export var toolVersion = '2.3.0';
+export var toolVersion = '2.4.0';
/* eslint-enable */
diff --git a/src/UserALEWebExtension/manifest.json
b/src/UserALEWebExtension/manifest.json
index 3984e87..ca26fdc 100644
--- a/src/UserALEWebExtension/manifest.json
+++ b/src/UserALEWebExtension/manifest.json
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "User ALE Extension",
- "version": "2.3.0",
+ "version": "2.4.0",
"description": "Injects UserALE.js into every page for testing & user
research purposes",
"icons": {
"48": "icons/border-48.png"
diff --git a/test/getInitialSettings_fetchAll.html
b/test/getInitialSettings_fetchAll.html
index 49e4423..bf34343 100644
--- a/test/getInitialSettings_fetchAll.html
+++ b/test/getInitialSettings_fetchAll.html
@@ -25,7 +25,7 @@ limitations under the License.
data-log-details=false
data-resolution=100
data-tool='testtool'
- src="../build/userale-2.3.0.min.js">
+ src="../build/userale-2.4.0.min.js">
</script>
</head>
diff --git a/test/getInitialSettings_userParam.html
b/test/getInitialSettings_userParam.html
index baceeb2..f331408 100644
--- a/test/getInitialSettings_userParam.html
+++ b/test/getInitialSettings_userParam.html
@@ -18,7 +18,7 @@ limitations under the License.
<html>
<head>
<script data-user-from-params='user'
- src="../build/userale-2.3.0.min.js">
+ src="../build/userale-2.4.0.min.js">
</script>
</head>
diff --git a/test/main.html b/test/main.html
index 94d55b0..539c320 100644
--- a/test/main.html
+++ b/test/main.html
@@ -17,7 +17,7 @@ limitations under the License.
<!DOCTYPE HTML>
<html>
<head>
- <script src="../build/userale-2.3.0.min.js"></script>
+ <script src="../build/userale-2.4.0.min.js"></script>
</head>
<body>