diff --git a/Documentation/Technical/Changelog/Index.md b/Documentation/Technical/Changelog/Index.md index 8fd218dd..1e949666 100644 --- a/Documentation/Technical/Changelog/Index.md +++ b/Documentation/Technical/Changelog/Index.md @@ -4,20 +4,22 @@ ## Breaking changes !!! -| Version | Situation | Upgrade instructions | -|--------------------------------|-----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| From former versions to 26.2.0 | Name of localStorage settings changed | Nothing to code, but maybe you have to adjust your privacy note: Local storage settings `luxTrackingOptOut` + `luxTrackingOptIn` were removed. A new name is given `luxTracking` | -| From former versions to 23.0.0 | Signals are migrated to PSR-14 events | If you have extended LUX via slots (based in signals), you have to migrate your slots to eventlisteners - see [Events documentation](../Events/Index.md) for details | -| From former versions to 21.0.0 | Small change: Marker names in email4link template changed | If you have overwritten the Email4Link template file, take care to use the "EMAIL4LINK_" prefix now for the 3 variables/markers (###TITLE### => ###EMAIL4LINK_TITLE###) | -| From former versions to 17.1.0 | Small change: Disable IP-API.com via Typoscript now | If you turned off connection to IP-API.com via extension manager settings, you have to do this now via TypoScript - see [documentation](../../../Documentation/Privacy/IpAddresses.md) | -| From former versions to 8.x | Referrers are stored on a different place now | Call your TYPO3 upgrade wizard. There will be one more step that will copy values from _visitor.referrer to _pagevisit.referrer table. | -| From former versions to 7.x | Cookie-Table was replaced with a Fingerprint-Table | Call your TYPO3 upgrade wizard. There will be one more step that will copy values from _idcookie to _fingerprint table. Note that CommandControllers are replaced by Symfony Commands! | -| From former versions to 3.x | The visitor object can handle more cookies now | After updating use the update button in extension manager of if you have a lot of data stored, you can also use the LuxUpdateCommandController to prevent timeouts | +| Version | Situation | Upgrade instructions | +|---------------------------------|-----------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| From former versions to 26.10.0 | IP-address will be used for creating fingerprint hashes | There is nothing to do for your, just a note that old fingerprints may not be recognized any more because we added IP-address to the fingerprint hash to be more unique now | +| From former versions to 26.2.0 | Name of localStorage settings changed | Nothing to code, but maybe you have to adjust your privacy note: Local storage settings `luxTrackingOptOut` + `luxTrackingOptIn` were removed. A new name is given `luxTracking` | +| From former versions to 23.0.0 | Signals are migrated to PSR-14 events | If you have extended LUX via slots (based in signals), you have to migrate your slots to eventlisteners - see [Events documentation](../Events/Index.md) for details | +| From former versions to 21.0.0 | Small change: Marker names in email4link template changed | If you have overwritten the Email4Link template file, take care to use the "EMAIL4LINK_" prefix now for the 3 variables/markers (###TITLE### => ###EMAIL4LINK_TITLE###) | +| From former versions to 17.1.0 | Small change: Disable IP-API.com via Typoscript now | If you turned off connection to IP-API.com via extension manager settings, you have to do this now via TypoScript - see [documentation](../../../Documentation/Privacy/IpAddresses.md) | +| From former versions to 8.x | Referrers are stored on a different place now | Call your TYPO3 upgrade wizard. There will be one more step that will copy values from _visitor.referrer to _pagevisit.referrer table. | +| From former versions to 7.x | Cookie-Table was replaced with a Fingerprint-Table | Call your TYPO3 upgrade wizard. There will be one more step that will copy values from _idcookie to _fingerprint table. Note that CommandControllers are replaced by Symfony Commands! | +| From former versions to 3.x | The visitor object can handle more cookies now | After updating use the update button in extension manager of if you have a lot of data stored, you can also use the LuxUpdateCommandController to prevent timeouts | ## Changelog | Version | Date | State | Description | |------------|------------|----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 26.10.0 | 2024-10-25 | Feature | Backport: Use IP-address in fingerprint hash to get a more unique hash, add sorting for lead list | | 26.9.1 | 2024-06-13 | Bugfix | Backport: Use latest pagevisit and latest log entry to show date of latest visit | | 26.9.0 | 2024-05-27 | Feature | Show also first page visit and referrer in CSV downloads of lead list | | 26.8.0 | 2024-04-11 | Feature | Extend Lead CSV download with country, last visit and last download | diff --git a/ext_emconf.php b/ext_emconf.php index d154377e..b53a743e 100644 --- a/ext_emconf.php +++ b/ext_emconf.php @@ -4,7 +4,7 @@ 'description' => 'Living User Experience - LUX - the Marketing Automation tool for TYPO3. Turn your visitors to leads. Identification and profiling of your visitors within your TYPO3 website.', 'category' => 'plugin', - 'version' => '26.9.1', + 'version' => '26.10.0', 'author' => 'Alex Kellner', 'author_email' => 'alexander.kellner@in2code.de', 'author_company' => 'in2code.de',