Skip to content
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
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@ Flow Production Tracking Python API Changelog

Here you can see the full list of changes between each Python API release.

v3.8.2 (2025 Mar 11)
====================

- Prevent flaky disconnection when uploading thumbnails on publish.
There's a flaky disconnection when the publisher uploads the thumbnail to the server.
The most common errors were: ``Connection closed by peer`` and ``URLopen error EOF occurred in violation of protocol ssl.c:1006``.

v3.8.1 (2025 Feb 25)
====================

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

setup(
name="shotgun_api3",
version="3.8.1",
version="3.8.2",
description="Flow Production Tracking Python API",
long_description=readme,
author="Autodesk",
Expand Down
3 changes: 1 addition & 2 deletions shotgun_api3/shotgun.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def _is_mimetypes_broken():

# ----------------------------------------------------------------------------
# Version
__version__ = "3.8.1"
__version__ = "3.8.2"

# ----------------------------------------------------------------------------
# Errors
Expand Down Expand Up @@ -4634,7 +4634,6 @@ def _send_form(self, url, params):

params.update(self._auth_params())


attempt = 1
while attempt <= self.MAX_ATTEMPTS:
# Perform the request
Expand Down
Loading