Skip to content

Releases: aspnetboilerplate/module-zero-forsaken

v1.4.3

01 Mar 18:26
Compare
Choose a tag to compare

Enhancements

  • Set AbpUser.IsLockoutEnabled as true by default.
  • Upgraded to ABP v.1.4.3.

Bugfix

  • #296 Notifications are not always received.

v1.4.2

09 Feb 12:54
Compare
Choose a tag to compare
  • #295 Allow IExternalAuthenticationSource.CreateUserAsync() set user.Roles.
  • #294 Russian translation culture should be "ru" instead of "ru-RU".
  • Upgraded to ABP v1.4.2.

v1.4.0.0

02 Feb 12:55
Compare
Choose a tag to compare
  • #291 Implement ITenantStore with tenant cache.
  • #293 Fixed UpdateUser problem of UserManager.
  • Upgraded to ABP v1.4.0.0.

v1.3.1.0

20 Jan 20:20
Compare
Choose a tag to compare
  • Upgraded to ABP v1.3.1.0.
  • Minor enhancements.

v1.2

29 Dec 09:23
Compare
Choose a tag to compare
  • #273 Bugfix: UserManager.UpdateAsync doesn't properly check former UserName.
  • Upgraded to ABP v1.2.

v1.1.3.0

12 Dec 09:36
Compare
Choose a tag to compare
  • #280 AbpLoginManager.cs should have read-only injected properties protected.
  • #281 Upgrade to ABP v1.1.3.
  • #277 Remove foreign key in onmodelcreating for EF core.

v1.1.0.0

30 Nov 12:39
Compare
Choose a tag to compare
  • #260 Create Abp.Zero.AspNetCore package.
  • #264 Increase EmailConfirmationCode length (REQUIRES NEW MIGRATION)
  • #263 #262 Created IUserTokenProvider for AspNet Core.
  • #271 #268 Updated Lithuanian and Russian translations
  • #266 Saving ClaimValue in ClaimType.
  • #256 ChangeAbpTablePrefix should add “AbpUserClaims”.

v1.0.0.0

28 Sep 12:56
Compare
Choose a tag to compare

BREAKING CHANGES

  • #253 Moved Login methods from UserManager to AbpLoginManager.

FEATURES

  • #255 Introduce Abp.Zero.Owin package.
  • #252 Create AbpSignInManager.
  • #50 Register IUserTokenProvider.
  • #251 Implement IUserTwoFactorStore.
  • #250 Implement IUserSecurityStampStore.
  • #249 Implement IUserClaimStore.
  • #248 Implement IUserPhoneNumberStore.
  • #192 Implement IUserLockoutStore.

UPGRADE FOR EXISTING APPLICATIONS

New Migration

After fixing breaking changes, you should add a new migration (for example, named "Upgrade_To_Abp_1_0") since there are some new entity and properties.

You may want to change migration code a bit to provide default values to new properties. We suggest you to change it for AccessFailedCount, IsLockoutEnabled and IsTwoFactorEnabled fields like below:

AddColumn("dbo.AbpUsers", "AccessFailedCount", c => c.Int(nullable: false, defaultValue: 0));
AddColumn("dbo.AbpUsers", "IsLockoutEnabled", c => c.Boolean(nullable: false, defaultValue: true));
AddColumn("dbo.AbpUsers", "IsTwoFactorEnabled", c => c.Boolean(nullable: false, defaultValue: true));

And finally, you should run UPDATE AbpUsers SET SecurityStamp = NEWID() SQL command to update existing users. You can manually run this command or you can add this to end of your migration code:

Sql("UPDATE AbpUsers SET SecurityStamp = NEWID()");

You may want to check this: All changes we have done while upgrading startup template: aspnetboilerplate/module-zero-template@c0d7f04

v0.13.0.0

20 Sep 19:19
Compare
Choose a tag to compare
  • #247 PermissionChecker should implement IIocManagerAccessor.
  • Upgraded to ABP v0.13.0.0.

v0.12.0.0

10 Sep 10:11
Compare
Choose a tag to compare
  • #244 User should be removed from OU and Roles when soft deleted.
  • #245 Fix for italian localization.
  • Upgraded Abp nuget packages to v0.12.