-
Notifications
You must be signed in to change notification settings - Fork 42
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
Version 0.5.1 #830
Version 0.5.1 #830
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
use crate::log_types::LoggableTime; | ||
use anyhow::{anyhow, Result}; | ||
use dynamic_proxy::rustls::{ | ||
use pem::Pem; | ||
use plane_dynamic_proxy::rustls::{ | ||
crypto::aws_lc_rs::sign::any_supported_type, pki_types::PrivateKeyDer, | ||
}; | ||
use dynamic_proxy::tokio_rustls::rustls::sign::CertifiedKey; | ||
use pem::Pem; | ||
use plane_dynamic_proxy::tokio_rustls::rustls::sign::CertifiedKey; | ||
Comment on lines
+3
to
+7
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Remove unused import:
🔗 Analysis chainLGTM: Import changes align with PR objectives. The updated import paths for To verify the usage of the newly imported 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify the usage of pem::Pem in the file
# Test: Search for pem::Pem usage
rg 'pem::Pem' plane/src/proxy/cert_pair.rs
Length of output: 56 Script: #!/bin/bash
# Description: Search for any usage of Pem in cert_pair.rs excluding the import line
# Search for 'Pem' as a whole word, excluding lines that import it
rg '\\bPem\\b' plane/src/proxy/cert_pair.rs | grep -v 'use pem::Pem;'
Length of output: 71 |
||
use rustls_pki_types::CertificateDer; | ||
use serde::{Deserialize, Serialize}; | ||
use std::{fs::Permissions, io, os::unix::fs::PermissionsExt, path::Path}; | ||
|
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.
💡 Codebase verification
Remaining references to
dynamic_proxy
found.The following files still contain references to
dynamic_proxy
that need to be updated:🔗 Analysis chain
LGTM! Import statements updated correctly.
The changes to the import statements are in line with the PR objectives. The
dynamic_proxy
module has been correctly renamed toplane_dynamic_proxy
, and the necessaryhttp
module has been imported.Let's verify the consistency of these changes across the codebase:
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 4452