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

on_subscription_matched / on_publication_matched listeners not reliable / only called once #410

Open
Pro opened this issue May 15, 2023 · 6 comments

Comments

@Pro
Copy link
Contributor

Pro commented May 15, 2023

I am still facing the issue described in #378 with version 0.10.3
(ping @trittsv)

I.e., whichever process starts second, it does not properly call the corresponding on_subscription_matched or on_publication_matched callbacks in the Listeners.

Note that the same code works perfectly fine with RTI Connext DDS.

I used the same code as in #378 for reproduction steps: https://github.com/eclipse-cyclonedds/cyclonedds-cxx/files/10918029/listener-not-reliable.zip

With a small modification, to re-create the publisher and writer in a loop (see code below) and keep the subscriber running forever.

The interesting part now is, that the on_publication_matched callback is only called once (in the best case).
For subsequent creations of the publisher & writer, the on_publication_matched is not called at all.

I.e., if you start the subscriber.cpp, and then the publisher.cpp, you will see the following output:

=== [Publisher] Create writer.
on_publication_matched, current_count: 1
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Create writer.
=== [Publisher] Write sample.
=== [Publisher] Waiting for sample to be accepted.
=== [Publisher] Done.

Process finished with exit code 0

And the writer definitely has a match, otherwise it would not write the data (see wait loop).

So, why is the on_publication_matched only called once, and not within every loop?
If I change the code to also re-create the Domain Participant inside the loop, the on_publication_matched callback is always called. So it looks like there is some caching of statuses.

publisher.cpp

/*
 * Copyright(c) 2006 to 2020 ZettaScale Technology and others
 *
 * This program and the accompanying materials are made available under the
 * terms of the Eclipse Public License v. 2.0 which is available at
 * http://www.eclipse.org/legal/epl-2.0, or the Eclipse Distribution License
 * v. 1.0 which is available at
 * http://www.eclipse.org/org/documents/edl-v10.php.
 *
 * SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
 */
#include <chrono>
#include <cstdlib>
#include <iostream>
#include <thread>

/* Include the C++ DDS API. */
#include "dds/dds.hpp"

/* Include data type and specific traits to be used with the C++ DDS API. */
#include "HelloWorldData.hpp"

using namespace org::eclipse::cyclonedds;

class ExampleListener : public virtual dds::pub::DataWriterListener<HelloWorldData::Msg>
{
public:
    virtual void on_offered_deadline_missed(dds::pub::DataWriter<HelloWorldData::Msg>& writer,
                                            const dds::core::status::OfferedDeadlineMissedStatus& status)
    {
        std::cout << "on_offered_deadline_missed" << std::endl;
    }

    virtual void on_offered_incompatible_qos(dds::pub::DataWriter<HelloWorldData::Msg>& writer,
                                             const dds::core::status::OfferedIncompatibleQosStatus& status)
    {
        std::cout << "on_offered_incompatible_qos" << std::endl;
    }

    virtual void on_liveliness_lost(dds::pub::DataWriter<HelloWorldData::Msg>& writer,
                                    const dds::core::status::LivelinessLostStatus& status)
    {
        std::cout << "on_liveliness_lost" << std::endl;
    }

    virtual void on_publication_matched(dds::pub::DataWriter<HelloWorldData::Msg>& writer,
                                        const dds::core::status::PublicationMatchedStatus& status)
    {
        std::cout << "on_publication_matched, current_count: " << status.current_count() << std::endl;
    }
};

