Skip to content
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

[BoxV2] MyPy In Docker #38133

Merged
merged 4 commits into from
Jan 14, 2025
Merged
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
2 changes: 1 addition & 1 deletion Packs/Box/Integrations/BoxV2/BoxV2.py
Original file line number Diff line number Diff line change
Expand Up @@ -1979,7 +1979,7 @@ def fetch_incidents(client: Client, max_results: int, last_run: dict, first_fetc
xsoar_incident = event.format_incident()
incidents.append(xsoar_incident)
if event.created_at > created_after:
next_run = event.created_at
next_run = event.created_at # type: ignore[assignment]

return next_run, incidents

Expand Down
2 changes: 1 addition & 1 deletion Packs/Box/Integrations/BoxV2/BoxV2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2496,7 +2496,7 @@ script:
- contextPath: Box.Folder.item_status
description: The status of the parent of the item.
type: String
dockerimage: demisto/auth-utils:1.0.0.1839651
dockerimage: demisto/auth-utils:1.0.0.1968974
isfetch: true
runonce: false
script: '-'
Expand Down
6 changes: 6 additions & 0 deletions Packs/Box/ReleaseNotes/3_2_9.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

#### Integrations

##### Box v2

Updated the Docker image to: *demisto/auth-utils:1.0.0.1968974*.
2 changes: 1 addition & 1 deletion Packs/Box/pack_metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "Box",
"description": "Manage Box users",
"support": "xsoar",
"currentVersion": "3.2.8",
"currentVersion": "3.2.9",
"author": "Cortex XSOAR",
"url": "https://www.paloaltonetworks.com/cortex",
"email": "",
Expand Down
Loading