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

Prepare for Release Fast DDS v2.12.0 #3881

Merged
merged 7 commits into from
Sep 29, 2023
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
14 changes: 6 additions & 8 deletions PLATFORM_SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ Community members may provide assistance with these platforms.

## Platforms

|Architecture|Ubuntu Jammy (22.04)|Ubuntu Focal (20.04)|MacOS Mojave (10.14)|Windows 10 (VS2019)|Debian Buster (10)|Android 11 | QNX 7.1 |
|Architecture|Ubuntu Jammy (22.04)|Ubuntu Focal (20.04)|MacOS Mojave (10.14)|Windows 10 (VS2019)|Debian Buster (10)|Android 12 | QNX 7.1 |
|------------|--------------------|--------------------|--------------------|-------------------|------------------|-----------|-----------|
|amd64 |Tier 1 [^a][^s] |Tier 1 [^a][^s] |Tier 1 [^s] |Tier 1 [^a][^s] |Tier 3 [^s] |Tier 3 [^s]|Tier 3 [^s]|
|amd64 |Tier 1 [^a][^s] |Tier 3 [^a][^s] |Tier 1 [^s] |Tier 1 [^a][^s] |Tier 3 [^s] |Tier 3 [^s]|Tier 3 [^s]|
|amd32 | | | |Tier 2 [^a][^s] | | | |
|arm64 |Tier 1 [^a][^s] |Tier 1 [^a][^s] | | |Tier 3 [^s] |Tier 3 [^s]|Tier 3 [^s]|
|arm64 |Tier 1 [^a][^s] |Tier 3 [^a][^s] | | |Tier 3 [^s] |Tier 3 [^s]|Tier 3 [^s]|
|arm32 |Tier 3 [^s] |Tier 3 [^s] | | |Tier 3 [^s] |Tier 3 [^s]| |

[^a]: Binary releases are provided as a single archive per platform.
Expand All @@ -45,16 +45,14 @@ Community members may provide assistance with these platforms.

Tier 1 compilers and minimum supported versions:

* GCC 9
* GCC 11.3 [^d]
* GCC 12.1
* Clang 12
* GCC 11.4 [^d]
* Clang 15
* MSVC v142 (Visual Studio 2019)

Tier 2 compilers:

* MSVC v141 (Visual Studio 2017)

[^d]: Using GCC's Thread Sanitizer flags in conjunction with GCC 11.3 to analyze Fast DDS threaded behavior produces
[^d]: Using GCC's Thread Sanitizer flags in conjunction with GCC 11 to analyze Fast DDS threaded behavior produces
false positives on some uninstrumented synchronization calls.
Fast DDS's Thread Sanitizer Github Action uses GCC 12 for threading issues testing.
4 changes: 2 additions & 2 deletions RELEASE_SUPPORT.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ The table below outlines the *eProsima Fast DDS* minor releases and their suppor

|Version branch|Release Date|EOL Date|
|--------------|------------|--------|
|v2.12.x|September 2023|March 2024|
|***v2.12.x***|***September 2023***|***March 2024***|
|***v2.11.x***|***July 2023***|***January 2024***|
|***v2.10.x***|***March 2023***|***May 2024 [^*]***|
|v2.9.x|December 2022|July 2023|
|v2.8.x|September 2022|March 2023|
|v2.7.x|July 2022|January 2023|
|***v2.6.x***|***March 2022***|***Nov 2023 [^*]***|
|***v2.6.x***|***March 2022***|***May 2024 [^*]***|
|v2.5.x|December 2021|June 2022|
|v2.4.x|September 2021|March 2022|
|v2.3.x|March 2021|November 2022|
Expand Down
2 changes: 1 addition & 1 deletion cmake/packaging/Config.cmake.in
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ endif()
set_and_check(@PROJECT_NAME@_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@")
set_and_check(@PROJECT_NAME@_LIB_DIR "@PACKAGE_LIB_INSTALL_DIR@")

find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
find_package(foonathan_memory REQUIRED)
find_package(TinyXML2 QUIET)
@FASTRTPS_INSTALLER_DEPS_ANCILLARY@
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/AdvancedConfigurationExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(AdvancedConfigurationExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/BasicConfigurationExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(BasicConfigurationExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/Configurability/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(Configurability VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/ContentFilteredTopicExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project("ContentFilterTopic" VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

message(STATUS "Configuring ContentFilterTopic examples...")
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/CustomListenerExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(DDSCustomListener VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

# Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/CustomPayloadPoolExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(CustomPayloadPoolExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/DeadlineQoSExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(DeadlineQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/DisablePositiveACKs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(LifespanQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/DiscoveryServerExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(DiscoveryServerExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/DynamicHelloWorldExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(DDSDynamicHelloWorldExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/Filtering/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(FilteringExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/FlowControlExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(FlowControlExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/HelloWorldExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(DDSHelloWorldExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/HelloWorldExampleDataSharing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(DDSHelloWorldExampleDataSharing VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/HelloWorldExampleSharedMem/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(HelloWorldExampleSharedMem VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/HelloWorldExampleTCP/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project("HelloWorldExampleTCP" VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/HistoryKind/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(HistoryKindSample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/Keys/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(KeysSample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/LateJoiners/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ project(LateJoiners VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT foonathan_memory_FOUND)
find_package(foonathan_memory REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/LifespanQoSExample/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(LifespanQoSExample VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
4 changes: 2 additions & 2 deletions examples/cpp/dds/LivelinessQoS/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ project(LivelinessQoS VERSION 1 LANGUAGES CXX)

# Find requirements
if(NOT fastcdr_FOUND)
find_package(fastcdr REQUIRED)
find_package(fastcdr 2 REQUIRED)
endif()

if(NOT fastrtps_FOUND)
find_package(fastrtps REQUIRED)
find_package(fastrtps 2.12 REQUIRED)
endif()

#Check C++11
Expand Down
Loading