-
Notifications
You must be signed in to change notification settings - Fork 17
PE-8635: fix issues with timestamps and Unix-Time tag #370
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
PE-8635: fix issues with timestamps and Unix-Time tag #370
Conversation
WalkthroughVersion updates in package.json: project version bumped from 3.0.3 to 3.0.4 and a dependency updated from 3.0.3 to 3.0.4. No code or control-flow changes. Changes
Estimated code review effort🎯 1 (Trivial) | ⏱️ ~2 minutes Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
Comment |
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: 1
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
⛔ Files ignored due to path filters (2)
.yarn/cache/ardrive-core-js-npm-3.0.4-250f704d37-01868c5649.zipis excluded by!**/.yarn/**,!**/*.zipyarn.lockis excluded by!**/yarn.lock,!**/*.lock
📒 Files selected for processing (1)
package.json(1 hunks)
| "types": "./lib/index.d.ts", | ||
| "dependencies": { | ||
| "ardrive-core-js": "3.0.3", | ||
| "ardrive-core-js": "3.0.4", |
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.
Update lockfile for the dependency bump. The ardrive-core-js version change in package.json needs the matching yarn.lock (or other lockfile) update; otherwise installs will continue to pull 3.0.3. Please regenerate the lockfile (e.g., yarn upgrade ardrive-core-js@3.0.4) and include it in the PR.
🤖 Prompt for AI Agents
In package.json around line 11 the dependency ardrive-core-js was bumped to
3.0.4 but the repository lockfile wasn't updated; regenerate and commit the
corresponding lockfile so installs resolve 3.0.4. Run your package manager's
lockfile update command (e.g., yarn upgrade ardrive-core-js@3.0.4 or npm install
then commit package-lock.json/yarn.lock), verify the lockfile shows 3.0.4, and
include the updated lockfile in the PR.
Summary by CodeRabbit
Chores
No User-Facing Changes