Releases: aspnetboilerplate/module-zero-forsaken
Releases · aspnetboilerplate/module-zero-forsaken
AbpZero v0.7.4.0
- #91: Created database based multi-tenant localization system.
NOTE: Should run Add-Migration command after upgrade to v0.7.4 since it contains new entities.
AbpZero v0.7.3.0
Upgraded to ABP 0.7.3 and inherited AbpSession from ClaimsAbpSession …
AbpZero v0.7.2.0
Created Edition, Feture entities and EditionManager based on ABP feature system (which is released in ABP v0.7.2).
How to upgrade existing solutions:
- Upgrade all Abp.* nuget packages to latest version.
- Create EditionManager class to your Core project derived from AbpEditionManager (copy from: https://github.com/aspnetboilerplate/module-zero/blob/master/src/Tests/Abp.Zero.SampleApp/Editions/EditionManager.cs).
- Change your TenantManager constructor, remove tenantRepository dependency, add EditionManager dependency.
- Create FeatureValueStore class ro your Core project (copy from: https://github.com/aspnetboilerplate/module-zero/blob/master/src/Tests/Abp.Zero.SampleApp/Features/FeatureValueStore.cs).
- Run Package Manager Console command: Add-Migration "Edition_And_Feature_System" (you can change migration name if you did not like this one)
- Run Package Manager Console command: Update-Database
AbpZero v0.7.1.0
- Upgraded to ABP 0.7.1.0.
- #115: Add new columns in ABP 0.7.1 to AuditLog.
NOTE: There are some new columns in the AuditLog table. Please run "Add-Migration" command.
AbpZero v0.7.0.0
Deprecated AbpRoleManager.HasPermissionAsync. Resolved #105.
AbpZero v0.6.9.0
- #101: Cache user & role permissions.
- Upgraded to ABP 0.6.9.0.
IMPORTANT NOTES:
- Constructor arguments changed for base UserManager, RoleManager, UserStore and RoleStore classes. You can easily adapt changes in your classes. You can check same classes in the test project: https://github.com/aspnetboilerplate/module-zero/tree/master/src/Tests/Abp.Zero.SampleApp
- Run Add-Migration command after upgrade since there is a string property length change.
AbpZero v0.6.6.0
- Added NHibernate mappings and migrations (thanks to xxmgkxx)
- Upgraded to ABP v0.6.6
AbpZero v0.6.5.0
- #87: Added Login method for external logins.
- Upgrade to ABP v0.6.4.
AbpZero v0.6.4.0
- #78 Added Chinese localization.
- Made AuditLog IMayHaveTenant and properties virtual.
- Upgraded to latest ABP packages.
AbpZero v0.6.3.4
Changed LDAP's IsEnabled to false as default. Also, fixed PrincipalCo…