-
Notifications
You must be signed in to change notification settings - Fork 206
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Conflicts: # CHANGELOG-7.2.md # source/Core/Email.php
- Loading branch information
Showing
11 changed files
with
248 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Change Log for OXID eShop Community Edition Core Component | ||
|
||
## v7.2.0 - unreleased | ||
|
||
### Added | ||
- Translations for Change language and currency | ||
- New parameter `oxid_esales.email.disable_order_emails` to enable and disable sending order emails | ||
|
||
### Deprecated | ||
- Filesystem module cache related services and interface will be refactored and some of them will be removed | ||
- `OxidEsales\EshopCommunity\Application\Model\Attribute::_sTitle` property | ||
|
||
### Fixed | ||
- User registration in the Private Sales mode | ||
- New item in basket message display [#0007548](https://bugs.oxid-esales.com/view.php?id=7548) [PR-964](https://github.com/OXID-eSales/oxideshop_ce/pull/964) | ||
- Multiple language creation [#0007683](https://bugs.oxid-esales.com/view.php?id=7683) | ||
- Remove unnecessary `<small>` tags from CHF currency | ||
- Existing sessions should be destroyed on password change [#0007324](https://bugs.oxid-esales.com/view.php?id=7324) | ||
- Forgot password message | ||
|
||
### Changed | ||
- Changed the exported user file name from `Export_recipient_` to `Export_user_recipient_status_` to better reflect the content of the export. | ||
- User needs to log in again after changing his password | ||
|
||
### Removed | ||
- Obsolete demo data and images from the `source/out` directory | ||
- PHP v8.1 support |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -100,24 +100,24 @@ public function sendUserPasswordReminder(AcceptanceTester $I): void | |
$I->wantToTest('user password reminder in my account navigation'); | ||
|
||
$userData = $this->getExistingUserData(); | ||
|
||
$startPage = $I->openShop(); | ||
|
||
//open password reminder page in account menu popup | ||
$passwordReminderPage = $startPage->openUserPasswordReminderPage(); | ||
$I->see(Translator::translate('HAVE_YOU_FORGOTTEN_PASSWORD')); | ||
|
||
//enter not existing email | ||
$passwordReminderPage = $passwordReminderPage->resetPassword('[email protected]'); | ||
$I->see(Translator::translate('ERROR_MESSAGE_PASSWORD_EMAIL_INVALID')); | ||
$I->amGoingTo('reset password with invalid email format'); | ||
$passwordReminderPage->resetPassword('wrongEmail'); | ||
$I->see(Translator::translate('DD_FORM_VALIDATION_VALIDEMAIL')); | ||
|
||
//enter existing email | ||
$passwordReminderPage = $passwordReminderPage->resetPassword($userData['userLoginName']); | ||
$I->amGoingTo('reset password with existing user email'); | ||
$passwordReminderPage->resetPassword($userData['userLoginName']); | ||
$I->see(Translator::translate('PASSWORD_WAS_SEND_TO') . ' ' . $userData['userLoginName']); | ||
|
||
//open password reminder page in main user account page | ||
$passwordReminderPage->openUserPasswordReminderPage(); | ||
$I->see(Translator::translate('HAVE_YOU_FORGOTTEN_PASSWORD')); | ||
$I->amGoingTo('reset password with non-existing user email'); | ||
$nonExistingEmail = '[email protected]'; | ||
$startPage->openUserPasswordReminderPage() | ||
->resetPassword($nonExistingEmail); | ||
$I->see(Translator::translate('PASSWORD_WAS_SEND_TO') . ' ' . $nonExistingEmail); | ||
} | ||
|
||
/** | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.