-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Fix critical vulnerabilities #260
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
langchain-exa==0.0.1 | ||
exa_py==1.0.7 | ||
python-dotenv==1.0.1 | ||
crewai==0.11.0 | ||
crewai>=0.126.0,<0.130.0 | ||
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -6,8 +6,8 @@ authors = ["Your Name <you@example.com>"] | |||||
|
||||||
[tool.poetry.dependencies] | ||||||
python = ">=3.10.0,<3.12" | ||||||
crewai = "^0.11.0" | ||||||
unstructured = '==0.10.25' | ||||||
crewai = "^0.126.0" | ||||||
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. [nitpick] Using a caret (^) allows upgrading to versions with potential breaking changes; consider specifying an upper bound (e.g., ">=0.126.0,<0.130.0") to prevent unintended major version bumps.
Suggested change
Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
unstructured = '>=0.16.20,<0.18.0' | ||||||
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. After updating dependencies in pyproject.toml, please run Copilot uses AI. Check for mistakes. Positive FeedbackNegative Feedback |
||||||
pyowm = '3.3.0' | ||||||
tools = "^0.1.9" | ||||||
python-dotenv = "1.0.0" | ||||||
|
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.
[nitpick] The version specifier style here differs from other dependency files; consider unifying the version range syntax across projects for consistency.
Copilot uses AI. Check for mistakes.