Skip to content

Releases: aspnetboilerplate/module-zero-forsaken

AbpZero v0.7.4.0

09 Nov 09:57
Compare
Choose a tag to compare
  • #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

14 Oct 16:26
Compare
Choose a tag to compare
Upgraded to ABP 0.7.3 and inherited AbpSession from ClaimsAbpSession …

AbpZero v0.7.2.0

14 Oct 08:52
Compare
Choose a tag to compare

Created Edition, Feture entities and EditionManager based on ABP feature system (which is released in ABP v0.7.2).

How to upgrade existing solutions:

  1. Upgrade all Abp.* nuget packages to latest version.
  2. 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).
  3. Change your TenantManager constructor, remove tenantRepository dependency, add EditionManager dependency.
  4. 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).
  5. Run Package Manager Console command: Add-Migration "Edition_And_Feature_System" (you can change migration name if you did not like this one)
  6. Run Package Manager Console command: Update-Database

AbpZero v0.7.1.0

23 Sep 06:51
Compare
Choose a tag to compare
  • 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

08 Sep 12:51
Compare
Choose a tag to compare
Deprecated AbpRoleManager.HasPermissionAsync. Resolved #105.

AbpZero v0.6.9.0

04 Sep 14:35
Compare
Choose a tag to compare
  • #101: Cache user & role permissions.
  • Upgraded to ABP 0.6.9.0.

IMPORTANT NOTES:

AbpZero v0.6.6.0

27 Aug 11:32
Compare
Choose a tag to compare
  • Added NHibernate mappings and migrations (thanks to xxmgkxx)
  • Upgraded to ABP v0.6.6

AbpZero v0.6.5.0

18 Jul 08:45
Compare
Choose a tag to compare
  • #87: Added Login method for external logins.
  • Upgrade to ABP v0.6.4.

AbpZero v0.6.4.0

14 Jun 12:40
Compare
Choose a tag to compare
  • #78 Added Chinese localization.
  • Made AuditLog IMayHaveTenant and properties virtual.
  • Upgraded to latest ABP packages.

AbpZero v0.6.3.4

06 Jun 22:12
Compare
Choose a tag to compare
Changed LDAP's IsEnabled to false as default. Also, fixed PrincipalCo…