Skip to content
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

chore: upgrade to Rust 1.83.0 #9652

Merged
merged 1 commit into from
Jan 16, 2025
Merged

Conversation

ognevny
Copy link
Contributor

@ognevny ognevny commented Dec 26, 2024

Description

  • fix needless_lifetimes excluding turborepo-lib as code generated by tonic-build are also lint so there is 50+ warnings :(
  • option_get_or_insert_default is stable
  • allow zombie_process once as it's buggy
  • fmt and other fixes

Testing Instructions

@ognevny ognevny requested a review from a team as a code owner December 26, 2024 11:08
@turbo-orchestrator turbo-orchestrator bot added the needs: triage New issues get this label. Remove it after triage label Dec 26, 2024
Copy link

vercel bot commented Dec 26, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
examples-basic-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-designsystem-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-gatsby-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-kitchensink-blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-native-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-nonmonorepo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-svelte-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-tailwind-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm
examples-vite-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jan 16, 2025 2:48pm

Copy link

vercel bot commented Dec 26, 2024

@ognevny is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

Comment on lines +89 to +90
// Child::wait is run after writing `s` into stdin
#[allow(clippy::zombie_processes)]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is actually a valid lint. If we fail to write to the child's stdin then we will end up with a zombie processes as we exit before calling wait

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

refactor is needed to fix this lint...

@ijjk
Copy link
Member

ijjk commented Jan 16, 2025

Allow CI Workflow Run

  • approve CI run for commit: 75d8eb4

Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer

2 similar comments
@ijjk
Copy link
Member

ijjk commented Jan 16, 2025

Allow CI Workflow Run

  • approve CI run for commit: 75d8eb4

Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer

@ijjk
Copy link
Member

ijjk commented Jan 16, 2025

Allow CI Workflow Run

  • approve CI run for commit: 75d8eb4

Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer

@chris-olszewski chris-olszewski removed the needs: triage New issues get this label. Remove it after triage label Jan 16, 2025
@turbo-orchestrator turbo-orchestrator bot added the needs: triage New issues get this label. Remove it after triage label Jan 16, 2025
@chris-olszewski chris-olszewski merged commit 72f1116 into vercel:main Jan 16, 2025
36 checks passed
@ognevny ognevny deleted the rust-1.83.0 branch January 16, 2025 15:06
chris-olszewski added a commit that referenced this pull request Jan 16, 2025
### Description

As discovered in
#9652 (comment)

We could create a zombie process if writing to the clipboard program
failed as we handled the write failure without `wait`ing the clipboard
process.

### Testing Instructions

We no longer get a lint warning when removing
`allow(clippy::zombie_process)`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
needs: triage New issues get this label. Remove it after triage
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants