You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+34-1Lines changed: 34 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,38 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
5
5
6
6
## [Unreleased]
7
7
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
+
8
40
## [1.5.0] - 2025-06-13
9
41
10
42
## What's Changed
@@ -1229,7 +1261,8 @@ the postprocessing steps should be used before calling the metrics methods
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