CHANGELOG

Changelog for package rosbag2_storage

0.15.9 (2024-01-24)

0.15.8 (2023-09-19)

0.15.7 (2023-07-18)

  • Fix missing cstdint include (#1383) (#1386)

  • Contributors: Michael Orlov, mergify[bot]

0.15.6 (2023-06-05)

0.15.5 (2023-04-25)

  • Add Michael Orlov as maintainer in rosbag2 packages (#1215) (#1224)

  • Contributors: mergify[bot]

0.15.4 (2023-01-10)

  • Disable false message about plugin not found. (#1219)

  • Contributors: Michael Orlov

0.15.3 (2022-11-07)

  • Readers/info can accept a single bag storage file, and detect its storage id automatically (#1072) (#1077)

  • Revert “[humble] Backport. Added support for filtering topics via regular expressions (#1034)- (#1039)” (#1069)

  • [humble] Backport. Added support for filtering topics via regular expressions (#1034)- (#1039)

  • Contributors: Esteve Fernandez, mergify[bot]

0.15.2 (2022-05-11)

0.15.1 (2022-04-06)

  • Revert “Add the ability to record any key/value pair in the ‘custom’ field in metadata.yaml (#976)” (#984)

  • Add the ability to record any key/value pair in the ‘custom’ field in metadata.yaml (#976)

  • Contributors: Audrow Nash, Jorge Perez, Tony Peng

0.15.0 (2022-04-05)

  • Revert “Add the ability to record any key/value pair in the ‘custom’ field in metadata.yaml (#976)” (#984)

  • Add the ability to record any key/value pair in the ‘custom’ field in metadata.yaml (#976)

  • Contributors: Jorge Perez, Tony Peng

0.14.1 (2022-03-29)

  • Bump version number to avoid conflict

  • Contributors: Chris Lalancette

0.14.0 (2022-03-29)

  • Install headers to include/${PROJECT_NAME} (#958)

  • Remove unnecessary public definition. (#950)

  • Contributors: Chris Lalancette, Shane Loretz

0.13.0 (2022-01-13)

0.12.0 (2021-12-17)

  • Enable YAML encoding/decoding for RecordOptions and StorageOptions (#916)

  • Contributors: Emerson Knapp

0.11.0 (2021-11-08)

  • Update package maintainers (#899)

  • Provide MetadataIO interface to convert metadata to a string in memory, alongside file IO versions (#894)

  • Contributors: Emerson Knapp, Michel Hidalgo

0.10.1 (2021-10-22)

0.10.0 (2021-10-19)

  • Metadata per file info (#870)

  • Implement snapshot mechanism and corresponding ROS Service (#850)

  • added seek interface (#836)

  • Refactor plugin query mechanism and standardize trait management (#833)

  • Contributors: Cameron Miller, Wojciech Jaworski, sonia

0.9.0 (2021-05-17)

0.8.0 (2021-04-19)

  • Remove -Werror from builds, enable it in Action CI (#722)

  • PlayerClock initial implementation - Player functionally unchanged (#689)

  • Explicitly add emersonknapp as maintainer (#692)

  • Reindexer core (#641) Add a new C++ Reindexer class for reconstructing metadata from bags that are missing it.

  • Contributors: Emerson Knapp, jhdcs

0.7.0 (2021-03-18)

  • Remove outdated pluginlib cmake script from rosbag2_storage (#661)

  • CLI query rosbag2_py for available storage implementations (#659)

  • Shorten some excessively long lines of CMake (#648)

  • Contributors: Emerson Knapp, Scott K Logan

0.6.0 (2021-02-01)

  • SQLite storage optimized by default (#568) * Use optimized pragmas by default in sqlite storage. Added option to use former behavior

  • Use std::filesystem compliant non-member exists function for path object (#593)

  • Contributors: Adam Dąbrowski, Josh Langsfeld

0.5.0 (2020-12-02)

  • Update codes since rcutils_calculate_directory_size() is changed (#567)

  • Contributors: Barry Xu

0.4.0 (2020-11-19)

  • add storage_config_uri (#493)

  • Update the package.xml files with the latest Open Robotics maintainers (#535)

  • Add split by time to recording (#409)

  • Contributors: Karsten Knese, Michael Jeronimo, jhdcs

0.3.2 (2020-06-03)

0.3.1 (2020-06-01)

0.3.0 (2020-05-26)

  • Export targets (#403)

  • Contributors: Karsten Knese

0.2.8 (2020-05-18)

0.2.7 (2020-05-12)

0.2.6 (2020-05-07)

  • Correct usage of rclcpp::SharedLibrary loading. (#400)

  • Contributors: Karsten Knese

0.2.5 (2020-04-30)

  • Read serialized qos profiles out of the metadata (#359)

  • Add filter for reading selective topics (#302)

  • Transaction based sqlite3 inserts (#225)

  • Add QoS profiles field to metadata struct and provide serialization utilities (#330)

  • code style only: wrap after open parenthesis if not in one line (#280)

  • remove rosbag2 filesystem helper (#249)

  • [Compression - 7] Add compression metadata (#221)

  • Sanitize bagfile splitting CLI input (#226)

  • Move get_storage_identifier and get_bagfile_size (#209)

  • make ros tooling working group maintainer (#211)

  • Contributors: Anas Abou Allaban, Dirk Thomas, Emerson Knapp, Karsten Knese, Mabel Zhang, Prajakta Gokhale, Sriram Raghunathan, Zachary Michaels

0.2.4 (2019-11-18)

0.2.3 (2019-11-18)

  • Enhance rosbag writer capabilities to split bag files. (#185)

  • Contributors: Zachary Michaels

0.2.2 (2019-11-13)

  • (API) Generate bagfile metadata in Writer (#184)

  • Contributors: Zachary Michaels

0.2.1 (2019-10-23)

  • Add get_identifier to base io-interfaces for support in bagfile splitting (#183)

  • Add bagfile splitting support to storage_options (#182)

  • Change storage interfaces for bagfile splitting feature (#170)

  • Contributors: Zachary Michaels

0.2.0 (2019-09-26)

  • Fix test failures on armhf (#135)

  • Export pluginlib to downstream packages (#113)

  • Contributors: Esteve Fernandez, Prajakta Gokhale

0.1.2 (2019-05-20)

  • Fixes an init race condition (#93) * This could probably be a race condition, for ex: When we’ve create a subscriber in the API, and the subscriber has the data already available in the callback (Cause of existing publishers) the db entry for the particular topic would not be availalble, which in turn returns an SqliteException. This is cause write_->create_topic() call is where we add the db entry for a particular topic. And, this leads to crashing before any recording. Locally I solved it by adding the db entry first, and if create_subscription fails, remove the topic entry from the db and also erase the subscription. Signed-off-by: Sriram Raghunathan <rsriram7@visteon.com> * Fix comments for pull request https://github.com/ros2/rosbag2/pull/93 Signed-off-by: Sriram Raghunathan <rsriram7@visteon.com> * Added unit test case for remove_topics from db Signed-off-by: Sriram Raghunathan <rsriram7@visteon.com> * Fix unit tests failing by adding dependent test macros Signed-off-by: Sriram Raghunathan <rsriram7@visteon.com> * Fixes the linter errors

  • Contributors: Sriram Raghunathan

0.1.1 (2019-05-09)

0.1.0 (2019-05-08)

  • fix logging signature (#107)

  • Contributors: Dirk Thomas

0.0.5 (2018-12-27)

0.0.4 (2018-12-19)

  • 0.0.3

  • Play old bagfiles (#69)

  • Contributors: Karsten Knese, Martin Idel

0.0.2 (2018-12-12)

  • update maintainer email

  • Contributors: Karsten Knese

0.0.1 (2018-12-11)

  • rename topic_with_types to topic_metadata

  • GH-142 replace map with unordered map where possible (#65)

  • Use converters when recording a bag file (#57)

  • use uint8 for serialized message (#61)

  • Renaming struct members for consistency (#64)

  • Use converters when playing back files (#56)

  • Implement converter plugin for CDR format and add converter plugins package (#48)

  • Display bag summary using ros2 bag info (#45)

  • Use directory as bagfile and add additonal record options (#43)

  • Introduce rosbag2_transport layer and CLI (#38)

  • Add correct timing behaviour for rosbag play (#32)

  • Improve sqlite usage and test stability (#31)

  • Record and play multiple topics (#27)

  • Allow an arbitrary topic to be recorded (#26)

  • Use serialized message directly (#24)

  • initial version of plugin based storage api (#7)

  • (demo, sqlite3) First working rosbag2 implementation (#6)

  • initial setup

  • Contributors: Alessandro Bottero, Andreas Greimel, Andreas Holzner, Karsten Knese, Martin Idel