-
Notifications
You must be signed in to change notification settings - Fork 84
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: sync missing acceptDependencies on abbreviated format #691
Conversation
WalkthroughThe changes introduce new properties ( Changes
Assessment against linked issues
Poem
Tip New Features and ImprovementsReview SettingsIntroduced new personality profiles for code reviews. Users can now select between "Chill" and "Assertive" review tones to tailor feedback styles according to their preferences. The "Assertive" profile posts more comments and nitpicks the code more aggressively, while the "Chill" profile is more relaxed and posts fewer comments. AST-based InstructionsCodeRabbit offers customizing reviews based on the Abstract Syntax Tree (AST) pattern matching. Read more about AST-based instructions in the documentation. Community-driven AST-based RulesWe are kicking off a community-driven initiative to create and share AST-based rules. Users can now contribute their AST-based rules to detect security vulnerabilities, code smells, and anti-patterns. Please see the ast-grep-essentials repository for more information. New Static Analysis ToolsWe are continually expanding our support for static analysis tools. We have added support for Tone SettingsUsers can now customize CodeRabbit to review code in the style of their favorite characters or personalities. Here are some of our favorite examples:
Revamped Settings PageWe have redesigned the settings page for a more intuitive layout, enabling users to find and adjust settings quickly. This change was long overdue; it not only improves the user experience but also allows our development team to add more settings in the future with ease. Going forward, the changes to Miscellaneous
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #691 +/- ##
=======================================
Coverage 96.82% 96.82%
=======================================
Files 181 181
Lines 18000 18014 +14
Branches 2347 2340 -7
=======================================
+ Hits 17428 17442 +14
Misses 572 572 ☔ View full report in Codecov by Sentry. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 2
Outside diff range and nitpick comments (7)
app/core/service/PackageSyncerService.ts (6)
Line range hint
42-42
: Specify a more appropriate type instead of 'any' to enhance type safety and code maintainability.- catch (err: any) { + catch (err: Error) {
Line range hint
85-85
: Consider using optional chaining to prevent runtime errors when accessing properties on potentially null or undefined objects.- if (pkg && pkg.registryId && options?.registryId) { + if (pkg?.registryId && options?.registryId) {Also applies to: 207-208, 831-832, 894-894
Line range hint
133-133
: Replace 'any' with a more specific type to improve type safety.- catch (err: any) { + catch (err: Error) {Also applies to: 177-177, 218-218, 446-446, 718-718, 746-746
Line range hint
153-154
: Avoid using non-null assertions. Consider handling the potential null or undefined cases explicitly.- counters!.push([ date, item.downloads ]); + if (counters) { + counters.push([ date, item.downloads ]); + }
Line range hint
686-686
: Use optional chaining to safely access properties on potentially null objects.- if (pkg && pkg?.registryId !== registry?.registryId) { + if (pkg?.registryId !== registry?.registryId) {
Line range hint
9-21
: Consider importing these modules only where necessary to reduce overhead and potential confusion about their usage.- import { - AccessLevel, - SingletonProto, - Inject, - } from '@eggjs/tegg'; - import { Pointcut } from '@eggjs/tegg/aop'; - import { EggHttpClient } from 'egg'; - import { isEqual, isEmpty } from 'lodash'; - import semver from 'semver'; - import { NPMRegistry, RegistryResponse } from '../../common/adapter/NPMRegistry'; - import { detectInstallScript, getScopeAndName } from '../../common/PackageUtil'; - import { downloadToTempfile } from '../../common/FileUtil'; - import { TaskState, TaskType } from '../../common/enum/Task'; - import { AbstractService } from '../../common/AbstractService'; - import { TaskRepository } from '../../repository/TaskRepository'; - import { PackageJSONType, PackageManifestType, PackageRepository } from '../../repository/PackageRepository'; - import { PackageVersionDownloadRepository } from '../../repository/PackageVersionDownloadRepository'; - import { UserRepository } from '../../repository/UserRepository'; - import { Task, SyncPackageTaskOptions, CreateSyncPackageTask } from '../entity/Task'; - import { Package } from '../entity/Package'; - import { UserService } from './UserService'; - import { TaskService } from './TaskService'; - import { PackageManagerService } from './PackageManagerService'; - import { CacheService } from './CacheService'; - import { User } from '../entity/User'; - import { RegistryManagerService } from './RegistryManagerService'; - import { Registry } from '../entity/Registry'; - import { BadRequestError } from 'egg-errors'; - import { ScopeManagerService } from './ScopeManagerService'; - import { EventCorkAdvice } from './EventCorkerAdvice'; - import { PresetRegistryName, SyncDeleteMode } from '../../common/constants'; + // Import these modules only where necessarytest/core/service/PackageSyncerService/executeTask.test.ts (1)
1999-2057
: The test case is comprehensive and covers the synchronization ofacceptDependencies
effectively. However, consider adding more detailed comments within the test to explain the purpose of each mock and assertion. This will improve maintainability and understandability for other developers.
Review Details
Configuration used: CodeRabbit UI
Review profile: CHILL
Files selected for processing (5)
- app/core/service/PackageManagerService.ts (1 hunks)
- app/core/service/PackageSyncerService.ts (2 hunks)
- app/repository/PackageRepository.ts (3 hunks)
- test/core/service/PackageSyncerService/executeTask.test.ts (1 hunks)
- test/fixtures/registry.npmjs.org/accept-dependencies-module-cnpmsync.json (1 hunks)
Files skipped from review due to trivial changes (1)
- test/fixtures/registry.npmjs.org/accept-dependencies-module-cnpmsync.json
Additional Context Used
Biome (65)
app/core/service/PackageManagerService.ts (20)
142-145: Avoid the delete operator which can impact performance.
155-158: Forbidden non-null assertion.
174-174: Unexpected any. Specify a different type.
561-561: Forbidden non-null assertion.
562-562: Forbidden non-null assertion.
652-654: Avoid the delete operator which can impact performance.
712-713: Forbidden non-null assertion.
719-720: Forbidden non-null assertion.
721-722: Forbidden non-null assertion.
760-760: Unexpected any. Specify a different type.
761-761: Unexpected any. Specify a different type.
863-864: Forbidden non-null assertion.
866-867: Unexpected any. Specify a different type.
872-873: Forbidden non-null assertion.
933-933: Unexpected any. Specify a different type.
940-942: Avoid the delete operator which can impact performance.
1-7: Some named imports are only used as types.
8-9: All these imports are only used as types.
20-21: All these imports are only used as types.
21-22: All these imports are only used as types.
app/core/service/PackageSyncerService.ts (20)
42-42: Unexpected any. Specify a different type.
85-85: Change to an optional chain.
133-133: Unexpected any. Specify a different type.
153-154: Forbidden non-null assertion.
177-177: Unexpected any. Specify a different type.
207-207: Change to an optional chain.
207-208: Change to an optional chain.
218-218: Unexpected any. Specify a different type.
446-446: Unexpected any. Specify a different type.
686-686: Change to an optional chain.
718-718: Unexpected any. Specify a different type.
746-746: Unexpected any. Specify a different type.
831-832: Change to an optional chain.
894-894: Change to an optional chain.
9-10: All these imports are only used as types.
12-13: All these imports are only used as types.
17-18: All these imports are only used as types.
18-19: All these imports are only used as types.
19-20: All these imports are only used as types.
20-21: All these imports are only used as types.
app/repository/PackageRepository.ts (5)
1-2: All these imports are only used as types.
2-3: All these imports are only used as types.
3-4: All these imports are only used as types.
9-10: All these imports are only used as types.
19-20: All these imports are only used as types.
test/core/service/PackageSyncerService/executeTask.test.ts (20)
1-1: A Node.js builtin module should be imported with the node: protocol.
73-73: Forbidden non-null assertion.
84-84: Forbidden non-null assertion.
87-87: Forbidden non-null assertion.
87-87: Forbidden non-null assertion.
154-154: Forbidden non-null assertion.
181-181: Forbidden non-null assertion.
181-181: Forbidden non-null assertion.
182-182: Forbidden non-null assertion.
183-183: Forbidden non-null assertion.
203-203: Forbidden non-null assertion.
203-203: Forbidden non-null assertion.
208-208: Forbidden non-null assertion.
208-208: Forbidden non-null assertion.
208-208: Forbidden non-null assertion.
209-209: Forbidden non-null assertion.
209-209: Forbidden non-null assertion.
209-209: Forbidden non-null assertion.
232-232: Forbidden non-null assertion.
232-232: Forbidden non-null assertion.
Additional comments not posted (7)
app/repository/PackageRepository.ts (3)
71-71
: The addition ofacceptDependencies
toPackageJSONType
aligns with the PR objectives and is correctly implemented as an optional field.
119-122
: The addition ofacceptDependencies
andfunding
to theAbbreviatedKey
type is consistent with the PR objectives and enhances the metadata handling capabilities.
109-110
: There appears to be a duplication of keys in thePackageJSONPickKey
type definition. This might be an oversight and should be corrected.- type PackageJSONPickKey = 'name' | 'author' | 'bugs' | 'description' | 'homepage' | 'keywords' | - 'license' | 'readme' | 'readmeFilename' | 'repository' | 'versions' | 'contributors'; + type PackageJSONPickKey = 'name' | 'author' | 'bugs' | 'description' | 'homepage' | 'keywords' | 'license' | 'readme' | 'readmeFilename' | 'repository' | 'versions' | 'contributors';Likely invalid or redundant comment.
app/core/service/PackageManagerService.ts (1)
204-227
: The addition ofacceptDependencies
,directories
, andfunding
to theabbreviated
object aligns with the PR's objective to enhance package metadata handling. This change ensures that these properties are included in the package metadata, which is crucial for compatibility with the npm registry's new features.app/core/service/PackageSyncerService.ts (2)
1-3
: Update imports to use thenode:
namespace for better compatibility and clarity.
629-634
: The addition of 'funding' and 'acceptDependencies' to the metaDataKeys array enhances metadata synchronization capabilities, aligning with the PR objectives.test/core/service/PackageSyncerService/executeTask.test.ts (1)
2024-2024
: The assertions are specific and check for the correct synchronization of metadata. However, ensure that these assertions are robust against potential changes in the data structure or API responses to avoid brittle tests.Also applies to: 2037-2037, 2040-2040
[skip ci] ## [3.61.0](v3.60.0...v3.61.0) (2024-05-25) ### Features * sync missing acceptDependencies on abbreviated format ([#691](#691)) ([96648fd](96648fd))
closes #689
Summary by CodeRabbit
New Features
acceptDependencies
,directories
, andfunding
metadata in package management.Bug Fixes
Tests
acceptDependencies
metadata syncing.Chores
node
namespace for better compatibility.