Skip to content

Commit

Permalink
[RELEASE] 8.1 - new features for TYPO3 12
Browse files Browse the repository at this point in the history
  • Loading branch information
sbusemann committed May 9, 2024
1 parent f88eb93 commit e195a6c
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 58 deletions.
78 changes: 35 additions & 43 deletions Documentation/Changelog/Index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@

Changelog
=========
-
:Version: 8.1.0
:Date: 2024-05-09
:Changes:

* [FEATURE] Add confirmation form to delete profile during registration - thx to Stefan Busemann (in2code)
* [FEATURE] Add BeforeMailBodyRenderEvent - thx to Michael Bakonyi
* [FEATURE] Include bootstrap directly from repository instead of maxcdn.bootstrapcdn.com - thx to Felix Ranesberger (in2code)
* [FEATURE] Allow multiple CC recipients With this change more than one CC recipient for emails can be configured - thx to Marco Huber
* [BUGFIX] Fix a typo in the labels - thx to Oliver Klee
* [BUGFIX] Open the "terms & conditions" page in a new tab - thx to Oliver Klee
* [BUGFIX] errorClass attribute not working - thx to Stig Nørgaard Færch
* [BUGFIX] Use mixed return type for ServersideValidator::getValu - thx to Andreas Nedbal (in2code)
* [BUGFIX] Replace incorrect response in AdminConfirmation - thx Thomas Anders
* [BUGFIX] Restore email notification to admin after registration - thx Patrick Lenk
* [DOC] Update documenation - thx to Daniel Hoffman (in2code)

-
:Version: 8.0.1
Expand Down Expand Up @@ -36,53 +52,20 @@ Changelog
* [DOCUMENTATION] Replace outdated signal documentation with event description
* [TASK] Update unit tests & behaviour tests
* [BUGFIX] Fix validation for allowed usergroups
-
:Version: 7.2.3
:Date: 2023-12-13
:Changes:

* [SECURITY] This update is needed for version for 7.0.0 to 7.2.2 older versions are not affected
* BUGFIX] Dont use initilize actions for granting access - thx to Daniel Hofmann (in2code)

-
:Version: 7.2.2
:Date: 2023-10-04
:Changes:

* [SECURITY] This update is needed for version for 7.0.0 to 7.2.1 older versions are not affected
* [BUGFIX] Add missing permission check for invitation controller - thx to Daniel Hofmann (in2code)

-
:Version: 7.2.1
:Date: 2023-08-08
:Version: 7.3.0
:Date: 2024-05-08
:Changes:

* [TASK] Adds documentation for extended - thx to Daniel Hofmann (in2code)
* [TASK] Update Image used for Github Actions
* [BUGFIX] Fixes reaction when no typoscript configuration is set for redirect - thx to Daniel Hofmann (in2code)
* [BUGFIX] Fixed Object Support for getDirtyPropertiesFromUser() - thx to Daniel Hofmann (in2code)
* [FEATURE] Add confirmation form to delete profile during registration - thx to Stefan Busemann (in2code)
* [FEATURE] Add BeforeMailBodyRenderEvent - thx to Michael Bakonyi
* [FEATURE] Include bootstrap directly from repository instead of maxcdn.bootstrapcdn.com - thx to Felix Ranesberger (in2code)
* [BUGFIX] Fix a typo in the labels - thx to Oliver Klee
* [BUGFIX] Open the "terms & conditions" page in a new tab - thx to Oliver Klee
* [BUGFIX] errorClass attribute not working - thx to Stig Nørgaard Færch
* [DOC] Update documenation - thx to Daniel Hoffman (in2code)

-
:Version: 7.2.0
:Date: 2023-07-17
:Changes:

* [FEATURE] Add column "inactive since" to backend list - thx to Thomas Löffler
* [BUGFIX] missing email AdminNotify after editing of user profile - thx to Christian Ludwig
* [BUGFIX] Do not re-evaluate object values in ServersideValidator - thx to Torben Hansen
* [BUGFIX] Add full object support in getDirtyPropertiesFromUser() - thx to Daniel Haupt
* [BUGFIX] Prevent undefined array key for empty configPID - thx to Daniel Haupt
* [BUGFIX] Migrate usage of GU::lcfirst with Rector - thx to Torben Hansen
* [TASK] Corrects Documenation Rendering Configuration - thx to Daniel Hoffmann
* [TASK] [TASK] Replace jQuery scrollTop with vanilla scrollIntoView - thx to Felix Ranesberger

-
:Version: 7.1.1
:Date: 2023-03-16
:Changes:

