-
Notifications
You must be signed in to change notification settings - Fork 2
fix(deps): update dependency hubspot-api-client to v12 #3582
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: master
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 |
|---|---|---|
|
|
@@ -36,7 +36,7 @@ dependencies = [ | |
| "google-api-python-client==2.192.0", | ||
| "google-auth==1.35.0", | ||
| "granian>=2.7.2", | ||
| "hubspot-api-client>=6.1.0,<7", | ||
| "hubspot-api-client>=12,<13", | ||
|
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. Bug: The Suggested FixThe Prompt for AI AgentThere 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. Bug: The upgrade to Suggested FixReplace the import and usage of the old class name Prompt for AI AgentThere 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. Bug: The Suggested FixUpdate the instantiation of Prompt for AI Agent |
||
| "ipython>=9.0.0,<10", | ||
| "mitol-django-authentication==2025.3.17", | ||
| "mitol-django-common==2025.12.23.2", | ||
|
|
||
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.
Bug: The update to
hubspot-api-pythonv12 may introduce breaking changes. The classBatchInputSimplePublicObjectInputmight have been renamed or removed, which is not reflected in the code.Severity: HIGH
Suggested Fix
Before merging, verify the correct class name for
BatchInputSimplePublicObjectInputinhubspot-api-pythonv12. Update the import and usage inhubspot_xpro/tasks.pyto the new class name if it has changed. The code change should accompany the dependency version bump.Prompt for AI Agent