Skip to content

Commit c3369ce

Browse files
2 parents 58c115e + efbfb94 commit c3369ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

content/migration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### Migration guide
22

3-
This article offers a comprehensive guide for migrating from NestJS version 10 to version 11. To explore the new features introduced in v11, take a look at [this article](#). While the update includes a few minor breaking changes, they are unlikely to impact most users. You can review the complete list of breaking changes [here](#).
3+
This article offers a comprehensive guide for migrating from NestJS version 10 to version 11. To explore the new features introduced in v11, take a look at [this article](https://trilon.io/blog/announcing-nestjs-11-whats-new). While the update includes a few minor breaking changes, they are unlikely to impact most users. You can review the complete list of changes [here](https://github.com/nestjs/nest/releases/tag/v11.0.0).
44

55
#### Upgrading packages
66

content/modules.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `@Module()` decorator takes a single object with properties that describe th
1717

1818
The module **encapsulates** providers by default, meaning you can only inject providers that are either part of the current module or explicitly exported from other imported modules. The exported providers from a module essentially serve as the module's public interface or API.
1919

20-
#### Feature Modules
20+
#### Feature modules
2121

2222
In our example, the `CatsController` and `CatsService` are closely related and serve the same application domain. It makes sense to group them into a feature module. A feature module organizes code that is relevant to a specific feature, helping to maintain clear boundaries and better organization. This is particularly important as the application or team grows, and it aligns with the [SOLID](https://en.wikipedia.org/wiki/SOLID) principles.
2323

0 commit comments

Comments
 (0)