Skip to content

Commit 9c6d819

Browse files
ericspodpre-commit-ci[bot]KumoLiu
authored
Release 1.5.1 Updates (#8575)
Fixes #8569. ### Description This updates documentation and other components for the 1.5.1 release. ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Eric Kerfoot <[email protected]> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: YunLiu <[email protected]>
1 parent 9122739 commit 9c6d819

File tree

4 files changed

+48
-2
lines changed

4 files changed

+48
-2
lines changed

CHANGELOG.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,38 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

66
## [Unreleased]
77

8+
## [1.5.1] - 2025-09-22
9+
10+
## What's Changed
11+
### Added
12+
* PyTorch 2.7 and 2.8 support (#8429, #8530)
13+
* Create SECURITY.md (#8546)
14+
* Add kwargs in array and functional file (#8508)
15+
* Add .coderabbit.yaml File (#8513)
16+
* Add input validation to ImageStats class (#8501)
17+
* Add support for optional conditioning in PatchInferer, SliceInferer, and SlidingWindowInferer (#8400)
18+
* Add classifier free guidance unconditioned value (#8562)
19+
* Improved `DiffusionModelEncoder` to support output linear layers of different dimensions (#8578, #8580)
20+
21+
### Fixed
22+
* 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)
23+
* 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)
24+
* Torchvision fix for loading pretrained weights using current syntax (#8563)
25+
* Fix bug in MAISI vae (#8517)
26+
* Throw exception on invalid images in retinanet detector (#8515)
27+
* Fix: HistogramNormalized doc (#8543)
28+
* Fix build failure by pinning pyamg to versions below 5.3.0 (#8548)
29+
* Fix hardcoded input dim in DiffusionModelEncoder (#8514)
30+
* Fix for gdown downloading fails (#8576)
31+
32+
### Changed
33+
* Update README badges to add research paper citations number (#8494)
34+
* CI: Add custom timeout to ci job in order to save resources (#8504)
35+
* Improve documentation on the datalist format (#8539)
36+
* Tests Cleanup and refactor (#8405, #8535)
37+
* Improve Orientation transform to use the "space" (LPS vs RAS) of a metatensor by default (#8473)
38+
* Updated supported version of Huggingface Transformers (#8574)
39+
840
## [1.5.0] - 2025-06-13
941

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

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

1232-
[Unreleased]: https://github.com/Project-MONAI/MONAI/compare/1.5.0...HEAD
1264+
[Unreleased]: https://github.com/Project-MONAI/MONAI/compare/1.5.1...HEAD
1265+
[1.5.1]: https://github.com/Project-MONAI/MONAI/compare/1.5.0...1.5.1
12331266
[1.5.0]: https://github.com/Project-MONAI/MONAI/compare/1.4.0...1.5.0
12341267
[1.4.0]: https://github.com/Project-MONAI/MONAI/compare/1.3.2...1.4.0
12351268
[1.3.2]: https://github.com/Project-MONAI/MONAI/compare/1.3.1...1.3.2

docs/source/whatsnew.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ What's New
66
.. toctree::
77
:maxdepth: 1
88

9+
whatsnew_1_5_1.md
910
whatsnew_1_5.md
1011
whatsnew_1_4.md
1112
whatsnew_1_3.md

docs/source/whatsnew_1_5.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# What's new in 1.5 🎉🎉
2+
# What's new in 1.5
33

44
- Support numpy 2.x and Pytorch 2.6
55
- MAISI inference accelerate

docs/source/whatsnew_1_5_1.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
2+
# What's new in 1.5.1 🎉🎉
3+
4+
This is a minor update for MONAI to address security concerns and improve compatibility with the newest PyTorch release.
5+
6+
With the upgrade support for PyTorch 2.8, MONAI now directly support NVIDIA GeForce RTX 50 series GPUs and other Blackwell-based GPUs!
7+
8+
- Support up to PyTorch 2.8.
9+
- 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),
10+
- Updated version of supported Huggingface Transformers library to address security advisories raised for it.
11+
- Updated Torchvision pretrained network loading to use current arguments.
12+
- Many minor fixes to identified issues, see release notes for details on merged PRs.

0 commit comments

Comments
 (0)