* [BUGFIX] Notification email to admin now sends changes again
* [BUGFIX] Notification email to admin is also sent when adding recipient's address to flex form only
-
:Version: 7.2.3
:Date: 2023-12-13
Expand Down Expand Up @@ -130,7 +113,6 @@ Changelog

* [BUGFIX] Notification email to admin now sends changes again
* [BUGFIX] Notification email to admin is also sent when adding recipient's address to flex form only
* [TASK] Removes configPID from ext_typoscript_setup.typoscript

-
:Version: 7.1.0
Expand Down Expand Up @@ -167,6 +149,16 @@ Changelog
* [DOCS] Add note for configpid setting
* [BUGFIX] updated sjbr/static-info-tables version

-
:Version: 6.4.0
:Date: 2024-05-08
:Changes:

* [FEATURE] Add confirmation form to delete profile during registration
* [TASK] Remove unnecessary scrollIntoView property - thx to Felix Ranesberger (in2code)
* [TASK] Replace jQuery scrollTop with vanilla scrollIntoView - thx to Felix Ranesberger (in2code)
* [TASK] Build new JS distribution file - thx to Felix Ranesberger (in2code)

-
:Version: 6.3.2
:Date: 2021-10-13
Expand Down
7 changes: 3 additions & 4 deletions ext_emconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@
$EM_CONF[$_EXTKEY] = [
'title' => 'femanager',
'description' => 'TYPO3 Frontend User Registration and Management based on
Extbase and Fluid and on TYPO3 12 and the possibility to extend it.
Extension basicly works like sr_feuser_register',
Extbase and Fluid and on TYPO3 12 and the possibility to extend it.',
'category' => 'plugin',
'author' => 'Alexander Kellner, Stefan Busemann',
'author' => 'Alexander Kellner, Stefan Busemann, Daniel Hoffmann',
'author_email' => 'info@in2code.de',
'author_company' => 'in2code.de - Wir leben TYPO3',
'state' => 'stable',
'version' => '8.0.1',
'version' => '8.1.0',
'constraints' => [
'depends' => [
'typo3' => '12.0.0-12.4.99',
Expand Down
22 changes: 11 additions & 11 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,17 @@ Quick guide:

## Which femanager for which TYPO3 and PHP?

| Femanager | TYPO3 | PHP | Support/Development |
|-----------|-----------|-----------|----------------------------------------------------------------|
| 13.x | 13 LTS | 8.2 | Features, Bugfixes, Security Updates |
| 8.x | 12 LTS | 8.1 - 8.2 | Features, Bugfixes, Security Updates |
| 7.x | 11 LTS | 7.4 - 8.1 | Bugfixes, Security Updates |
| 6.x | 10 LTS | 7.2 - 7.4 | Security Updates - If you want feature backports ask for an offer |
| 5.x | 8, 9 LTS | 7.2 - 7.3 | Security Updates |
| 4.x | 8.7 | 7.0 - 7.2 | Out of support / security updates on demand (ask for an offer) |
| 3.x | 8.7 | 7.0 - 7.2 | Out of support / security updates on demand (ask for an offer) |
| 2.x | 7.6 | 5.5 - 7.0 | Out of support / security updates on demand (ask for an offer) |
| 1.x | 6.2 - 7.6 | 5.5 - 7.0 | Out of support / security updates on demand (ask for an offer) |
| Femanager | TYPO3 | PHP | Support/Development | Branch |
|-----------|-----------|-----------|----------------------------------------------------------------|---------|
| 13.x | 13 LTS | 8.2 | Features, Bugfixes, Security Updates | n/a yet |
| 8.x | 12 LTS | 8.1 - 8.2 | Features, Bugfixes, Security Updates | main |
| 7.x | 11 LTS | 7.4 - 8.1 | Bugfixes, Security Updates | v7 |
| 6.x | 10 LTS | 7.2 - 7.4 | Security Updates - If you want feature backports ask for an offer| v6 |
| 5.x | 8, 9 LTS | 7.2 - 7.3 | Security Updates | v5 |
| 4.x | 8.7 | 7.0 - 7.2 | Out of support / security updates on demand (ask for an offer) | n/a |
| 3.x | 8.7 | 7.0 - 7.2 | Out of support / security updates on demand (ask for an offer) | n/a |
| 2.x | 7.6 | 5.5 - 7.0 | Out of support / security updates on demand (ask for an offer) | v2 |
| 1.x | 6.2 - 7.6 | 5.5 - 7.0 | Out of support / security updates on demand (ask for an offer) | n/a |

## Your Contribution

Expand Down

0 comments on commit e195a6c

Please sign in to comment.