chore(deps): bump libseccomp from 0.3.0 to 0.4.0#3275
Merged
YJDoc2 merged 1 commit intoyouki-dev:mainfrom Oct 24, 2025
Merged
Conversation
YJDoc2
approved these changes
Oct 24, 2025
Collaborator
YJDoc2
left a comment
There was a problem hiding this comment.
Hey, thanks for the PR! This helps a lot.
From the release notes https://github.com/libseccomp-rs/libseccomp-rs/releases/tag/v0.4.0 , I don't think we are affected by any silent breakages, so as long as CI passes, I think we should be good to go.
Collaborator
|
@MattPatchava , CI is failing due to deprecation lint https://github.com/youki-dev/youki/actions/runs/18615250509/job/53556693922?pr=3275 Would you be willing to fix it in this PR? |
call libseccomp 0.4.0 deprecates ScmpFilterContext::new_filter() in favor of ScmpFilterContext::new(). This change updates the dependency and replaces the deprecated function call to use the new API Signed-off-by: Matthew Patchava <mattpatchava@outlook.com>
c27d2fe to
ace4492
Compare
Contributor
Author
|
@YJDoc2 thanks for catching that! I've replaced the deprecated |
Merged
sat0ken
pushed a commit
to sat0ken/youki
that referenced
this pull request
Mar 17, 2026
…comp-version chore(deps): bump libseccomp from 0.3.0 to 0.4.0
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.
Description
This pull request updates the
libseccompcrate from version0.3.0to0.4.0, aligning with the latest release on crates.io. The previous version was missing theget_notify_fd()function (corresponding to the Cseccomp_notify_fd()binding), which caused build failures in components using this API.Type of Change
Testing
Related Issues
No open issue. This pull request fixes a build failure caused by the missing
get_notify_fd()binding inlibseccomp0.3.0.Additional Context