Conversation
…solve auth filter" This reverts commit cda8127.
- Bumped `@nestjs/common`, `@nestjs/core`, and other `@nestjs` packages to latest minor versions. - Upgraded devDependencies like `graphql`, `mysql2`, `prettier`, and various others. - Synchronized updates in `yarn.lock`. - Updated package manager to `yarn@4.12.0`.
📝 WalkthroughWalkthroughThe pull request upgrades Yarn from version 4.4.0 to 4.12.0 in configuration and multiple npm package dependencies across the monorepo (NestJS, Apollo, Docusaurus, GraphQL, and database drivers). Additionally, class and interface type declarations across TypeScript files are reformatted to split generic parameters and inheritance clauses across multiple lines for improved readability. Changes
Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Poem
🚥 Pre-merge checks | ✅ 2 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (2 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing touches🧪 Generate unit tests (beta)
No actionable comments were generated in the recent review. 🎉 Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
- Adjusted TypeScript patch hash in `yarn.lock` to synchronize dependency resolution.
|
| Command | Status | Duration | Result |
|---|---|---|---|
nx run-many --target=test --all |
❌ Failed | 2m 26s | View ↗ |
nx run-many --target=e2e --all |
❌ Failed | 1m 55s | View ↗ |
nx run-many --target=lint --all |
❌ Failed | 50s | View ↗ |
nx run-many --target=build --all |
✅ Succeeded | <1s | View ↗ |
nx run workspace:version |
✅ Succeeded | <1s | View ↗ |
☁️ Nx Cloud last updated this comment at 2026-02-10 08:16:02 UTC
- Updated `mongoose` dependency to version 8.20.1 in `package.json`. - Updated associated dependencies: `mongodb` to 6.20.0 and `bson` to 6.10.4. - Synchronized changes in `yarn.lock` to reflect updated resolutions.
… resolvers, and services - Refactored generic type declarations for better readability in multiple files. - Updated formatting in `packages/query-graphql` and `packages/core` modules.
@ptc-org/nestjs-query-core
@ptc-org/nestjs-query-graphql
@ptc-org/nestjs-query-mikro-orm
@ptc-org/nestjs-query-mongoose
@ptc-org/nestjs-query-sequelize
@ptc-org/nestjs-query-typegoose
@ptc-org/nestjs-query-typeorm
commit: |
There was a problem hiding this comment.
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (1)
package.json (1)
13-16:⚠️ Potential issue | 🟠 Major
resolutionsoverride the updateddevDependenciesfor Apollo packages.The
resolutionsblock still pins@apollo/gatewayto2.10.1and@apollo/subgraphto2.2.3, but thedevDependencieswere bumped to2.12.1for both. Yarn resolutions take precedence, so the actual installed versions will be the old pinned ones — the devDependency bumps on lines 39 and 41 are effectively dead.Either update the resolutions to match, or remove them if the pinning is no longer needed.
Proposed fix (update resolutions to match)
"resolutions": { - "@apollo/gateway": "2.10.1", - "@apollo/subgraph": "2.2.3" + "@apollo/gateway": "2.12.1", + "@apollo/subgraph": "2.12.1" },Also applies to: 39-41

Summary by CodeRabbit
Chores
Style