Skip to content

⬆️ Bump supervision from 0.26.0rc7 to 0.27.0rc0 #127

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

Merged
merged 1 commit into from
Aug 1, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Aug 1, 2025

Bumps supervision from 0.26.0rc7 to 0.27.0rc0.

Release notes

Sourced from supervision's releases.

supervision-0.26.1

🔧 Fixed

🏆 Contributors

@​balthazur (Balthasar Huber), @​onuralpszr (Onuralp SEZER), @​rafaelpadilla (Rafael Padilla), @​soumik12345 (Soumik Rakshit), @​SkalskiP (Piotr Skalski)

supervision-0.26.0

[!WARNING]
supervision-0.26.0 drops python3.8 support and upgrade all codes to python3.9 syntax style.

[!TIP] Our docs page now has a fresh look that is consistent with the documentations of all Roboflow open-source projects. (#1858)

🚀 Added

  • Added support for creating sv.KeyPoints objects from ViTPose and ViTPose++ inference results via sv.KeyPoints.from_transformers. (#1788)

    vitpose-plus-large.mp4
  • Added support for the IOS (Intersection over Smallest) overlap metric that measures how much of the smaller object is covered by the larger one in sv.Detections.with_nms, sv.Detections.with_nmm, sv.box_iou_batch, and sv.mask_iou_batch. (#1774)

    import numpy as np
    import supervision as sv
    boxes_true = np.array([
    [100, 100, 200, 200],
    [300, 300, 400, 400]
    ])
    boxes_detection = np.array([
    [150, 150, 250, 250],
    [320, 320, 420, 420]
    ])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOU
    )
    array([[0.14285714, 0.        ],
    [0.        , 0.47058824]])

... (truncated)

Changelog

Sourced from supervision's changelog.

Changelog

0.26.1 Jul 22, 2025

0.26.0 Jul 16, 2025

!!! failure "Removed" supervision-0.26.0 drops python3.8 support and upgrade all codes to python3.9 syntax style.

!!! info "Tip" Supervision’s documentation theme now has a fresh look that is consistent with the documentations of all Roboflow open-source projects. (#1858)

  • Added #1774: Support for the IOS (Intersection over Smallest) overlap metric that measures how much of the smaller object is covered by the larger one in sv.Detections.with_nms, sv.Detections.with_nmm, sv.box_iou_batch, and sv.mask_iou_batch.

    import numpy as np
    import supervision as sv
    boxes_true = np.array([
    [100, 100, 200, 200],
    [300, 300, 400, 400]
    ])
    boxes_detection = np.array([
    [150, 150, 250, 250],
    [320, 320, 420, 420]
    ])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOU
    )
    array([[0.14285714, 0.        ],
    [0.        , 0.47058824]])
    sv.box_iou_batch(
    boxes_true=boxes_true,
    boxes_detection=boxes_detection,
    overlap_metric=sv.OverlapMetric.IOS

... (truncated)

Commits
  • e139369 bump version from 0.26.1 to 0.27.0rc0
  • 90f8582 Merge pull request #1919 from Ashp116/feature/spline-tracer
  • 0c9fea4 UPDATE: Change Smooth to bool
  • cdca2e6 UPDATE: Removed SplineAnnotator and added smooth flag for TraceAnnotator
  • 8407d5a fix(pre_commit): 🎨 auto format pre-commit hooks
  • eaf6cdd Precommit
  • f447b6f fix(pre_commit): 🎨 auto format pre-commit hooks
  • 8c6ac2d UPDATE: Made smoothing and spline_order as hyperparameters
  • 22b6d3d ADD: Added a spline annotator
  • dda3900 Merge pull request #1917 from roboflow/feat/label-annotator-offset
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [supervision](https://github.com/roboflow/supervision) from 0.26.0rc7 to 0.27.0rc0.
- [Release notes](https://github.com/roboflow/supervision/releases)
- [Changelog](https://github.com/roboflow/supervision/blob/develop/docs/changelog.md)
- [Commits](roboflow/supervision@0.26.0rc7...0.27.0rc0)

---
updated-dependencies:
- dependency-name: supervision
  dependency-version: 0.27.0rc0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 1, 2025
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Aug 1, 2025
@SkalskiP SkalskiP merged commit a26d38b into main Aug 1, 2025
18 checks passed
@dependabot dependabot bot deleted the dependabot/uv/main/supervision-0.27.0rc0 branch August 1, 2025 09:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant