Release Notes
28 December 2022
Release Versions
- rdk - v0.2.9
- api - v0.1.31
- slam - v0.1.13
- viam-python-sdk - v0.2.6
- goutils - v0.1.6
- rust-utils - v0.0.6
(Bold=updated version)
New Features
Custom Modular Resources
| What is it? | This new feature allows users to implement their own custom components or component models using our Go SDK.
We are now working to add support in each of our SDKs so that users can create custom resources in a variety of programming languages.
Previously, the only way for users to implement custom resources was to use an SDK as a server.
This meant that a user needed to run a viam-server for their custom component and add it to their main part as a remote.
With custom modular resources, users no longer need to run separate server instances for each custom resource which saves additional network requests.Note |
URDF Support
| What is it? | Users that are implementing their own arms are now able to supply kinematic information via URDF files. This is a convenience for our users since URDF files are readily available for common hardware. |
New Movement Sensors
| What is it? | We added support for two new movement sensors.
Refer to the Movement Sensor topic for more information.
|
Improvements
Improved Camera Performance/Reliability
| What is it? |
|
Motion Planning with Remote Components
| What is it? | We made several improvements to the motion service that make it agnostic to the networking topology of a users robot. |
| What does it affect? |
|
Motion Planning Path Smoothing
| What is it? | Various small improvements to follow the last major development. |
| What does it affect? |
|
Improved Data Synchronization Reliability
| What is it? | We updated how captured data is uploaded from robots to app.viam.com |
| What does it affect? | We previously used bidirectional streaming, with the robot streaming sensor readings to the app and the app streaming acknowledgements of progress back to the robot.
We switched to a simpler unary approach which is more performant on batched unary calls, is easier to load balance, and maintains ordered captures.Note |
| RDK Shutdown Failure | Fixed a bug where RDK shutdown requests sometimes failed when connected to serial components. |
| Python Documentation | Fixed issues around documentation rendering improperly in some browsers. |
28 November 2022
Release Versions
- rdk - v0.2.3
- api - v0.1.12
- slam - v0.1.9
- viam-python-sdk - v0.2.0
- goutils - v0.1.4
- rust-utils - v0.0.5
(Bold=updated version)
Camera Reconnection Issue
| What is it? | When a camera loses connection, it now automatically closes the connection to its video path. Previously, when users supplied a video path in their camera configuration, they encountered issues if the camera tried to reconnect because the supplied video path was already being used for the old connection. |
| What does it affect? | On losing their video path connection, cameras now automatically close the video path connection. |
Improvements
Camera Configuration Changes
| What is it? | We updated the underlying configuration schemes for the following camera models.
We are also migrating existing camera configurations to align with the new schemas.
To learn more about the changes, please refer to our camera documentation.
|
Robot Details Page
| What is it? | Based on user feedback, we changed the name of the CONNECT tab to CODE SAMPLE. |
15 November 2022
Release Versions
- rdk - v0.2.0
- api - v0.1.7
- slam - v0.1.7
- viam-python-sdk - v0.2.0
- goutils - v0.1.4
- rust-utils - v0.0.5
New Features
New servo model
| What is it? | We added a new servo model called GPIO. This represents PCA9685, rather than connecting directly to the board. Our previous implementation required a direct connection from the servo to the Raspberry Pi. |
| What does it affect? | While Viam continues to support the pi model of servo, we encourage users to begin using the GPIO model in |
Added RTT to remote control page
| What is it? | We added a new badge in the Current Operations card of the remote control page of the Viam app. This badge lists the RTT (round trip time) of a request from your client to the robot, i.e., the time to complete one request/response cycle. |
Python 3.8 Support
| What is it? | Our Python SDK now supports Python 3.8, in addition to 3.9 and 3.10. You will need to update the Python SDK to access the new feature. |
Improvements
New Parameter: extra
| What is it? | We added a new API method parameter named, extra, that gives users the option of extending existing resource functionality by implementing the new field according to whatever logic they chose.
extra is available to requests for all methods in the following APIs: | |||
| What does it affect? | Users of the Go SDK must update their code to specify extra in the arguments that pass into each request.Note |
Add dependencies to services
| What is it? | Adding dependencies to services allows Viam to initialize and configure resources in the correct order. For example, if the SLAM service depends on a LiDAR, it will always initialize the LiDAR before the service. |
| What does it affect? | Breaking Change: This impacts users of the SLAM service. Users must now specify which sensors they are using in the depends_on field of the SLAM configuration.
Other service configurations are not affected. |
Removed width & height fields from Camera API
| What is it? | We removed two fields (width and height) that were previously part of the response from the GetImage method in the camera API. |
| What does it affect? | Breaking Change: This width or height fields. |