int main()
{
    try {

        dds::domain::DomainParticipant participant(domain::default_id());

        dds::topic::Topic<HelloWorldData::Msg> topic(participant, "HelloWorldData_Msg");

        for (size_t i = 0; i < 10; i++) {
            // create the writer in a loop, just for testing
            std::cout << "=== [Publisher] Create writer." << std::endl;

            auto publisher = ::std::make_shared<dds::pub::Publisher>(participant);

            auto listener = ::std::make_shared<ExampleListener>();
            auto writer =
                ::std::make_shared<dds::pub::DataWriter<HelloWorldData::Msg>>(*publisher.get(),
                                                                              topic,
                                                                              publisher->default_datawriter_qos(),
                                                                              listener.get(),
                                                                              dds::core::status::StatusMask::all());

            while (writer->publication_matched_status().current_count() == 0) {
                std::this_thread::sleep_for(std::chrono::milliseconds(20));
            }

            HelloWorldData::Msg msg(1, "Hello World");

            std::cout << "=== [Publisher] Write sample." << std::endl;
            writer->write(msg);
            std::cout << "=== [Publisher] Waiting for sample to be accepted." << std::endl;
            std::this_thread::sleep_for(std::chrono::milliseconds(1000));

            writer->close();
            writer.reset();
            publisher->close();
            publisher.reset();
        }
    }
    catch (const dds::core::Exception& e) {
        std::cerr << "=== [Publisher] Exception: " << e.what() << std::endl;
        return EXIT_FAILURE;
    }

    std::cout << "=== [Publisher] Done." << std::endl;

    return EXIT_SUCCESS;
}
@trittsv
Copy link
Contributor

trittsv commented May 15, 2023

Hey, @Pro i have the same issue with 0.10.3, see here #392 (just closed it because i thought it was my stupidity)

Currently i use 0.10.2 with the fixes patched into it, i did not get i work with 0.10.3 too.

@trittsv
Copy link
Contributor

trittsv commented May 15, 2023

@eboasson do you have a idea on this?

@Pro
Copy link
Contributor Author

Pro commented May 15, 2023

@trittsv THANK YOU :)

I can confirm that directly applying the fixes onto 0.10.2 works properly, but using release 0.10.3 does not work.

I also tested using CycloneDDS (C basis) with 0.10.2 and 0.10.3. That does not make a difference. But as soon as I use the CXX wrapper in version 0.10.3, it does not work. 0.10.2 with the patches works.

@Pro
Copy link
Contributor Author

Pro commented May 15, 2023

The problematic commit is this one:
a49b3f0

If I remove it from 0.10.3, there is no issue with on_publication_matched.

It was part of #387 (ping @eboasson @reicheratwork )

@eboasson
Copy link
Contributor

Thank you so much @Pro and @trittsv!

