Polyswarm-client

Latest version: v2.13.3

Safety actively analyzes 724087 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 12

2.8.0

Not secure
* **Feature** - Change base image to `python:3.7-slim-buster`.
* **Feature** - Add capability for synchronous scanners.
* **Feature** - Add `--scan-time-requirement` to Worker to cull queued tasks that don't have time to finish before expriring.
* **Feature** - Add asyncio compatible class to create temporary files `AsyncArtifactTempfile`.
* **Feature** - Use a new session per request to PolySwarmd.
* **Feature** - Support PolySwarmd-Fast.
* **Feature** - Check balance earlier for Abiters.
* **Feature** - Store balances from server in TTL cache.
* **Fix** - Remove retries on successful transactions.
* **Fix** - Improve backoff on requests.
* **Fix** - Move IO to separate task if result is not read.
* **Fix** - Resolve polyswarm-artifact and jsonschema incompatibility
* **Fix** - Aynchronize Producer wait and Scanner duration .
* **Fix** - Arbiters no longer vote if there are any False masks (i.e no votes or has errors).
* **Fix** - Ambassador Queue plays nice with asyncio.
* **Fix** - Remove extra waits in Ambassador queue.


Synchronous Scanners

`Scanner` implementations no longer have to be asyncio compatible.
Starting in 2.8.0, developers can set a `ScanMode`, then overwrite either `scan_async()` or `scan_sync()`.
These functions take the same parameters as `scan()`, which still exists.
This change is backwards compatible, so old scanners will run as normal.


python

from polyswarmclient.abstractscanner import AbstractScanner, ScanResult, ScanMode

class Scanner(AbstractScanner):
def __init__():
super(Scanner, self).__init__(ScanMode.SYNC)

def scan_sync(...):
pass

class Scanner(AbstractScanner):
def __init__():
super(Scanner, self).__init__(ScanMode.ASYNC)

async def scan_async(...):
pass




Breaking Changes

1. Switched to python 3.7 where `async` is a reserved keyword

2.7.5

Not secure
* **Fix** - Install backoff for pypi release

2.7.4

Not secure
* **Fix** - Update aiohttp to 3.6.2
* **Feature** - Create task per job in worker (up to an optional limit), rather than a set number of long running tasks

2.7.3

Not secure
* **Fix** - Check that job is correct before adding to liveness waiting task in worker

2.7.2

Not secure
* **Fix** - Fix liveness crash when removing a task that is not waiting
* **Fix** - Catch `ConnectionForcedCloseError` when redis is closed

Deprecation

1. The command `liveliness` has been deprecated in favor of `liveness`

2.7.1

Not secure
* **Fix** - Simplify Liveliness `__hash__()` definition
* **Feature** - Timeout scans in worker for faster recovery
* **Feature** - Settle all participated bounties on Deprecated event
* **Feature** - Only settle if participated in a bounty

Page 4 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.