8000 Tags · samofprog/nestjs-password-validator · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: samofprog/nestjs-password-validator

Tags

v1.1.0-beta.1

Toggle v1.1.0-beta.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
feat: add independent decorators for password validation and update c…

…hangelog (#2)

- Introduced individual decorators for each password validation rule:
  - `@PasswordMinLength()`
  - `@PasswordMaxLength()`
  - `@PasswordHasUpperCase()`
  - `@PasswordHasLowerCase()`
  - `@PasswordHasNumbers()`
  - `@PasswordHasSpecialChars()`
  - `@PasswordBlacklist()`
  - `@ConfirmPassword()`

- Update readme
- Updated the changelog to reflect the new decorator-based validation approach.
0