Skip to content
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

dist: Prepare for 4.1.7 release #12679

Merged
merged 1 commit into from
Aug 12, 2024
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
33 changes: 31 additions & 2 deletions NEWS
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2012 Sandia National Laboratories. All rights reserved.
Copyright (c) 2012 University of Houston. All rights reserved.
Copyright (c) 2013 NVIDIA Corporation. All rights reserved.
Copyright (c) 2013-2018 Intel, Inc. All rights reserved.
Copyright (c) 2018-2023 Amazon.com, Inc. or its affiliates. All Rights
Copyright (c) 2018-2024 Amazon.com, Inc. or its affiliates. All Rights
reserved.
Copyright (c) 2019-2021 Triad National Security, LLC. All rights
reserved.
Expand Down Expand Up @@ -59,9 +59,38 @@ included in the vX.Y.Z section and be denoted as:
(** also appeared: A.B.C) -- indicating that this item was previously
included in release version vA.B.C.

4.1.6 -- September, 2023
4.1.7 -- August, 2024
---------------------

- Fix bug in Fortran / C interface array calculation.
- Fix potential initialization in UCX OpenSHMEM support
- Add OpenSHMEM support for symmetric remote key handling to improve
scalability of OpenSHMEM interface.
- Add MCS Locks as default implementation for OpenSHMEM locks.
- Fix bug to properly handle ORTE Prefix of "/".
- Fix bug in I/O interface handling of soft links on Lustre
filesystems.
- Fix memory leak in UCX one-sided implementation.
- Fix bug in rcache components that could lead to assert on macOS
systems.
- Fix race condition in smcuda Shared Memory transport (used on
platforms with CUDA support).
- Fix mishandling of a NULL completion context in the OFI transport.
- Tarballs are now built with the tar-pax format.
- Set MPI_THREAD_SERIALIZED instead of MPI_THREAD_SINGLE as supported
threading model when using UCX that supports
UCS_THREAD_MODE_SERIALIZED.
- Improve macOS configure test to only add `-ld_classic` to the
Fortran bindings link line if using a version of Xcode that ships a
version of the "new linker" that does not support `-commons
use_dylibs`. Xcode 16 betas ship a new linker that supports
`-commons use_dylibs`.
- Fix issue that would prevent using Libfabric 2.x releases.


jsquyres marked this conversation as resolved.
Show resolved Hide resolved
4.1.6 -- September, 2023
------------------------

- Fix configure issue with XCode 15.
- Update embedded PMIx to 3.2.5. PMIx 3.2.5 addresses CVE-2023-41915.
Note that prior versions of Open MPI (and their associated PMIx
Expand Down
20 changes: 10 additions & 10 deletions VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
# Copyright (c) 2018-2020 IBM Corporation. All rights reserved.
# Copyright (c) 2018 Research Organization for Information Science
# and Technology (RIST). All rights reserved.
# Copyright (c) 2020-2022 Amazon.com, Inc. or its affiliates. All Rights
# Copyright (c) 2020-2024 Amazon.com, Inc. or its affiliates. All Rights
# reserved.

# This is the VERSION file for Open MPI, describing the precise
Expand All @@ -70,7 +70,7 @@ release=7
# requirement is that it must be entirely printable ASCII characters
# and have no white space.

greek=a1
greek=rc1

# If repo_rev is empty, then the repository version number will be
# obtained during "make dist" via the "git describe --tags --always"
Expand Down Expand Up @@ -128,16 +128,16 @@ date="Unreleased developer copy"
# Version numbers are described in the Libtool current:revision:age
# format.

libmpi_so_version=70:6:30
libmpi_so_version=70:7:30
libmpi_cxx_so_version=70:1:30
libmpi_mpifh_so_version=70:0:30
libmpi_usempi_tkr_so_version=70:0:30
libmpi_usempi_ignore_tkr_so_version=70:0:30
libmpi_usempif08_so_version=70:0:30
libopen_rte_so_version=70:3:30
libopen_pal_so_version=70:3:30
libmpi_mpifh_so_version=70:1:30
libmpi_usempi_tkr_so_version=70:1:30
libmpi_usempi_ignore_tkr_so_version=70:1:30
libmpi_usempif08_so_version=70:1:30
libopen_rte_so_version=70:4:30
libopen_pal_so_version=70:4:30
libmpi_java_so_version=70:0:30
liboshmem_so_version=70:3:30
liboshmem_so_version=70:4:31
libompitrace_so_version=70:1:30

# "Common" components install standalone libraries that are run-time
Expand Down
Loading