ABP Version 5.2 Migration Guide
This document is a guide for upgrading ABP v5.x solutions to ABP v5.2. Please read them all since v5.2 has some changes you should take care.
MongoDB
IMongoDbRepositoryFilterer.AddGlobalFilters()
method is replaced with async oneIMongoDbRepositoryFilterer.AddGlobalFiltersAsync()
Blazor UI
If you use Blazor WASM or Blazor Server UI, you should follow this section.
Blazorise 1.0
We've upgraded to Blazorise 1.0 stable version. So there is some breaking changes that you have to apply in your project.
Also You can review that pull request #11649 - Blazorise 1.0 Migration
NumericEdit
is now made around the nativeinput type="number"
so a lot of its formatting features are moved to the newNumericPicker
component. Replace NumericEdit with NumericPicker.- Rename
DecimalsSeparator
toDecimalSeparator
on theDataGridColumn
andNumericPicker
. - Rename
MaxMessageSize
toMaxChunkSize
. - Remove
Fullscreen
parameter on<ModalContent>
and replace it withSize="ModalSize.Fullscreen"
parameter. - Remove
NotificationType
,Message
, andTitle
parameter from<NotificationAlert>
component. - Move
RightAligned
parameter from<BarDropdownMenu>
to<BarDropdown>
component. - Rename any usage of the
ChangeTextOnKeyPress
parameter intoImmediate
. - Rename any usage of
DelayTextOnKeyPress
parameter intoDebounce
andDelayTextOnKeyPressInterval
into DebounceInterval. - Replace all
Left
andRight
enums withStart
andEnd
for the following enum types:Direction
,Float
,Placement
,NotificationLocation
,Side
,SnackbarLocation
,SnackbarStackLocation
,TabPosition
, andTextAlignment
. - Replace all
FromLeft
,FromRight
,RoundedLeft
, andRoundedRight
enums withFromStart
,FromEnd
,RoundedStart
, andRoundedEnd
for theBorder
utilities. - Replace all
FromLeft
andFromRight
withFromStart
,FromEnd
for the Margin andPadding
utilities. - Replace all
AddLabel
withAddLabels
method on chart instance. - Change enum value from
None
toDefault
for the following enum types:Color
,Background
,TextColor
,Alignment
,BorderRadius
,BorderSize
,Direction
,DisplayDirection
,FigureSize
,IconSize
,JustifyContent
,OverflowType
,SnackbarColor
,Target
,TextAlignment
,TextOverflow
,TextTransform
,TextWeight
,VerticalAlignment
,Visibility
,Size
, andSnackbarLocation
. - Obsolete typography parameters
Alignment
,Color
,Transform
, andWeight
are removed in favor ofTextAlignment
,TextColor
,TextTransform
, andTextWeight
. - Remove any use of an obsolete component
<InlineField>
. - The Datagrid's obsolete
Direction
parameter has now been removed. Instead, please use theSortDirection
parameter if you weren't already.. - Rename
<Tabs>
Mode
parameter intoRenderMode
.
Check out Blazorise Release Notes for more information.
MVC - Razor Pages UI
If you use MVC Razor Pages UI, you should follow this section.
Client libraries
The libs
folder no longer exists in templates after v5.2. That change greatly reduced the size of templates and brought some other advantages.
You can use abp install-libs
command for installing or updating client libraries. You should run this command after updating v5.2.
If you're creating a new project, you don't have to be concerned about it, ABP CLI installs client libraries after automatically.