Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release notes about SectionDisplayDriver breaking changes #15792

Merged
merged 4 commits into from
Apr 22, 2024
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/docs/releases/1.9.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,9 @@ In the past, we utilized the injection of `ISmsProvider` for sending SMS message

Additionally, `Twilio` provider is no longer enabled by default. If you want to use Twilio SMS provider, you must enable the provider by visiting the email settings `Configuration` > `Settings` > `Email` and see the `Twilio` tab.

### `SectionDisplayDriver.UpdateAsync()` now receives an `UpdateEditorContext` parameter, not `BuildEditorContext`

`SectionDisplayDriver` now uses the appropriate UpdateEditorContext on its Update methods. Every driver that inherits from it will be required to update their contexts. See [the corresponding pull request](https://github.com/OrchardCMS/OrchardCore/pull/15488) for context and for examples of the changes you have to implement in your own modules.
Skrypt marked this conversation as resolved.
Show resolved Hide resolved

## Change Logs

Expand Down Expand Up @@ -353,3 +356,4 @@ Enhanced functionality has been implemented, giving developers the ability to co
```csharp
services.Configure<EmailConfirmationTokenProviderOptions>(options => options.TokenLifespan = TimeSpan.FromDays(7));
```