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
35 changes: 34 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,38 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [1.5.1] - 2025-09-22

## What's Changed
### Added
* PyTorch 2.7 and 2.8 support (#8429, #8530)
* Create SECURITY.md (#8546)
* Add kwargs in array and functional file (#8508)
* Add .coderabbit.yaml File (#8513)
* Add input validation to ImageStats class (#8501)
* Add support for optional conditioning in PatchInferer, SliceInferer, and SlidingWindowInferer (#8400)
* Add classifier free guidance unconditioned value (#8562)
* Improved `DiffusionModelEncoder` to support output linear layers of different dimensions (#8578, #8580)

### Fixed
* Fix for insecure zip file extraction to address [GHSA-x6ww-pf9m-m73m](https://github.com/Project-MONAI/MONAI/security/advisories/GHSA-x6ww-pf9m-m73m) (#8568)
* Fix for insecure use of `torch.load` and `pickle` to address [GHSA-6vm5-6jv9-rjpj](https://github.com/Project-MONAI/MONAI/security/advisories/GHSA-6vm5-6jv9-rjpj) and [GHSA-p8cm-mm2v-gwjm](https://github.com/Project-MONAI/MONAI/security/advisories/GHSA-p8cm-mm2v-gwjm) (#8566)
* Torchvision fix for loading pretrained weights using current syntax (#8563)
* Fix bug in MAISI vae (#8517)
* Throw exception on invalid images in retinanet detector (#8515)
* Fix: HistogramNormalized doc (#8543)
* Fix build failure by pinning pyamg to versions below 5.3.0 (#8548)
* Fix hardcoded input dim in DiffusionModelEncoder (#8514)
* Fix for gdown downloading fails (#8576)

### Changed
* Update README badges to add research paper citations number (#8494)
* CI: Add custom timeout to ci job in order to save resources (#8504)
* Improve documentation on the datalist format (#8539)
* Tests Cleanup and refactor (#8405, #8535)
* Improve Orientation transform to use the "space" (LPS vs RAS) of a metatensor by default (#8473)
* Updated supported version of Huggingface Transformers (#8574)

## [1.5.0] - 2025-06-13

## What's Changed
Expand Down Expand Up @@ -1229,7 +1261,8 @@ the postprocessing steps should be used before calling the metrics methods

[highlights]: https://github.com/Project-MONAI/MONAI/blob/master/docs/source/highlights.md

[Unreleased]: https://github.com/Project-MONAI/MONAI/compare/1.5.0...HEAD
[Unreleased]: https://github.com/Project-MONAI/MONAI/compare/1.5.1...HEAD
[1.5.1]: https://github.com/Project-MONAI/MONAI/compare/1.5.0...1.5.1
[1.5.0]: https://github.com/Project-MONAI/MONAI/compare/1.4.0...1.5.0
[1.4.0]: https://github.com/Project-MONAI/MONAI/compare/1.3.2...1.4.0
[1.3.2]: https://github.com/Project-MONAI/MONAI/compare/1.3.1...1.3.2
Expand Down
1 change: 1 addition & 0 deletions docs/source/whatsnew.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ What's New
.. toctree::
:maxdepth: 1

whatsnew_1_5_1.md
whatsnew_1_5.md
whatsnew_1_4.md
whatsnew_1_3.md
Expand Down
2 changes: 1 addition & 1 deletion docs/source/whatsnew_1_5.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

# What's new in 1.5 🎉🎉
# What's new in 1.5

- Support numpy 2.x and Pytorch 2.6
- MAISI inference accelerate
Expand Down
12 changes: 12 additions & 0 deletions docs/source/whatsnew_1_5_1.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@

# What's new in 1.5.1 🎉🎉

This is a minor update for MONAI to address security concerns and improve compatibility with the newest PyTorch release.

With the upgrade support for PyTorch 2.8, MONAI now directly support NVIDIA GeForce RTX 50 series GPUs and other Blackwell-based GPUs!

- Support up to PyTorch 2.8.
- Security fixes to address advisories [GHSA-x6ww-pf9m-m73m](https://github.com/Project-MONAI/MONAI/security/advisories/GHSA-x6ww-pf9m-m73m), [GHSA-6vm5-6jv9-rjpj](https://github.com/Project-MONAI/MONAI/security/advisories/GHSA-6vm5-6jv9-rjpj), and [GHSA-p8cm-mm2v-gwjm](https://github.com/Project-MONAI/MONAI/security/advisories/GHSA-p8cm-mm2v-gwjm),
- Updated version of supported Huggingface Transformers library to address security advisories raised for it.
- Updated Torchvision pretrained network loading to use current arguments.
- Many minor fixes to identified issues, see release notes for details on merged PRs.
Loading