chore(deps): pin all dependencies to exact versions#25
Merged
Conversation
Replace the remaining caret ranges (js-yaml, @modelcontextprotocol/sdk, zod) with the exact versions already in the lockfile, matching the pinning style used for every other dependency. Claude-Session: https://claude.ai/code/session_01WFtdR1yhvYG6SjWhhMcsaE
0458c8d to
c94bb10
Compare
|
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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.
Pins the three remaining caret ranges (js-yaml, @modelcontextprotocol/sdk, zod) to the exact versions already resolved in the lockfile. All other deps were already exact-pinned. Tests pass (730).
https://claude.ai/code/session_01WFtdR1yhvYG6SjWhhMcsaE
Greptile Summary
Pins three previously caret-ranged dependencies to their exact resolved versions:
@modelcontextprotocol/sdk(^1.29.0→1.29.0),js-yaml(^5.2.1→5.2.1), andzod(^4.4.3→4.4.3). Bothpackage.jsonandpackage-lock.jsonare updated consistently, making them match the versions already locked in the lockfile.package.jsonandpackage-lock.jsonreflect the same pinned versions, so no semantic version drift is introduced.Confidence Score: 5/5
Safe to merge — the change is purely cosmetic, removing caret ranges from three packages that the lockfile had already resolved to the now-pinned versions.
Both files are updated consistently and no resolved versions change. The lockfile already had these exact versions locked; the edit simply aligns the declared range in package.json with reality. There is no behavioral or runtime impact.
No files require special attention.
Important Files Changed
^prefix from@modelcontextprotocol/sdk,js-yaml, andzod— pinning all three to the exact versions already resolved in the lockfile. No other changes.package.json. Resolved versions are unchanged.Flowchart
%%{init: {'theme': 'neutral'}}%% flowchart TD A[package.json] -->|declares exact version| B["@modelcontextprotocol/sdk 1.29.0"] A -->|declares exact version| C["js-yaml 5.2.1"] A -->|declares exact version| D["zod 4.4.3"] B --> E[package-lock.json] C --> E D --> E E -->|resolved & installed| F[node_modules] style B fill:#d4edda style C fill:#d4edda style D fill:#d4edda%%{init: {'theme': 'base', 'themeVariables': {"darkMode": true, "background": "#0d1117", "primaryColor": "#21262d", "primaryTextColor": "#e6edf3", "primaryBorderColor": "#8b949e", "lineColor": "#8b949e", "textColor": "#e6edf3", "edgeLabelBackground": "#161b22", "actorBkg": "#21262d", "actorBorder": "#8b949e", "actorTextColor": "#e6edf3", "actorLineColor": "#8b949e", "signalColor": "#8b949e", "signalTextColor": "#e6edf3", "noteBkgColor": "#373320", "noteBorderColor": "#d4a72c", "noteTextColor": "#f0e6c0", "labelBoxBkgColor": "#21262d", "labelBoxBorderColor": "#8b949e", "labelTextColor": "#e6edf3", "loopTextColor": "#e6edf3", "activationBkgColor": "#30363d", "activationBorderColor": "#8b949e"}}}%% flowchart TD A[package.json] -->|declares exact version| B["@modelcontextprotocol/sdk 1.29.0"] A -->|declares exact version| C["js-yaml 5.2.1"] A -->|declares exact version| D["zod 4.4.3"] B --> E[package-lock.json] C --> E D --> E E -->|resolved & installed| F[node_modules] style B fill:#d4edda style C fill:#d4edda style D fill:#d4eddaReviews (2): Last reviewed commit: "chore(deps): pin all dependencies to exa..." | Re-trigger Greptile