diff --git a/CHANGELOG.md b/CHANGELOG.md index f8183f1..c9e76d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ # lux.js changelog -## 2022-06-??: v302 +## 2022-10-11: v304 + +### Bug fixes + +- Prevent a TypeError from being thrown when an interaction event is triggered with a target that is not an `Element`. + +## 2022-10-11: v303 + +### Bug fixes + +- Fixed a bug where page group URL matching didn't work on exact path matches + +## 2022-10-11: v302 ### Improvements diff --git a/src/lux.ts b/src/lux.ts index 3bc790b..6485bcb 100644 --- a/src/lux.ts +++ b/src/lux.ts @@ -21,7 +21,7 @@ let LUX = (window.LUX as LuxGlobal) || {}; let scriptEndTime = scriptStartTime; LUX = (function () { - const SCRIPT_VERSION = "303"; + const SCRIPT_VERSION = "304"; const logger = new Logger(); const globalConfig = Config.fromObject(LUX);