-
Couldn't load subscription status.
- Fork 18
release: 0.2.3 #571
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
release: 0.2.3 #571
Conversation
Manual Deploy AvailableYou can trigger a manual deploy of this PR branch to testnet: Alternative: Comment
Comment updated automatically when the PR is synchronized. |
WalkthroughBump package versions from 0.2.2 → 0.2.3 in npm package, npm template, and Cargo workspace; update npm Changes
Sequence Diagram(s)sequenceDiagram
autonumber
actor Developer
participant GitHub as GitHub Actions
participant Workflow as publish-packages.yml
participant SetupSolana as setup-solana (local action)
Developer->>GitHub: push tag / merge PR
GitHub->>Workflow: trigger publish workflow
Workflow->>SetupSolana: invoke `setup-solana` (top-level local action path)
Note right of SetupSolana: action code loaded from top-level actions folder
SetupSolana-->>Workflow: environment prepared
Workflow->>GitHub: run publish steps (npm/Cargo) using bumped versions
Estimated code review effort🎯 2 (Simple) | ⏱️ ~10 minutes Possibly related PRs
Pre-merge checks and finishing touches✅ Passed checks (3 passed)
✨ Finishing touches🧪 Generate unit tests (beta)
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: ASSERTIVE Plan: Pro 📒 Files selected for processing (1)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (8)
🔇 Additional comments (1)
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.
3 files reviewed, no comments
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: ASSERTIVE
Plan: Pro
📒 Files selected for processing (1)
.github/workflows/publish-packages.yml(1 hunks)
🧰 Additional context used
🪛 actionlint (1.7.7)
.github/workflows/publish-packages.yml
194-194: specifying action ".github/actions/setup-solana" in invalid format because ref is missing. available formats are "{owner}/{repo}@{ref}" or "{owner}/{repo}/{path}@{ref}"
(action)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (4)
- GitHub Check: run_make_ci_lint
- GitHub Check: run_make_ci_test
- GitHub Check: run_make_ci_test
- GitHub Check: run_make_ci_format
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
Summary by CodeRabbit
File Analysis
Sequence Diagram
sequenceDiagram participant Dev as Developer participant PR as Pull Request #570 participant Cargo as Cargo.toml participant NPM as package.json participant Lock as Cargo.lock files participant Release as Release PR #571 Dev->>PR: Merge fix for NPM release Note over PR: Fixes log suppression<br/>for NPM wrapper Dev->>Cargo: Update version to 0.2.3 Dev->>NPM: Update version to 0.2.3 Dev->>NPM: Update platform deps to 0.2.3 Cargo->>Lock: Regenerate Cargo.lock Note over Lock: ~35 workspace crates<br/>updated to 0.2.3 Cargo->>Lock: Regenerate test-integration/Cargo.lock Note over Lock: Integration test deps<br/>updated to 0.2.3 Dev->>Release: Create release PR #571 Note over Release: Standard version bump<br/>No functional changes