Release 0.2.0#45
Merged
Merged
Conversation
…returned at sign-up
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request includes significant updates across various files to enhance the configuration, authentication, and logging functionalities of the project. The most important changes include updates to environment variables, improvements to the authentication system, and the introduction of new modules and dependencies.
Environment Configuration:
.env.example: Added new environment variables for debugging, logging, CORS, and email configurations.Authentication System Enhancements:
src/auth/auth.controller.ts: Added endpoints for user registration, password management, and OTP verification.src/auth/auth.guard.ts: Enhanced the guard to include user retrieval and validation.src/auth/auth.module.ts: Updated module to include new dependencies and services. [1] [2]src/auth/auth.service.ts: Added methods for password encryption, token generation, and user role validation.Logging and Linting:
src/app.module.ts: Integratednestjs-pinofor improved logging capabilities..husky/pre-commit: Replacednpm run format && npm run lint:fixwithnpx lint-stagedfor better pre-commit linting..lintstagedrc: Configuredlint-stagedto run linting and formatting on staged files.eslint.config.mjs: Added Prettier rules to the ESLint configuration.Documentation Updates:
README.md: Updated instructions for generating and applying migrations, and added new sections for migration commands. [1] [2]Dependency Updates:
package.json: Updated project version, added new dependencies for validation, logging, and email functionalities. [1] [2] [3] [4]