This repository has been archived by the owner on Jan 8, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump rosbag2, add message reader options (#16)
### Changelog - **[BREAKING]** Now requires Node v22 - **[BREAKING]** `@foxglove/rosbag2` dependency has been bumped to v6. Time and Duration values are now deserialized as `{sec,nanosec}` rather than `{sec,nsec}`. The `{sec,nsec}` behavior is still available via a new `timeType` option. ### Description - Bump rosbag2 dependency (depends on foxglove/rosbag2#22) - Bump version to 5.0.0
- Loading branch information
Showing
5 changed files
with
117 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,7 +23,7 @@ jobs: | |
- run: corepack enable | ||
- uses: actions/[email protected] | ||
with: | ||
node-version: 20.x | ||
node-version: 22.x | ||
registry-url: https://registry.npmjs.org | ||
cache: yarn | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "@foxglove/rosbag2-node", | ||
"version": "4.1.0", | ||
"description": "ROS2 (Robot Operating System) bag reader and writer for node.js", | ||
"version": "5.0.0", | ||
"description": "ROS 2 (Robot Operating System) bag reader and writer for node.js", | ||
"license": "MIT", | ||
"keywords": [ | ||
"ros", | ||
|
@@ -41,7 +41,7 @@ | |
"test": "jest" | ||
}, | ||
"engines": { | ||
"node": ">= 14" | ||
"node": ">= 22" | ||
}, | ||
"devDependencies": { | ||
"@foxglove/eslint-plugin": "2.0.0", | ||
|
@@ -55,8 +55,8 @@ | |
"typescript": "5.7.2" | ||
}, | ||
"dependencies": { | ||
"@foxglove/rosbag2": "^5.0.0", | ||
"better-sqlite3": "^8.1.0" | ||
"@foxglove/rosbag2": "^6.0.0", | ||
"better-sqlite3": "^11.6.0" | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters