Skip to content

Conversation

@dependabot
Copy link

@dependabot dependabot bot commented on behalf of github Dec 31, 2025

Removes qs. It's no longer used after updating ancestor dependency rclnodejs. These dependencies need to be updated together.

Removes qs

Updates rclnodejs from 0.27.4 to 1.7.0

Release notes

Sourced from rclnodejs's releases.

rclnodejs v1.7.0 Release (2025-11-26)

Overview

We're excited to announce rclnodejs v1.7.0! This release brings significant improvements to the developer experience with promise-based APIs, comprehensive error handling, and powerful parameter management capabilities.

🎉 Major Features

1. Promise-Based Service Calls (#1311)

  • Added sendRequestAsync() method for promise-based service calls
  • Support for async/await syntax, making code more readable and maintainable
  • Timeout support: Specify request timeouts with { timeout: milliseconds }
  • Cancellation support: Use AbortSignal to cancel pending requests
  • Full backward compatibility: Existing callback-based API remains unchanged
  • Improved error handling with specific error types (TimeoutError, AbortError)

Example:

const response = await client.sendRequestAsync(request, { 
  timeout: 5000,
  signal: abortController.signal 
});

2. ParameterClient for Remote Parameter Access (#1318)

  • New ParameterClient class for accessing parameters on remote nodes
  • Full API for parameter operations:
    • getParameters() - Retrieve parameter values
    • setParameters() - Modify parameter values
    • listParameters() - List available parameters
    • describeParameters() - Get parameter metadata
  • Async/await support with timeout and cancellation
  • Clean API: node.createParameterClient(remoteNodeName) / node.destroyParameterClient()
  • Exported parameterTypeFromValue() utility for parameter type detection

3. ParameterWatcher for Real-Time Monitoring (#1326)

  • New ParameterWatcher class for real-time parameter change notifications
  • Monitor specific parameters on remote nodes
  • Event-driven architecture using Node.js EventEmitter
  • Dynamic parameter management with addParameters() / removeParameters()
  • Async/await support for initial parameter retrieval
  • Proper lifecycle management and automatic cleanup

Example:

const watcher = node.createParameterWatcher(remoteNodeName);
watcher.on('change', ({ parameterName, value }) => {
  console.log(`${parameterName} changed to:`, value);
});
await watcher.start(['my_param']);

... (truncated)

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Removes [qs](https://github.com/ljharb/qs). It's no longer used after updating ancestor dependency [rclnodejs](https://github.com/RobotWebTools/rclnodejs). These dependencies need to be updated together.


Removes `qs`

Updates `rclnodejs` from 0.27.4 to 1.7.0
- [Release notes](https://github.com/RobotWebTools/rclnodejs/releases)
- [Commits](RobotWebTools/rclnodejs@0.27.4...1.7.0)

---
updated-dependencies:
- dependency-name: qs
  dependency-version: 
  dependency-type: indirect
- dependency-name: rclnodejs
  dependency-version: 1.7.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Dec 31, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant