ros-melodic-rosbridge-library (0.11.16-2bionic) bionic; urgency=high

  * Bump minimum required cmake version. (#814 <https://github.com/RobotWebTools/rosbridge_suite/issues/814>)
  * Fix send_message being called with wrong arguments. (#812 <https://github.com/RobotWebTools/rosbridge_suite/issues/812>)
  * Contributors: Hans-Joachim Krauch

 -- Russell Toris <rctoris@wpi.edu>  Tue, 18 Oct 2022 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.15-2bionic) bionic; urgency=high

  * Remove unnecessary checking of topic globs. (#793 <https://github.com/RobotWebTools/rosbridge_suite/issues/793>)
    We do not have to check the topic globs on each incoming ros message. It is enough to check if the topic is allowed to be subscribed in the actual subscribe call as the message callback method (publish) is only called when the topic is subscribed to.
  * Skip unnecessary conversion for cbor/cbor-raw compression (#792 <https://github.com/RobotWebTools/rosbridge_suite/issues/792>)
    * Skip unnecessary conversion for cbor compression.
    This change avoids some unnecessary conversions when using cbor/cbor-raw compression, leading to a significantly perfomance boost.
    * Add caching for subscriptions with cbor compression.
  * Contributors: Hans-Joachim Krauch

 -- Russell Toris <rctoris@wpi.edu>  Thu, 06 Oct 2022 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.14-2bionic) bionic; urgency=high

  * Fix bson support for python3 (#545 <https://github.com/RobotWebTools/rosbridge_suite/issues/545>)
  * Small fixes (#681 <https://github.com/RobotWebTools/rosbridge_suite/issues/681>)
  * Check if key exists before accessing the dict in SubscriberManager::unsubscribe(), patches https://github.com/RobotWebTools/rosbridge_suite/issues/580 (#638 <https://github.com/RobotWebTools/rosbridge_suite/issues/638>)
  * Contributors: Matthijs van der Burgh, Nick Paul, Steve Golton

 -- Russell Toris <rctoris@wpi.edu>  Mon, 13 Jun 2022 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.13-2bionic) bionic; urgency=high

  * fix python-future dependency (#542 <https://github.com/RobotWebTools/rosbridge_suite/issues/542>)
    * fix python-future dependency
    This was not fixed with fadffa09b1b572e4dc11848c31bb6ebab4a3e95d
    The dependency was added with #541 <https://github.com/RobotWebTools/rosbridge_suite/issues/541>
    Python doesn't have build dependencies, only exec dependencies
    * update ros-tooling/action-ros-ci
    See:
    https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
    This was fixed upstream
    - https://github.com/ros-tooling/action-ros-ci/issues/429
    - https://github.com/ros-tooling/action-ros-ci/pull/430
    * update ros-tooling/setup-ros
    See:
    https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
    This is needed for upstream fix
    - https://github.com/ros-tooling/setup-ros/pull/303
  * Contributors: Alex Moriarty

 -- Russell Toris <rctoris@wpi.edu>  Tue, 08 Dec 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.12-2bionic) bionic; urgency=high

  * Fix missing python-future python 2 dep
  * Contributors: Matt Vollrath

 -- Russell Toris <rctoris@wpi.edu>  Wed, 25 Nov 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.11-2bionic) bionic; urgency=high

  * Use Python 3 str in incoming (#541 <https://github.com/RobotWebTools/rosbridge_suite/issues/541>)
    Fixes Python 2 unicode issues.
    Supersedes #539 <https://github.com/RobotWebTools/rosbridge_suite/issues/539> to fix regression in #514 <https://github.com/RobotWebTools/rosbridge_suite/issues/514>
  * Contributors: Matt Vollrath

 -- Russell Toris <rctoris@wpi.edu>  Tue, 24 Nov 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.10-2bionic) bionic; urgency=high

  * possible fix for error when working with RosSharp, TypeError: can only concatenate str (not bytes) to str (#514 <https://github.com/RobotWebTools/rosbridge_suite/issues/514>)
    Co-authored-by: Dmitri <mailto:dmitri@dmitri.com>
  * Contributors: Dmitri

 -- Russell Toris <rctoris@wpi.edu>  Tue, 08 Sep 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.9-2bionic) bionic; urgency=high

  * noetic tests and fixes (#503 <https://github.com/RobotWebTools/rosbridge_suite/issues/503>)
  * Contributors: Matt Vollrath

 -- Russell Toris <rctoris@wpi.edu>  Wed, 27 May 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.8-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Thu, 21 May 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.7-2bionic) bionic; urgency=high

  * Fix backpressure deadlock (#496 <https://github.com/RobotWebTools/rosbridge_suite/issues/496>)
    * Don't block Subscription.unregister()
    * Don't add messages to finished queue handler
    * Decouple incoming WS handling from server thread
  * Contributors: Matt Vollrath

 -- Russell Toris <rctoris@wpi.edu>  Wed, 13 May 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.6-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Wed, 29 Apr 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.5-2bionic) bionic; urgency=high

  * Add script for dockerized development shell (#479 <https://github.com/RobotWebTools/rosbridge_suite/issues/479>)
    * Add script for dockerized development shell
    * Fix queue dropping test
  * Subscriber concurrency review (#478 <https://github.com/RobotWebTools/rosbridge_suite/issues/478>)
    * Lock access to SubscriberManager public methods
    Prevent subscribe during unsubscribe critical section.
    * Unsubscribing an unsubscribed topic is an error
    This branch must not be ignored.
    * Cleanup some redundant syntax in subscribers impl
  * Fix queue blocking (#464 <https://github.com/RobotWebTools/rosbridge_suite/issues/464>)
    * Unblock QueueMessageHandler.handle_message
    The thread was holding the lock while pushing to a potentially blocking
    function.  Rewrite the logic and use a deque while we're at it.
    * Add test for subscription queue behavior
    Guarantee that the queue drops messages when blocked.
  * Python 3 updates/fixes (#460 <https://github.com/RobotWebTools/rosbridge_suite/issues/460>)
    * rosbridge_library, rosbridge_server: Update package format
    Add Python3 conditional dependencies where applicable.
    * rosbridge_library: Fix pngcompression for Python 3
    * rosapi: Use catkin_install_python for scripts
  * Fixing wrong header/stamp in published ROS-messsages (#472 <https://github.com/RobotWebTools/rosbridge_suite/issues/472>)
    When publishing a message to ROS (i.e. incoming from rosbridge_server's perspective), timestamps in the Header attributes all point to the same Time object iff the message contains multiple Header attributes (typically the case if a ROS message contains other ROS messages, e.g. ...Array-types) and rosparam use_sim_time is true.
  * Contributors: Alexey Rogachevskiy, Matt Vollrath, danielmaier

 -- Russell Toris <rctoris@wpi.edu>  Wed, 08 Apr 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.4-2bionic) bionic; urgency=high

  * Concurrency review (#458 <https://github.com/RobotWebTools/rosbridge_suite/issues/458>)
    * Safer locking in PublisherConsistencyListener
    * Safer locking in ros_loader
    * Print QueueMessageHandler exceptions to stderr
    * Register before resuming outgoing valve
    * Don't pause a finished socket valve
  * Add cbor-raw compression (#452 <https://github.com/RobotWebTools/rosbridge_suite/issues/452>)
    The CBOR compression is already a huge win over JSON or PNG encoding,
    but it’s still suboptimal in some situations. This PR adds support for
    getting messages in their raw binary (ROS-serialized) format. This has
    benefits in the following cases:
    - Your application already knows how to parse messages in bag files
    (e.g. using [rosbag.js](https://github.com/cruise-automation/rosbag.js),
    which means that now you can use consistent code paths for both bags
    and live messages.
    - You want to parse messages as late as possible, or in parallel, e.g.
    only in the thread or WebWorker that cares about the message. Delaying
    the parsing of the message means that moving or copying the message to
    the thread is cheaper when its in binary form, since no serialization
    between threads is necessary.
    - You only care about part of the message, and don't need to parse the
    rest of it.
    - You really care about performance; no conversion between the ROS
    binary format and CBOR is done in the rosbridge_sever.
  * Fix typos in rosbridge_library's description (#450 <https://github.com/RobotWebTools/rosbridge_suite/issues/450>)
  * Python 3 fix for dict::values (#446 <https://github.com/RobotWebTools/rosbridge_suite/issues/446>)
    Under Python 3, values() returns a view-like object, and because that object is used outside the mutex, we were getting RuntimeError: dictionary changed size during iteration under some circumstances. This creates a copy of the values, restoring the Python 2 behaviour and fixing the problem.
  * Contributors: Jan Paul Posma, Matt Vollrath, Mike Purvis, miller-alex

 -- Russell Toris <rctoris@wpi.edu>  Thu, 20 Feb 2020 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.3-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Wed, 07 Aug 2019 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.2-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Mon, 08 Jul 2019 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.1-2bionic) bionic; urgency=high

  * fixed logwarn msg formatting in publishers (#398 <https://github.com/RobotWebTools/rosbridge_suite/issues/398>)
  * Contributors: Gautham P Das

 -- Russell Toris <rctoris@wpi.edu>  Wed, 08 May 2019 03:00:00 -0000

ros-melodic-rosbridge-library (0.11.0-2bionic) bionic; urgency=high

  * BSON can send Nan and Inf (#391 <https://github.com/RobotWebTools/rosbridge_suite/issues/391>)
  * Contributors: akira_you

 -- Russell Toris <rctoris@wpi.edu>  Fri, 29 Mar 2019 03:00:00 -0000

ros-melodic-rosbridge-library (0.10.2-2bionic) bionic; urgency=high

  * Fix typo (#379 <https://github.com/RobotWebTools/rosbridge_suite/issues/379>)
  * Contributors: David Weis

 -- Russell Toris <rctoris@wpi.edu>  Mon, 04 Mar 2019 03:00:00 -0000

ros-melodic-rosbridge-library (0.10.1-2bionic) bionic; urgency=high

  * Inline cbor library (#377 <https://github.com/RobotWebTools/rosbridge_suite/issues/377>)
    Prefer system version with C speedups, but include pure Python implementation.
  * Contributors: Matt Vollrath

 -- Russell Toris <rctoris@wpi.edu>  Sun, 16 Dec 2018 02:00:00 -0000

ros-melodic-rosbridge-library (0.10.0-2bionic) bionic; urgency=high

  * CBOR encoding (#364 <https://github.com/RobotWebTools/rosbridge_suite/issues/364>)
    * Add CBOR encoding
    * Fix value extraction performance regression
    Extract message values once per message.
    * Fix typed array tags
    Was using big-endian tags and encoding little-endian.
    Always use little-endian for now since Intel is prevalent for desktop.
    Add some comments to this effect.
    * Update CBOR protocol documentation
    More information about draft typed arrays and when to use CBOR.
    * Fix 64-bit integer CBOR packing
    Use an actual 64-bit format.
  * use package format 2, remove unnecessary dependencies (#348 <https://github.com/RobotWebTools/rosbridge_suite/issues/348>)
  * removing has_key for python3, keeping backwards compatibility (#337 <https://github.com/RobotWebTools/rosbridge_suite/issues/337>)
    * removing has_key for python3, keeping backwards compatibility
    * py3 change for itervalues, keeping py2 compatibility
  * Contributors: Andreas Klintberg, Dirk Thomas, Matt Vollrath

 -- Russell Toris <rctoris@wpi.edu>  Fri, 14 Dec 2018 02:00:00 -0000

ros-melodic-rosbridge-library (0.9.0-2bionic) bionic; urgency=high

  * Fix typo in function call
  * Add missing argument to InvalidMessageException (#323 <https://github.com/RobotWebTools/rosbridge_suite/issues/323>)
    Add missing argument to InvalidMessageException constructor
  * Make unregister_timeout configurable (#322 <https://github.com/RobotWebTools/rosbridge_suite/issues/322>)
    Pull request #247 <https://github.com/RobotWebTools/rosbridge_suite/issues/247> introduces a 10 second delay to mitigate issue #138 <https://github.com/RobotWebTools/rosbridge_suite/issues/138>.
    This change makes this delay configurable by passing an argument either
    on the command line or when including a launch file.
    Usage example:
    ```xml
    <launch>
    <include file="$(find rosbridge_server)/launch/rosbridge_websocket.launch">
    <arg name="unregister_timeout" value="5.0"/>
    </include>
    </launch>
    ```
    Closes #320 <https://github.com/RobotWebTools/rosbridge_suite/issues/320>
  * message_conversion: create stand-alone object inst (#319 <https://github.com/RobotWebTools/rosbridge_suite/issues/319>)
    Catching the ROSInitException allows to create object
    instances without an initialized ROS state
  * Fixes #313 <https://github.com/RobotWebTools/rosbridge_suite/issues/313> by fixing has_binary in protocol.py (#315 <https://github.com/RobotWebTools/rosbridge_suite/issues/315>)
    * Fixes #313 <https://github.com/RobotWebTools/rosbridge_suite/issues/313> by fixing has_binary in protocol.py
    Checks for lists that have binary content as well as dicts
    * Minor refactoring for protocol.py
  * fix fragment bug (#316 <https://github.com/RobotWebTools/rosbridge_suite/issues/316>)
    * fix bug that lost data while sending large packets
    * fixed travis ci failed by @T045T
    * fixed travis ci failed by @T045T
    * travis ci failed
    * fix rosbridge_library/test/experimental/fragmentation+srv+tcp test bug
    * sync .travis.yaml
    * fix the service_response message bug
    * fix the fragment paring error
    * fix indentation of "service" line
  * add graceful_shutdown() method to advertise_service capability
    This gives the service a bit of time to cancel any in-flight service requests (which should fix #265 <https://github.com/RobotWebTools/rosbridge_suite/issues/265>).
    This is important because we busy-wait for a rosbridge response for service calls and those threads do not get stopped otherwise.
    Also, rospy service clients do not currently support timeouts, so any clients would be stuck too.
    A new test case in test_service_capabilities.py verifies the fix works
  * Add rostest for service capabilities and fix bugs
    also fixed some typos
  * Fix Travis config (#311 <https://github.com/RobotWebTools/rosbridge_suite/issues/311>)
    * fix Travis config
    dist: kinetic is currently unsupported
    * fix rostests
    for some reason, rostest seems to hide the rosout node - changed tests to use other services
  * Contributors: Anwar, Johannes Rothe, Jørgen Borgesen, Nils Berg, Phil, WH-0501, elgarlepp

 -- Russell Toris <rctoris@wpi.edu>  Mon, 09 Apr 2018 03:00:00 -0000

ros-melodic-rosbridge-library (0.8.6-2bionic) bionic; urgency=high

  * Import StringIO from StringIO if python2 and from io if python3 fixes #306 <https://github.com/RobotWebTools/rosbridge_suite/issues/306> (#307 <https://github.com/RobotWebTools/rosbridge_suite/issues/307>)
  * Contributors: Jihoon Lee

 -- Russell Toris <rctoris@wpi.edu>  Fri, 08 Dec 2017 02:00:00 -0000

ros-melodic-rosbridge-library (0.8.5-2bionic) bionic; urgency=high

  * Raise if inappropriate bson module is installed (Appease #198 <https://github.com/RobotWebTools/rosbridge_suite/issues/198>) (#270 <https://github.com/RobotWebTools/rosbridge_suite/issues/270>)
    * Raise Exception if inappropriate bson module is installed (Related to #198 <https://github.com/RobotWebTools/rosbridge_suite/issues/198>)
  * Add Python3 compatibility (#300 <https://github.com/RobotWebTools/rosbridge_suite/issues/300>)
    * First pass at Python 3 compatibility
    * message_conversion: Only call encode on a Python2 str or bytes type
    * protocol.py: Changes for dict in Python3. Compatible with Python 2 too.
    * More Python 3 fixes, all tests pass
    * Move definition of string_types to rosbridge_library.util
  * Contributors: Junya Hayashi, Kartik Mohta

 -- Russell Toris <rctoris@wpi.edu>  Thu, 23 Nov 2017 02:00:00 -0000

ros-melodic-rosbridge-library (0.8.4-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Mon, 16 Oct 2017 02:00:00 -0000

ros-melodic-rosbridge-library (0.8.3-2bionic) bionic; urgency=high

  * Type conversion convention correction, correcting issue #240 <https://github.com/RobotWebTools/rosbridge_suite/issues/240>
  * Contributors: Alexis Paques

 -- Russell Toris <rctoris@wpi.edu>  Mon, 11 Sep 2017 03:00:00 -0000

ros-melodic-rosbridge-library (0.8.2-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Mon, 11 Sep 2017 03:00:00 -0000

ros-melodic-rosbridge-library (0.8.1-2bionic) bionic; urgency=high

  * remove ujson from dependency to build in trusty (#290 <https://github.com/RobotWebTools/rosbridge_suite/issues/290>)
  * Contributors: Jihoon Lee

 -- Russell Toris <rctoris@wpi.edu>  Wed, 30 Aug 2017 03:00:00 -0000

ros-melodic-rosbridge-library (0.8.0-2bionic) bionic; urgency=high

  * Cleaning up travis configuration (#283 <https://github.com/RobotWebTools/rosbridge_suite/issues/283>)
    configure travis to use industial ci configuration. Now it uses xenial and kinetic
  * Merge pull request #272 <https://github.com/RobotWebTools/rosbridge_suite/issues/272> from ablakey/patch-1
    Prevent a KeyError when bson_only_mode is unset.
  * Update protocol.py
    Prevent a KeyError when bson_only_mode is unset.
  * Merge pull request #257 <https://github.com/RobotWebTools/rosbridge_suite/issues/257> from Sanic/bson-only-mode
    Implemented a bson_only_mode flag for the TCP version of rosbridge
  * Merge pull request #247 <https://github.com/RobotWebTools/rosbridge_suite/issues/247> from v-lopez/develop
    Delay unregister to mitigate #138 <https://github.com/RobotWebTools/rosbridge_suite/issues/138>
  * Change class constant to module constant
  * Reduce timeout for tests
    Tests will sleep for 10% extra of the timeout to prevent some situations
    were the test sleep ended right before the unregister timer fired
  * Fix test advertise errors after delayed unregister changes
  * Fix missing tests due to delayed unregistration
  * Move UNREGISTER_TIMEOUT to member class so it's accessible from outside
  * minor change in variable usage
  * Implemented a bson_only_mode flag for the TCP version of rosbridge; This allows you to switch to a full-duplex transmission of BSON messages and therefore eliminates the need for a base64 encoding of binary data; Use the new mode by starting:'roslaunch rosbridge_server rosbridge_tcp.launch bson_only_mode:=True' or passing '--bson_only_mode' to the rosbridge_tcp.py script
  * Delay unregister to mitigate !138
  * Contributors: Andrew Blakey, Jihoon Lee, Nils Berg, Patrick Mania, Victor Lopez

 -- Russell Toris <rctoris@wpi.edu>  Wed, 30 Aug 2017 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.17-2bionic) bionic; urgency=high

  * adjust log level for security globs
    Normal operation (i.e. no globs or successful verification of requests) is now silent, with illegal requests producing a warning.
  * add missing import
  * correct default values for security globs
    also accept empty list as the default "do not check globs" value in addition to None.
    Finally, append rosapi service glob after processing command line input so it's not overwritten
  * Added services_glob to CallServices, added globs to rosbridge_tcp and rosbridge_udp, and other miscellanous fixes.
  * As per the suggestions of @T045T, fixed several typos, improved logging, and made some style fixes.
  * Added new parameters for topic and service security.
    Added 3 new parameters to rosapi and rosbridge_server which filter the
    topics, services, and parameters broadcast by the server to match an
    array of glob strings.
  * Contributors: Eric, Nils Berg

 -- Russell Toris <rctoris@wpi.edu>  Wed, 25 Jan 2017 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.16-2bionic) bionic; urgency=high

  * Fixed deprecated code in pillow
  * Contributors: vladrotea

 -- Russell Toris <rctoris@wpi.edu>  Mon, 15 Aug 2016 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.15-2bionic) bionic; urgency=high

  * changelog updated
  * Contributors: Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Mon, 25 Apr 2016 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.14-2bionic) bionic; urgency=high

  * Another fix for code
  * Replaced += with ''.join() for python code
  * Default Protocol delay_between_messages = 0
    This prevents performance problems when multiple clients are subscribing to high frequency topics.
    Fixes #203 <https://github.com/RobotWebTools/rosbridge_suite/issues/203>
  * Contributors: Matt Vollrath, kiloreux

 -- Russell Toris <rctoris@wpi.edu>  Thu, 11 Feb 2016 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.13-2bionic) bionic; urgency=high

  * Nevermind o_O
  * Add test_depend too (just in case)
  * Add dependency on python bson
  * Get parameter at encode time
  * Add flag for using the bson encoding
  * revert comment regarding unpublisher
  * avoiding racing condition
  * Add bson encoding to the server side
  * Fix catkin_lint issues
  * don't unregister topic from rosbridge. It creates md5 sum warning.. #138
  * Contributors: David Lu, Jihoon Lee, Matt Vollrath, dwlee

 -- Russell Toris <rctoris@wpi.edu>  Fri, 14 Aug 2015 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.12-2bionic) bionic; urgency=high

  * use <test_depend> for test dependencies
  * use rospy.resolve_name for namespaced service calls
  * fix resolving namespaced service calls
  * Contributors: Ramon Wijnands

 -- Russell Toris <rctoris@wpi.edu>  Tue, 07 Apr 2015 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.11-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Mon, 23 Mar 2015 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.10-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Wed, 25 Feb 2015 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.9-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Tue, 24 Feb 2015 03:00:00 -0000

ros-melodic-rosbridge-library (0.7.8-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Fri, 16 Jan 2015 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.7-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Tue, 06 Jan 2015 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.6-2bionic) bionic; urgency=high

  * 0.7.5
  * update changelog
  * 0.7.4
  * changelog updated
  * 0.7.3
  * changelog updated
  * 0.7.2
  * changelog updated
  * 0.7.1
  * update changelog
  * 0.7.0
  * changelog updated
  * rewrite of advertise service
  * cleanup init function
  * matches original call_service
  * matches original call_service
  * service_request --> reuse of call_service (previously defined)
  * stop_service --> unadvertise_service
  * service_name --> service
  * service_type --> type
  * removed service_module
  * request_id --> id
  * Contributors: Jihoon Lee, Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Fri, 26 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.5-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Fri, 26 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.4-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Tue, 16 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.3-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Mon, 15 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.2-2bionic) bionic; urgency=high

  * 0.7.1
  * update changelog
  * Contributors: Jihoon Lee

 -- Russell Toris <rctoris@wpi.edu>  Mon, 15 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.1-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Tue, 09 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.7.0-2bionic) bionic; urgency=high

  * rewrite of advertise service
  * cleanup init function
  * matches original call_service
  * matches original call_service
  * service_request --> reuse of call_service (previously defined)
  * stop_service --> unadvertise_service
  * service_name --> service
  * service_type --> type
  * removed service_module
  * request_id --> id
  * Contributors: Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Tue, 02 Dec 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.6.8-2bionic) bionic; urgency=high

  * add a lock to calls to load_manifest - apparently, it's not thread safe
    fixes #103 and #108
  * Contributors: Nils Berg

 -- Russell Toris <rctoris@wpi.edu>  Wed, 05 Nov 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.6.7-2bionic) bionic; urgency=high

  * updated package manifests
  * Contributors: Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Wed, 22 Oct 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.6.6-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Tue, 21 Oct 2014 02:00:00 -0000

ros-melodic-rosbridge-library (0.6.5-2bionic) bionic; urgency=high

  * 0.6.4
  * update changelog
  * modify tests
    less duplicated code, some other changes to (hopefully) improve reliability. Tested locally about 30 times without encountering any failures.
  * Change the behavior of MessageHandler.transition()
    Now reflects usage in the tests, i.e. a QueueMessageHandler only needs queue_length to be defined, not throttle_rate.
  * 0.6.3
  * update change log
  * install util python module to fix #128
  * Contributors: Jihoon Lee, Nils Berg

 -- Russell Toris <rctoris@wpi.edu>  Tue, 14 Oct 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.6.4-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Wed, 08 Oct 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.6.3-2bionic) bionic; urgency=high

  * install util python module to fix #128 <https://github.com/RobotWebTools/rosbridge_suite/issues/128>
  * Contributors: Jihoon Lee

 -- Russell Toris <rctoris@wpi.edu>  Tue, 07 Oct 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.6.2-2bionic) bionic; urgency=high

  * Remove unused json imports; move json imports to utility
    Fixes #7
  * Contributors: Graeme Yeates

 -- Russell Toris <rctoris@wpi.edu>  Mon, 06 Oct 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.6.1-2bionic) bionic; urgency=high

  * Handle float infinity and NAN s
  * Windows-related fix for PIL Image module import
  * Fixed typo in raising type errors.
  * something messed up indentation
    not sure how that could happen, worked here.
  * map Inf and NaN to null
    JSON does not support Inf and NaN values. Currently they are just written into the JSON and JSON.parse on the client side will fail. Correct is to map them to null which will then be parsed correctly by JSON.parse on the client side.
    The issue with that is that the shortcut for lists of floats might be impossible (maybe someone else with more experience in python comes up with something else?). Maybe something similar is necessary in the to_inst case, but I can not really test them.
    Real world application is to process laser scans, they contain inf and nan values for some drivers if the measurements are invalid or out of range.
  * Update .travis.yml and package.xml for rosbridge_library tests
  * Put back unregister for the publisher and clarify the reconnect behavior
    of the test case. The exponential backoff of the client causes hard to
    understand timing of the events.
    All specs passed locally on hydro:
    SUMMARY
    * RESULT: SUCCESS
    * TESTS: 103
    * ERRORS: 0
    * FAILURES: 0
  * Add copyright notice to the file
  * Remove extra whitespace
  * Make the test more deterministic
  * Remove circular dependency.
  * Contributors: Achim Konigs, Alex Sorokin, Alexander Sorokin, Jonathan Wade, jon-weisz

 -- Russell Toris <rctoris@wpi.edu>  Mon, 01 Sep 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.6.0-2bionic) bionic; urgency=high

  * Ensure that service name is a string
    Closes #104 <https://github.com/RobotWebTools/rosbridge_suite/issues/104>
  * Contributors: Piyush Khandelwal

 -- Russell Toris <rctoris@wpi.edu>  Fri, 23 May 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.5.4-2bionic) bionic; urgency=high

  * removing wrong import
  * test case for fixed size of uint8 array
  * uses regular expresion to match uint8 array and char array.
  * logerr when it fails while message_conversion
  * Contributors: Jihoon Lee

 -- Russell Toris <rctoris@wpi.edu>  Thu, 17 Apr 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.5.3-2bionic) bionic; urgency=high

  * use queue_size for publishers
  * Contributors: Jon Binney

 -- Russell Toris <rctoris@wpi.edu>  Fri, 28 Mar 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.5.2-2bionic) bionic; urgency=high

  * First attempt adding latching support for topic publishers
  * merging changes of groovy-devel into hydro-devel
  * adding missing dependency in rosbridge_library #70 <https://github.com/RobotWebTools/rosbridge_suite/issues/70>
  * Fixed wrong unicode encoding
  * support publishing non-ascii letters
  * Added error message on result=False
    When call_service returns False as result, values contains the error message.
  * added parameter lookup to rosbridge_tcp.py, modules where those are used, and default parameters to launch file; internal default-values still get used when launch-file does not provide them; internal defaults can be changed within rosbridge_tcp.py
  * Merge branch 'experimental_branch' into new_features
  * fix handling of partial/multiple/broken json by avoiding to pass nested json (without op-field) to rosbridge.. probably still needs more complex handling of incoming 'broken' json
  * nested service not MiRoR related anymore
  * added singleton for request-list; allows provider to send service response without specifying module and type, they get looked up when response is received via request_id
  * fix for nested service responses - use ros_loader and message_conversion for populating an according instance
  * use message_conversion in handle_servie_request
  * snapshot for branch to show to genpy devs
  * using float64 instead of std_msgs/Float64 lets scripts run fine.. ; next: fix with using std_msgs/Float64 --> need nested data field
  * nested srv uses now message_conversion.extract_values
  * adapted test scripted to ros_loader; (removed .srv from module_name
  * use rosloader for finding service_class
  * fixed calculation of fragment_count
  * cleanup: files, notes, some code
  * added message_field <message_intervall> to allow client to control delay between messages from rosbridge
  * added TODO: check if service successfully registered in ros
  * 
  * 
  * added description of new opcodes
  * tests, comments, description, ..
  * tested rosbridge_websocket with new capabilities; websocket test scripts not working yet..; but new caps are working when using rosbridge_websocket and tcp2ws wrapper --> so only testscripts need to be fixed for websockets.
  * updated websocket test service server and client script to use websocket
  * updated websocket test service server script to use websocket
  * added files to test new caps with websocket server
  * feierabend.. morgen weiter mit server & client JSON-decoder, see notes
  * fixed parsing of incomplete/multiple JSON in incoming buffer; so clients do not need to use an intervall when sending to rosbridge
  * only current changes; not yet done..
  * code cleanup, not yet finished..; rosbridge logging much cleaner now
  * fixed test_server_defragment - recodegit status
  * minor
  * linuxonandroid
  * fixed some parts; ..still better do some redesign for queueing of messages..
  * forced tcp_send to use queue and use delay between sends
  * blocking behavior for service requests to non-ros; test-scripts use get-ip4 helper function; ..needs a lot cleanup before next steps..
  * need to implement server side blocking of multiple requests, to keep implementation of service provider as easy and simple as possible
  * not finished
  * some changes.. still needs serveral fixes
  * unique request_ids
  * fixed deserialization of multiple fragments in incoming-data; was caused by too short delay between socket-sends (<0.2 seconds); maybe only temp. fixed
  * added fragment sorting to test-client and test-server
  * message_size debugging; TODO: sort list of received fragments! ; make sure receive_buffers are big enough for fragment_size + header..
  * minor changes
  * testing: service server fragmentsizes receive: 1  send: 1; client fragmentsize receive: 1; is working..
  * fixed an error that caused service_response to appear quoted as string once too often; should be ok now
  * fragmentation basically working; service_server can request fragmented service_calls, service_client can request fragmented responses; fragmentation can be requested by adding fragmentation_size parameter to any message sent to rosbridge
  * some code cleanup
  * set service_request_timeout back to 60 seconds; had 2s from timeout_tests..
  * fixed example: non-ros_service_server.py to use only 1 socket; commented and structured code and comments in test-scripts
  * some minor changes: comments, debug-output, ..
  * added test script for non-ros_service_client calling service from non-ros_service_server
  * added msg and srv files
  * fixed (removed) dependency to beginner_tutorials for service_server test-scripts. beginner_tutorials package not needed anymore.
  * behaviour on advertising existing service: replace service-provider, similar to ROS-groovy behaviour, see issues..
  * behaviour on advertising existing service: replace service-provider, similar to ROS-groovy behaviour, see issues..
  * removed obsolete test-scripts
  * stop service added
  * first working classes: service_server
  * should use its own branch: service_server.py;  add initial thoughts and code-base for developing ServiceServer capability
  * fixed errors in protocol.py and defragmentation.py
  * added test-scripts for defragmentation AND tcp-server
  * change json imports to try to use ujson or simplejson
  * change json imports to try to use ujson or simplejson; correct log_message to show length of content/data instead of overall length
  * fixed variable name in finish()
  * Clean up of defragmentation.py.
  * add defragmentation capability
  * merge with fuerte-devel
  * add defragmentation capability
  * commented out that problematic unregister line
  * Contributors: Brandon Alexander, Jihoon Lee, Julian Cerruti, Kaijen Hsiao, Stefan Profanter, dave, furushchev, fxm-db, ipa-fxm, root, unknown

 -- Russell Toris <rctoris@wpi.edu>  Fri, 14 Mar 2014 03:00:00 -0000

ros-melodic-rosbridge-library (0.5.1-2bionic) bionic; urgency=high

  * Implement multiple subscriptions to latched topics (fixes #1 <https://github.com/RobotWebTools/rosbridge_suite/issues/1>).
  * generate more natural json for service call result
  * add result field to service response
  * Contributors: Siegfried-A. Gevatter Pujals, Takashi Ogura

 -- Russell Toris <rctoris@wpi.edu>  Thu, 31 Oct 2013 02:00:00 -0000

ros-melodic-rosbridge-library (0.5.0-2bionic) bionic; urgency=high

  * 0.5.0 preparation for hydro release
  * even more missing depends for unit tests
  * more missing test packages
  * missing depends added when running tests
  * rostest now uses devel instead of install
  * rostest added to package
  * Contributors: Jihoon Lee, Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Wed, 17 Jul 2013 03:00:00 -0000

ros-melodic-rosbridge-library (0.4.4-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Mon, 08 Apr 2013 03:00:00 -0000

ros-melodic-rosbridge-library (0.4.3-2bionic) bionic; urgency=high



 -- Russell Toris <rctoris@wpi.edu>  Wed, 03 Apr 2013 11:24:00 -0000

ros-melodic-rosbridge-library (0.4.2-2bionic) bionic; urgency=high

  * eclipse projects removed
  * Contributors: Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Wed, 03 Apr 2013 11:12:00 -0000

ros-melodic-rosbridge-library (0.4.1-2bionic) bionic; urgency=high

  * adding message generation build dependency
  * Contributors: Jihoon Lee

 -- Russell Toris <rctoris@wpi.edu>  Thu, 07 Mar 2013 03:00:00 -0000

ros-melodic-rosbridge-library (0.4.0-2bionic) bionic; urgency=high

  * removing rostest
  * Commenting out rostest
  * Update rosbridge_library/package.xml
    removed <test_depend>rospy</test_depend>
  * Fixes "'int' is not iterable" bug.
  * Adds test_all.test launch file.
  * Error fix from wrong package name.
  * Moves test package tests into rosbridge_library.
    I learned about NOINSTALL for msg and srv generation in CMakeList.
  * Resolves submodule issues.
  * Uses only 1 .gitignore to avoid confusion.
  * Merge pull request #15 <https://github.com/RobotWebTools/rosbridge_suite/issues/15> from baalexander/remove_unregister
    Removes buggy unregister call.
  * Removes buggy unregister call.
    Fixes Issue #12 <https://github.com/RobotWebTools/rosbridge_suite/issues/12>.
  * Adds BSD license header to code files.
    See Issue #13 <https://github.com/RobotWebTools/rosbridge_suite/issues/13>.
  * Removing ultrajson from rosbridge.
    If JSON parsing becomes a performance bottle neck, we can readd it.
  * Catkinizing rosbridge_library and server.
  * PNG compression now creates a square RGB image padded with new-line characters
  * Add stack dependencies and rosdeps.
  * Collapse directory structure.
  * Moved the packages inside a folder called rosbridge
  * Initial commit of rosbridge_library
  * Contributors: Austin Hendrix, Brandon Alexander, David Gossow, Jihoon Lee, Jonathan Mace, Russell Toris

 -- Russell Toris <rctoris@wpi.edu>  Tue, 05 Mar 2013 03:00:00 -0000


