Syncsketch

Latest version: v1.0.10.4

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

Scan your dependencies

Page 2 of 6

1.0.8.11

A new required parameter is added to add_comment() "review_id"

Previously items were only allowed in one review, you can now move an item into multiple reviews. So the requirement has been added to specify which review you are making the comment in.

1.0.8.10

With the latest release SyncSketch allows copying items to multiple reviews. This is a bigger underlying change. In the past each item was only ever in one review. Now that an item can be in multiple reviews, you need to define the specific review id for the item to get the appropriate annotations. If you don't scope the annotations by review_id, the API will return all annotations.

> For the most part all queries will still work for older reviews so this is not a breaking change. As soon as users will start copying items to multiple reviews, adding the review_id is important to get the specific set of annotations for a review.

We also added a new sort_review_items function that allows you to easily update the sort order of the items within a review.
Due to the many to many connection between item and reviews, updating the sort order on the item itself does not work any more.

1.0.8.9

This latest release allows you to re-sort items in a review.

Added new examples to the main readme file.


response = s.sort_review_items(
review_id,
[
{ "id": 111, "sortorder": 0 },
{ "id": 222, "sortorder": 1 },
{ "id": 333, "sortorder": 2 },
]
)
print(response)
Out[1] {u'updated_items': 3}

1.0.8.8

new param available for get_projects method.

s.get_projects(include_connections=True) will include user info for all connections on each project.

1.0.8.7

New endpoint methods to retrieve the storage usage for Projects and Reviews.


get_project_storage(project_id)
get_review_storage(review_id)


Response:

{
"storage": 123456789
}


Response value is in bytes.

Enjoy!

1.0.8.6

You can now request project tags in the get_projects() endpoint.

get_projects(include_deleted=False, include_archived=False, include_tags=False, limit=100, offset=0)

Bug fixes:
Fixed the sync shotgun review items endpoint.

Page 2 of 6

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.