Just wanted to let you know that this is pretty high up on our list of issues. I am happy that at least there is a workaround (reverting a49b3f0, but by itself that can't be a fix because that change went in for another good reason).

@e-hndrks
Copy link
Contributor

e-hndrks commented May 25, 2023

Hi @Pro and @trittsv , @eboasson has asked me to look into this issue and I wanted to give you a little update of where we are at right now. We were able to reproduce the issue successfully and quickly found the culprit.

The first publication_matched event is fired by the ddsi thread that is responsible for the initial discovery between Reader and Writer, and it occurs some time after the C++ Writer creation finished successfully (We can actually see that the sleep has been invoked a number of times prior to the C++ Listener callback.) However, since the Participant stays alive for the duration of the publishing application, it will remember the presence of the remote Reader and notify the 2nd Writer about it directly at creation time on account of the thread that is actually invoking the dds_create_writer call. Because the C++ API is built on top of the C API, and the listener object is passed down to C at creation time, the C Writer will try to invoke its C++ listener during the the invocation dds_create_writer, and so before C++ had any chance of wrapping a C++ object around this Writer.

The commit that broke your example is needed to prevent a C++ writer from dropping its last reference during a listener callback. For that reason it creates an additional reference to the Writer, which is dropped after the listener callback ended successfully. However, in this particular case the call to create an additional reference to the Writer fails due to the fact that C++ hasn't been able to create its C++ wrapper around that Writer in the first place, causing the callback to be skipped.

What we will do to fix this is to create the C++ writer in a two-step process:

  1. We first create the underlying C Writer without a listener, so that we can create our C++ wrapper around it prior to receiving our first listener callback.
  2. Once C++ is set up correctly, we set the C++ listener separately using a call to dds_set_listener. This call should then look for any pending (unhandled) events and invoke the registered callbacks on account of the thread that is invoking dds_set_listener.

This approach would require us to change the behavior of dds_set_listener somewhat, since it currently doesn't check for any pending events and doesn't invoke any listener calls. But our expectation is that this approach would fix your problem.

e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 5, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 5, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jun 5, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after succssfully putting a C++ wrapper around the underlying C Entity
This should fix issue eclipse-cyclonedds#410
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jun 6, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after succssfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jun 6, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 9, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 12, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 15, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 15, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jun 15, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jun 16, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jul 3, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jul 3, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jul 3, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds that referenced this issue Jul 3, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
eboasson pushed a commit to eclipse-cyclonedds/cyclonedds that referenced this issue Jul 4, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
e-hndrks added a commit to e-hndrks/cyclonedds-cxx that referenced this issue Jul 4, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
eboasson pushed a commit that referenced this issue Jul 4, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue #410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
eboasson pushed a commit to eboasson/cyclonedds that referenced this issue Jul 21, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
eboasson pushed a commit to eboasson/cyclonedds-cxx that referenced this issue Jul 21, 2023
When creating an Entity with a Listener, any instantaneous events that occurred during creation would miss their callback.
This was caused by the C++ API not being able to wrap the underlying C API with a C++ object prior to C already trying to invoking the callback.
That is now resolved by not setting the Listener at creation time, but by setting it after successfully putting a C++ wrapper around the underlying C Entity.
This should fix issue eclipse-cyclonedds#410
A prerequisite for applying this fix is to make sure pull request #eclipse-cyclonedds/cyclonedds#1717 is applied to the cyclonedds repository.

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
eboasson pushed a commit to eclipse-cyclonedds/cyclonedds that referenced this issue Aug 28, 2023
When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback.
Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate.
This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410

Signed-off-by: Erik Hendriks <erik.hendriks@zettascale.tech>
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 14, 2024
    - cyclonedds in PX4/Firmware (92d694a): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 14, 2024
    - cyclonedds in PX4/Firmware (9cb9111): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 15, 2024
    - cyclonedds in PX4/Firmware (028ea87): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 15, 2024
    - cyclonedds in PX4/Firmware (943b960): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 16, 2024
    - cyclonedds in PX4/Firmware (7f0f8a6): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 16, 2024
    - cyclonedds in PX4/Firmware (0899315): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 17, 2024
    - cyclonedds in PX4/Firmware (d5f6ad9): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 17, 2024
    - cyclonedds in PX4/Firmware (75beba5): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 18, 2024
    - cyclonedds in PX4/Firmware (860248b): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 18, 2024
    - cyclonedds in PX4/Firmware (e59d525): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 19, 2024
    - cyclonedds in PX4/Firmware (f2b62a7): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 19, 2024
    - cyclonedds in PX4/Firmware (f115d72): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 20, 2024
    - cyclonedds in PX4/Firmware (979c6f2): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 20, 2024
    - cyclonedds in PX4/Firmware (c48b651): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 21, 2024
    - cyclonedds in PX4/Firmware (4426a91): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 21, 2024
    - cyclonedds in PX4/Firmware (88b6b0d): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 22, 2024
    - cyclonedds in PX4/Firmware (af80007): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 22, 2024
    - cyclonedds in PX4/Firmware (e74c9a7): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 23, 2024
    - cyclonedds in PX4/Firmware (d484cec): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 23, 2024
    - cyclonedds in PX4/Firmware (5111521): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 24, 2024
    - cyclonedds in PX4/Firmware (03bc9bf): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 24, 2024
    - cyclonedds in PX4/Firmware (db42bdf): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 25, 2024
    - cyclonedds in PX4/Firmware (78a0b6b): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 25, 2024
    - cyclonedds in PX4/Firmware (7d1ee4d): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 26, 2024
    - cyclonedds in PX4/Firmware (a862cd5): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 26, 2024
    - cyclonedds in PX4/Firmware (9cef112): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 27, 2024
    - cyclonedds in PX4/Firmware (cb0a383): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 27, 2024
    - cyclonedds in PX4/Firmware (f8c9984): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 28, 2024
    - cyclonedds in PX4/Firmware (5b876d4): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
PX4BuildBot added a commit to PX4/PX4-Autopilot that referenced this issue Jun 28, 2024
    - cyclonedds in PX4/Firmware (9a9b645): https://github/commit/314887ca403c2fb0a0316add22672102936ed36c
    - cyclonedds current upstream: https://github/commit/b6fe21d5206e0d5195abfb2340e853fa1ae86ddb
    - Changes: https://github/compare/314887ca403c2fb0a0316add22672102936ed36c...b6fe21d5206e0d5195abfb2340e853fa1ae86ddb

    b6fe21d5 2023-08-24 Erik Boasson - dynsub: fix bounded strings
72d6d6d7 2023-08-22 Erik Boasson - Fix ddsi_tran_write_msgfrags_t alignment on stack
19ac0090 2023-08-18 Wade Hunkapiller - Issue #1312: Generated include guards are insufficient
2b65deb9 2023-08-19 Erik Boasson - Reject NaN in uf_int64_unit
71fe82b0 2023-08-11 Erik Boasson - Avoid qsort_r because of older MUSL versions
a6954ca0 2023-06-14 Marcel Jordense - Update raweth to DDS-TSN spec with vlan-tagging
2864be6a 2023-07-27 Erik Boasson - Clean up and move add_addresses_to_addrset
46876ef4 2023-07-27 Erik Boasson - Generalize uf_int64_unit and use it more often
ff972d47 2023-08-14 Erik Boasson - OSS-Fuzz now needs position indepenedent code
7fcd6bef 2023-08-14 Dennis Potman - Fix cdrstream bug for union types (#1800)
d6cdd367 2023-08-10 reicheratwork - Separated idl to c code generator off into own library (#1752)
bde20096 2023-08-07 Dennis Potman - Add CI build for Python language binding and tests
63f702e9 2023-08-08 Michel van den Hoek - add missing DDS_EXPORT in ddsi_sertype.c
3b0f8f8f 2023-08-03 Dennis Potman - Cdrstream fix for extracting key from delimited type
ef2f6e39 2023-08-01 Dennis Potman - Fixes in typebuilder
fe916533 2023-08-03 Dennis Potman - Fix duplicate condition in validate_remote_identity test and add missing copyright headers in security plugin tests
f7688ce7 2023-08-03 Patrick Masselink - Improve Zephyr port in-tree build support
4f6fe9f6 2023-08-03 Patrick Masselink - Add version info to the Zephyr port usage instructions
2bfc386f 2023-07-17 Patrick Masselink - Update Zephyr port to support Zephyr V3.4.0
8638e1fa 2023-08-01 Dennis Potman - Add typelib ifdefs in include files
96eecce2 2023-08-01 Dennis Potman - Export additional typebuilder and cdrstream functions that are used in python binding
e40a2005 2023-07-31 Dennis Potman - Fix unused parameter warning in ddsi_wait_for_type_resolved (in case of a release build with typelib, without type discovery)
a4e00a76 2023-07-26 Dennis Potman - Add ENABLE_TYPELIB build option
23864587 2023-07-31 Dennis Potman - Some minor improvements in cdrstream xcdrv1 key-size calculation
beca5b04 2023-06-07 Dennis Potman - Fix field order in key-only sample serialization
aee37ee2 2023-07-27 Erik Boasson - Use a named constant for "random port number"
5fde54ec 2023-07-25 Erik Boasson - Test locator list parsing
c0b539ee 2023-07-25 Erik Boasson - Reject locators with port = 0 in discovery
f6a4c0cb 2023-07-21 Erik Boasson - Improve tests for sample_rank
085b8209 2023-07-21 Erik Boasson - improve ucunit fatal assert handling
cfb19e78 2023-07-20 Erik Boasson - Test sample ranks also when skipping some samples
cb969915 2023-07-20 Erik Boasson - Fix off-by-1 error in sample_rank, add test
41d2c746 2023-07-13 Erik Boasson - read_w_qminv_inst_validsamples: remove wrong comment
3c57f440 2023-07-13 Erik Boasson - Fix comment about sample info ranks in "collect"
d7f41b2b 2023-07-13 Erik Boasson - dds_read_with_collector: rank set in sample info
9b03d1ed 2023-06-30 Erik Boasson - Add dds_read/take_with_collector API and refactor
43af028d 2023-07-13 Martijn Reicher - Fix transientlocal unittest to also check sample contents
28f47061 2023-05-26 Martijn Reicher - Fixed qosmatch unittest no later matching assumption
44f20ecf 2023-07-13 Martijn Reicher - Fix instance handle tests
8b6989cf 2023-07-13 Martijn Reicher - Fix for entity status tests
4af76a1d 2023-07-13 Martijn Reicher - Fixes for entity hierarchy tests
b0eb340d 2023-07-24 Andrianov Roman - Fix MISRA rule 22-1. (#1765)
8d120b96 2023-07-24 Andrianov Roman - Fix MISRA-RULE 11.1 (#1757)
a1ed0ff0 2023-07-20 eboasson - Merge pull request #1776 from dpotman/dynsub-fixes
e06fc3ea 2023-07-19 Dennis Potman - Fix cleaning-up the type_hashid_map hash table
a2955279 2023-07-19 Dennis Potman - Fix type wrapper memory leak for custom annotations
1e50d475 2023-07-19 Dennis Potman - Fix static analyzer issue in dynsub
718e747f 2023-07-18 Erik Boasson - Remove incorrect assert in serdata_pserop_fix
7e538d22 2023-07-18 Dennis Potman - Split dynsub example into multiple files
2ae86e94 2023-07-18 Erik Boasson - Add support for additional data types in dynsub example
c4d81639 2023-07-06 mosfet80 - Delete .travis.yml
d9d6d556 2023-07-18 Erik Boasson - Remove some more superfluous asserts from tests
42db07c2 2023-07-14 Erik Boasson - Eliminate Conan, CUnit
748f19f0 2023-07-11 Dennis Potman - Fix type object validation for types with no members/labels
5ca03776 2023-07-06 Erik Boasson - Do not assert on encoding in serdata_pserop_new
c968671b 2023-07-06 Michel van den Hoek - sockets.h: add doxygen comments
fd1d979e 2023-07-05 Andrianov Roman - Fix MISRA rule 9-1 (#1732)
50d2daf0 2023-06-02 Erik Hendriks - Fixed missing callbacks for pending events When setting a listener, any pending (i.e. unhandled) event received before would not result in an immediate callback. Now the set_listener call also checks for pending events, and invokes the registered callbacks when appropriate. This fix is a prerequisite for #eclipse-cyclonedds/cyclonedds-cxx#410
dd1e7ff1 2023-07-03 Erik Hendriks - Modify deadline testcase to become less sensitive to non-determinism in timing.
c334f863 2023-07-03 Splinter1984 - Fix MISRA rule 8-8
ddfd3982 2023-07-03 Andrianov Roman - Fix MISRA rule 22-8. (#1747)
dd43d2f5 2023-07-03 Andrianov Roman - Fix MISRA rule 8-3(1/2) 'declarations of a function same name and type' (#1742)
fa72b181 2023-06-30 Andrianov Roman - Fix misra rule 5 3 (#1745)
93ff10fc 2023-06-29 Michel - ifaddrs.h: add doxygen comments (#1734)
db27066f 2023-06-28 Julien Enoch - example/throughput/readme.rst fixes
2ce79ea2 2023-06-28 Michel - cdtors.h: add doxygen comments (#1727)
d38e63ff 2023-06-28 Andrianov Roman - Fix MISRA 17.4 (missing violation) (#1740)
cc11c7d1 2023-06-27 Erik Boasson - Use bool, format & document XML parser
5e18b0a4 2023-06-27 Erik Boasson - Use "bool" where applicable in RHC
fcfcb9db 2023-06-27 Erik Boasson - Use "bool" type in hopscotch hash tables
30203925 2023-06-27 Andrianov Roman - Fix misra rule 8 2 (missing files violations) (#1739)
56424c29 2023-06-26 Splinter1984 - fix MISRA rule 8.2
07caac2e 2023-06-16 Michel van den Hoek - bswap.h: fixup
c5857a2b 2023-06-15 Michel van den Hoek - bswap.h: add doxygen comments
367fa84a 2023-06-16 Michel van den Hoek - countargs.h: add doxygen comments
97e76fcc 2023-06-26 Erik Boasson - Fix sertype_plist_realloc_samples
fc51ab7e 2023-06-16 Splinter1984 - Fix MISRA rule 17-4
fd9ad36e 2023-06-15 Splinter1984 - update codeql rules
1bcbdf10 2023-06-15 Splinter1984 - Fix MISRA rule 21-19
5e0dfea0 2023-06-15 SeanYu81 - remove leading and trailing white spaces from distinguished name when… (#1719)
47c04a7c 2023-04-20 Michel van den Hoek - atomics: add doxygen comments for arm, sun, gcc, msvc
fd93d8f3 2023-04-14 Michel van den Hoek - atomics.h: add doxygen comments
0a2ff5ef 2023-06-14 Erik Boasson - Use enum for whether a HB requires an ACK
ff4f318d 2023-06-14 Erik Boasson - Document struct ddsi_hbcontrol
320f9e4a 2023-06-14 Erik Boasson - Clean up return type of write_flush
4a3f3ed5 2023-04-25 Erik Boasson - Support dds_write_flush on publisher, participant
ea8c2910 2023-04-25 Erik Boasson - oneliner: add a blocking read/take
7242a294 2023-04-25 Erik Boasson - Add test flag suppressing flush on piggybacked HB
0f9add5b 2023-04-25 Erik Boasson - oneliner: add writer batching + flushing
9e119b95 2023-06-08 Martijn Reicher - Fix for idl_generate_generic with files directly on BASE_DIR
3c50f321 2023-05-08 Michel van den Hoek - fibheap.h: process review
b0127986 2023-05-02 Michel van den Hoek - fibheap.h: add doxygen comments
edc5854c 2023-06-13 Erik Boasson - IDLC fix leak of multi-dim array bounds on failure
01b0ed4d 2023-06-13 Erik Boasson - IDLC: reject arrays of 0 elements
4d086a01 2023-06-13 Erik Boasson - Reject 0-dimensional arrays and empty arrays
d907eafa 2023-06-13 Erik Boasson - Add DDSRT_STATIC_ASSERT_IS_UNSIGNED definition
5dfd2c07 2023-06-06 Michel - add doxygen comments to mh3.h and md5.h (#1718)
c7b8a961 2023-04-25 Erik Boasson - Add netinet/tcp.h so TCP_NODELAY is defined
7c1e561a 2023-06-02 Erik Boasson - Fix "structurally dead code" in test (CID 442820)
97ab5b19 2023-06-02 Erik Boasson - assert that cdrstream_desc.ops is non-null in test (CID 436275)
c21cde3a 2023-06-02 Erik Boasson - Fix possible leak in secure ppant creation (CID 377025)
0bff56fb 2023-06-02 Erik Boasson - Check ddsi_type_new, add_typeobj result (CID 455743)
0f682399 2023-06-01 Erik Boasson - Fix buffer allocation size in test (CID 436274)
a52cc15e 2023-05-29 Plamen Terziev - Remove enum forward declarations
955288bf 2023-05-27 Timo Röhling - Move project() statements below cmake_minimum_required()
708b9211 2023-05-30 Dennis Potman - Fix error handling for aggregated types in add_[min/compl]_typeobj in xt wrapper
090b62ee 2023-05-30 Dennis Potman - Fix error handling for ddsi_type_ref_proxy in OSS fuzz type object test
aa35c3cc 2023-05-24 Julien Enoch - cdr target: add required bswap.c as source
f3790fa0 2023-05-17 Dennis Potman - Add test for dynamic type API that compares generated type-info and type-map with the IDLC generated ones
02780a13 2023-05-17 Dennis Potman - Dynamic type API fixes
495515e4 2023-05-17 Dennis Potman - Fix type-info and type-map construction in dynamic type API
48aa8b3c 2023-05-22 Erik Boasson - Avoid accessing xevent sync_state outside lock
a10ced3c 2023-05-15 Dennis Potman - Replace incorrect use of @see @ref in doxygen comments
33209b75 2023-05-03 Troy Karan Harrison - [CP-277] Fix MISRA 10.2 violation in `ddsi::type_is_numeric`
b7afe964 2023-05-03 Troy Karan Harrison - [CP-277] Fix simple violations of 10.2 via cast to `char`
a44179aa 2023-05-03 Troy Karan Harrison - Add regression check for MISRA rule 10.2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants