-
Notifications
You must be signed in to change notification settings - Fork 168
feat: add security events for firewall users #694
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
Conversation
Important Review skippedAuto reviews are disabled on this repository. Please check the settings in the CodeRabbit UI or the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
🚀 Build artifacts are ready for testing!Download the wheel file and binaries with gh CLI or from the workflow artifacts. 📦 Install & RunPre-requisites# Install uv if needed
curl -LsSf https://astral.sh/uv/install.sh | sh
# Create and enter artifacts directory
mkdir artifacts && cd artifacts Quick Test with Python Package# Download and run with uv
gh run download 14076246971 -n dist -R pyupio/safety
uv run --with safety-3.3.1+feat.security.events-py3-none-any.whl safety --version Binary Installation# Linux
gh run download 14076246971 -n safety-linux -D linux -R pyupio/safety
cd linux && mv safety safety-pr && chmod +x safety-pr
# macOS
gh run download 14076246971 -n safety-macos -D macos -R pyupio/safety
cd macos && mv safety safety-pr && chmod +x safety-pr
# Windows
gh run download 14076246971 -n safety-windows -D windows -R pyupio/safety
cd windows && mv safety.exe safety-pr.exe
./safety-pr --version
|
b8ad735
to
f56c450
Compare
f56c450
to
bbff205
Compare
In this update, we're making a change to enhance the use of Safety for authenticated users. This change will share more detailed information with Safety about your CLI usage, development environment (e.g., Python version, Git branch), and the packages you're using. This information is required to support new security capabilities in our recently launched web-based experience at platform.safetycli.com.
Safety will never transmit your code, environment variables, or secrets, and no data will be transmitted for unauthenticated use of Safety.
Additional improvements are:
requests
tohttpx/tenacity
Note: Coverage will be increased and revamped in the following coming PRs. [sorry for the big PR]