Skip to content

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions instagram_post/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ authors = ["Your Name <you@example.com>"]

[tool.poetry.dependencies]
python = ">=3.10.0,<3.12"
crewai = "^0.11.0"
crewai = "^0.126.0"
python-dotenv = "1.0.0"
opencv-python = "4.8.1.78"
opencv-python = ">=4.11.0.86,<5.0.0"
google-search-results = "2.4.2"

[tool.pyright]
Expand Down
2 changes: 1 addition & 1 deletion prep-for-a-meeting/requirements.txt
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
Copy link
Preview

Copilot AI Jun 7, 2025

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.

Suggested change
crewai>=0.126.0,<0.130.0
crewai==0.129.0

Copilot uses AI. Check for mistakes.

4 changes: 2 additions & 2 deletions trip_planner/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Copy link
Preview

Copilot AI Jun 7, 2025

Choose a reason for hiding this comment

The 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
crewai = "^0.126.0"
crewai = ">=0.126.0,<0.130.0"

Copilot uses AI. Check for mistakes.

unstructured = '>=0.16.20,<0.18.0'
Copy link
Preview

Copilot AI Jun 7, 2025

Choose a reason for hiding this comment

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

After updating dependencies in pyproject.toml, please run poetry lock and commit the updated poetry.lock file to keep the lock state in sync with declared versions.

Copilot uses AI. Check for mistakes.

pyowm = '3.3.0'
tools = "^0.1.9"
python-dotenv = "1.0.0"
Expand Down