You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Merge Dev to main for release 0.4.0 (#74)
* Add logging dependency (#32)
* Changing yamato host flavor to large (#33)
* Amanda/read chunks (#36)
* s.send to s.sendall
* Increase default timeout
* Timeout as argument on instantiation
* Update version number (#38)
* Laurie/topic list (#41)
* Updating Contribution Content (#44)
* Contributing guidelines
* Issue templates
* PR feedback
* Updated per later changes (#45)
* Adding PR template (#46)
* One persistent connection for all messages sent to Unity
* make UnityService accessible from ros_tcp_endpoint (#49)
* Don't keep retrying on success (#50)
* Resolve conflicts for merging dev to main
* Queue module was renamed in Python 3 (#53)
* Update package.xml (#54)
* RosConnection 2.0 (#57)
* Remove outdated handshake references
* Fix sending response to unity service (#59)
* add changelog (#60)
* Forum links to README, config.yml (#61)
* Send empty message on connection start (#58)
* add test coverage for python scripts (#62)
* fix the bug (#64)
* Minor bug fixes (#65)
* Add Tests and Linter (#63)
* Add tests for tcp sender
* Add linter and pre-commit hooks
* Reformat with python black
* Add tests
* Add tests for server, client, publisher, subscriber, ros_service, unity_service, thread_pauser
* Fix pre-commit-config file name; Add client tests
* Add github workflow check
* Formatting
* Resolve conflicts (#66)
* Fix bug (#68)
* Fix bug
* Temporarily remove publisher test
Co-authored-by: Shuo Diao <shuo@unity3d.com>
* update version to 0.4.0 (#69)
Co-authored-by: Devin Miller (Unity) <mrpropellers@users.noreply.github.com>
Co-authored-by: Amanda <31416491+at669@users.noreply.github.com>
Co-authored-by: LaurieCheers-unity <73140792+LaurieCheers-unity@users.noreply.github.com>
Co-authored-by: Hamid Younesy <hyounesy@users.noreply.github.com>
Co-authored-by: peifeng-unity <56408141+peifeng-unity@users.noreply.github.com>
* ROS2 support (#77)
Co-authored-by: Tiffany Yau <tiffany.yau@unity3d.com>
* update changelog (#83)
* Merge v0.5.0 (#84)
* Merge main to dev (#85)
* Stale issue handler (#87)
* Initial commit: stale handler
* Remove latest tag from yamato config
* Updated dates, changelog
* PR Feedback: cron schedule
* Exposing publisher queue_size and latch (#88)
* Working to improve the ROS TCP connector by adding queues and latching.
* Exposing the latch parameter for ROS publishers.
* Updating the CHANGELOG
* Improving style for publish method definition.
* Improving the performance of the read_message by not splitting the da… (#90)
* Improving the performance of the read_message by not splitting the data into 1024 chunks and stitching them together as you go, instead receiving the entire message all at once.
* Updating the changelog
* Publisher signature
* Publisher constructor
* Don't mess around with packets, just read the whole message
* source_destination_dict shatters into 4 separate tables
* Update tests
* 1 more test fix
* Updated server, setup dir
Co-authored-by: Shuo Diao <shuo@unity3d.com>
Co-authored-by: Devin Miller (Unity) <mrpropellers@users.noreply.github.com>
Co-authored-by: LaurieCheers-unity <73140792+LaurieCheers-unity@users.noreply.github.com>
Co-authored-by: Hamid Younesy <hyounesy@users.noreply.github.com>
Co-authored-by: peifeng-unity <56408141+peifeng-unity@users.noreply.github.com>
Co-authored-by: Tiffany Yau <tiffany.yau@unity3d.com>
Co-authored-by: Peter Smith <thisisntanemailaccount@gmail.com>
stale-issue-message: 'This issue has been marked stale because it has been open for 14 days with no activity. Please remove the stale label or comment on this issue, or the issue will be automatically closed in the next 14 days.'
Copy file name to clipboardExpand all lines: CHANGELOG.md
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -6,12 +6,34 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) a
6
6
7
7
## Unreleased
8
8
9
+
Add the [Close Stale Issues](https://github.com/marketplace/actions/close-stale-issues) action
10
+
9
11
### Upgrade Notes
10
12
11
13
### Known Issues
12
14
13
15
### Added
14
16
17
+
Support for queue_size and latch for publishers. (https://github.com/Unity-Technologies/ROS-TCP-Endpoint/issues/82)
18
+
19
+
### Changed
20
+
21
+
### Deprecated
22
+
23
+
### Removed
24
+
25
+
### Fixed
26
+
27
+
## [0.5.0] - 2021-07-15
28
+
29
+
### Upgrade Notes
30
+
31
+
Upgrade the ROS communication to support ROS2 with Unity
32
+
33
+
### Known Issues
34
+
35
+
### Added
36
+
15
37
### Changed
16
38
17
39
### Deprecated
@@ -38,6 +60,8 @@ Add linter, unit tests, and test coverage reporting
38
60
39
61
### Changed
40
62
63
+
Improving the performance of the read_message in client.py, This is done by receiving the entire message all at once instead of reading 1024 byte chunks and stitching them together as you go.
0 commit comments