Compare commits

..
6 Commits
Author SHA1 Message Date
Pablo Garrido fe9ca51823 4.0.4 2024-01-29 16:21:06 +01:00
Pablo Garrido 90410c6de0 Changelog 2024-01-29 16:20:48 +01:00
Pablo Garrido cd321caabe Fix thread include (#216)
* Fix thread include

Signed-off-by: Pablo Garrido <pablogs9@gmail.com>

* Update CI

* Revert "Fix thread include"

This reverts commit 1427fb6246.

* fix

* Fix

Signed-off-by: Pablo Garrido <pablogs9@gmail.com>

---------

Signed-off-by: Pablo Garrido <pablogs9@gmail.com>
2024-01-29 16:19:46 +01:00
acuadros95 8fdc5060c7 4.0.3 2023-06-06 09:37:44 +00:00
acuadros95 3df90c089d Changelog
Signed-off-by: acuadros95 <acuadros1995@gmail.com>
2023-06-06 09:37:29 +00:00
Antonio Cuadros 0dd684b7a6 Iron release (#192)
* Iron release

Signed-off-by: acuadros95 <acuadros1995@gmail.com>

* Upgrade action-ros-ci

Signed-off-by: acuadros95 <acuadros1995@gmail.com>

---------

Signed-off-by: acuadros95 <acuadros1995@gmail.com>
2023-06-06 11:36:16 +02:00
6 changed files with 30 additions and 27 deletions
+8 -8
View File
@@ -3,7 +3,7 @@ name: CI micro-ROS Agent
on:
pull_request:
branches:
- 'jazzy'
- 'iron'
schedule:
- cron: '33 6 * * *'
@@ -15,15 +15,15 @@ jobs:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
ros_distribution: [ jazzy ]
ros_distribution: [ iron ]
include:
- docker_image: ubuntu:24.04
ros_distribution: jazzy
- docker_image: ubuntu:jammy
ros_distribution: iron
container:
image: ${{ matrix.docker_image }}
image: ubuntu:jammy
steps:
- uses: actions/checkout@v4
- uses: ros-tooling/setup-ros@0.7.13
- uses: actions/checkout@v3
- uses: ros-tooling/setup-ros@0.7.1
with:
use-ros2-testing: false
required-ros-distributions: ${{ matrix.ros_distribution }}
@@ -31,7 +31,7 @@ jobs:
run: |
apt-get install ros-${{ matrix.ros_distribution }}-micro-ros-msgs
apt-get install ros-${{ matrix.ros_distribution }}-rmw-fastrtps-cpp
- uses : ros-tooling/action-ros-ci@0.4.3
- uses : ros-tooling/action-ros-ci@0.3.6
with:
package-name: "micro_ros_agent"
target-ros2-distro: ${{ matrix.ros_distribution }}
+11 -8
View File
@@ -2,16 +2,19 @@
Changelog for package micro-ros_agent
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5.0.2 (2024-05-31)
4.0.4 (2024-01-29)
------------------
* Jazzy Release
* Bump Micro XRCE-DDS Agent (`#226 <https://github.com/micro-ROS/micro-ROS-Agent/issues/226>`_)
* Fix thread include (`#216 <https://github.com/micro-ROS/micro-ROS-Agent/issues/216>`_)
* Fix thread include
* Update CI
* Revert "Fix thread include"
This reverts commit 1427fb6246c46a0b5851a017ddc886abd80d895b.
* fix
* Fix
---------
* Contributors: Pablo Garrido
5.0.1 (2024-01-29)
------------------
* Fix thread include (`#216 <https://github.com/micro-ROS/micro-ROS-Agent/issues/216>`_) (`#218 <https://github.com/micro-ROS/micro-ROS-Agent/issues/218>`_)
5.0.0 (2023-06-06)
4.0.3 (2023-06-06)
------------------
* Add empty type key hash to GraphCache (`#189 <https://github.com/micro-ROS/micro-ROS-Agent/issues/189>`_)
* Contributors: Antonio Cuadros
+1 -1
View File
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
cmake_minimum_required(VERSION 3.11)
cmake_minimum_required(VERSION 3.5)
option(UROSAGENT_GENERATE_PROFILE
"Generates agent.refs according to the .msgs provided in the .repos" OFF
+1 -1
View File
@@ -26,7 +26,7 @@ if(NOT xrceagent_FOUND)
GIT_REPOSITORY
https://github.com/eProsima/Micro-XRCE-DDS-Agent.git
GIT_TAG
v2.4.3
ros2
PREFIX
${PROJECT_BINARY_DIR}/agent
INSTALL_DIR
+3 -3
View File
@@ -2,10 +2,10 @@
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
<package format="3">
<name>micro_ros_agent</name>
<version>5.0.2</version>
<version>4.0.4</version>
<description>micro-ROS Agent package</description>
<maintainer email="eugeniocollado@eprosima.com">Eugenio Collado</maintainer>
<maintainer email="davidlaseca@eprosima.com">David Laseca</maintainer>
<maintainer email="pablogarrido@eprosima.com">Pablo Garrido</maintainer>
<maintainer email="antoniocuadros@eprosima.com">Antonio Cuadros</maintainer>
<license>Apache License 2.0</license>
<buildtool_depend>ament_cmake</buildtool_depend>
@@ -54,14 +54,14 @@ bool ParticipantEntitiesInfoTypeSupport::serialize(
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
payload->max_size);
eprosima::fastcdr::Cdr scdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
eprosima::fastcdr::DDS_CDR);
eprosima::fastcdr::Cdr::DDS_CDR);
scdr.serialize_encapsulation();
if (callbacks_->cdr_serialize(data, scdr))
{
payload->encapsulation = (scdr.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS) ?
CDR_BE : CDR_LE;
payload->length = static_cast<uint32_t>(scdr.get_serialized_data_length());
payload->length = static_cast<uint32_t>(scdr.getSerializedDataLength());
return true;
}
else
@@ -77,7 +77,7 @@ bool ParticipantEntitiesInfoTypeSupport::deserialize(
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
payload->length);
eprosima::fastcdr::Cdr dcdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
eprosima::fastcdr::DDS_CDR);
eprosima::fastcdr::Cdr::DDS_CDR);
dcdr.read_encapsulation();
return callbacks_->cdr_deserialize(dcdr, data);
@@ -146,14 +146,14 @@ bool MicrorosGraphInfoTypeSupport::serialize(
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
payload->max_size);
eprosima::fastcdr::Cdr scdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
eprosima::fastcdr::DDS_CDR);
eprosima::fastcdr::Cdr::DDS_CDR);
scdr.serialize_encapsulation();
if (callbacks_->cdr_serialize(data, scdr))
{
payload->encapsulation = (scdr.endianness() == eprosima::fastcdr::Cdr::BIG_ENDIANNESS) ?
CDR_BE : CDR_LE;
payload->length = static_cast<uint32_t>(scdr.get_serialized_data_length());
payload->length = static_cast<uint32_t>(scdr.getSerializedDataLength());
return true;
}
else
@@ -169,7 +169,7 @@ bool MicrorosGraphInfoTypeSupport::deserialize(
eprosima::fastcdr::FastBuffer fastbuffer(reinterpret_cast<char *>(payload->data),
payload->length);
eprosima::fastcdr::Cdr dcdr(fastbuffer, eprosima::fastcdr::Cdr::DEFAULT_ENDIAN,
eprosima::fastcdr::DDS_CDR);
eprosima::fastcdr::Cdr::DDS_CDR);
dcdr.read_encapsulation();
return callbacks_->cdr_deserialize(dcdr, data);