Skip to content

Commit 6e7b7f7

Browse files
Isaac ROS 4.0
1 parent 4a39328 commit 6e7b7f7

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Tools for inspecting and validating data sent through graphs containing Isaac RO
66

77
## Latest
88

9-
Update 2024-12-10: Initial release
9+
Update 2025-10-24: Support for ROS 2 Jazzy

SECURITY.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Security
2+
3+
NVIDIA is dedicated to the security and trust of our software products and services, including all source code repositories managed through our organization.
4+
5+
If you need to report a security issue, please use the appropriate contact points outlined below. **Please do not report security vulnerabilities through GitHub.**
6+
7+
## Reporting Potential Security Vulnerability in an NVIDIA Product
8+
9+
To report a potential security vulnerability in any NVIDIA product:
10+
- Web: [Security Vulnerability Submission Form](https://www.nvidia.com/object/submit-security-vulnerability.html)
11+
12+
- We encourage you to use the following PGP key for secure email communication: [NVIDIA public PGP Key for communication](https://www.nvidia.com/en-us/security/pgp-key)
13+
- Please include the following information:
14+
- Product/Driver name and version/branch that contains the vulnerability
15+
- Type of vulnerability (code execution, denial of service, buffer overflow, etc.)
16+
- Instructions to reproduce the vulnerability
17+
- Proof-of-concept or exploit code
18+
- Potential impact of the vulnerability, including how an attacker could exploit the vulnerability
19+
20+
While NVIDIA currently does not have a bug bounty program, we do offer acknowledgement when an externally reported security issue is addressed under our coordinated vulnerability disclosure policy. Please visit our [Product Security Incident Response Team (PSIRT)](https://www.nvidia.com/en-us/security/psirt-policies/) policies page for more information.
21+
22+
## NVIDIA Product Security
23+
24+
For all security-related concerns, please visit NVIDIA's Product Security portal at https://www.nvidia.com/en-us/security

isaac_ros_tensor_inspector/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>isaac_ros_tensor_inspector</name>
5-
<version>3.2.5</version>
5+
<version>4.0.0</version>
66
<description>Tools for inspecting and verifying TensorList messages</description>
77

88
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>

isaac_ros_tensor_inspector/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,11 @@
5757
maintainer_email='[email protected]',
5858
description='Tools for inspecting and verifying TensorList messages',
5959
license='Apache-2.0',
60-
tests_require=['pytest'],
60+
extras_require={
61+
'test': [
62+
'pytest'
63+
]
64+
},
6165
entry_points={
6266
'console_scripts': [
6367
'tensor_inspector = isaac_ros_tensor_inspector.tensor_inspector:main'

0 commit comments

Comments
 (0)