Skip to content

Commit 166dcea

Browse files
committed
merge upstream changes
2 parents c9c58a1 + 3ee73b7 commit 166dcea

File tree

130 files changed

+6711
-1105
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

130 files changed

+6711
-1105
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ WORKDIR $USER_WORKSPACE
7171

7272
# Install debugging/linting Python packages
7373
RUN pip install \
74-
pre-commit \
75-
mypy
74+
pre-commit
7675

7776
# Install debugging/linting C++ packages
7877
RUN sudo apt-get -q update \

.dockerignore

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,14 @@
33
*
44

55
# Except the following
6-
6+
!auv_control_demos
7+
!auv_control_msgs
78
!auv_controllers
8-
!velocity_controllers
9+
!controller_common
10+
!ik_solvers
911
!thruster_allocation_matrix_controller
1012
!thruster_controllers
11-
!auv_control_msgs
12-
!auv_control_demos
13+
!topic_sensors
14+
!velocity_controllers
15+
!whole_body_controllers
1316
!ros2.repos

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Bug Report
22
description: Report a bug.
3-
title: "[BUG]: <Please write a descriptive title after the '[BUG]: ' prefix>"
4-
labels: [bug, needs triage]
3+
title: "<Please write a descriptive title>"
4+
labels: [needs triage]
5+
type: Bug
56

67
body:
78
- type: markdown

.github/ISSUE_TEMPLATE/documentation.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Documentation Improvement
22
description: Report an issue related to the project documentation.
3-
title: "[DOC]: <Please write a descriptive title after the '[DOC]: ' prefix>"
4-
labels: [documentation, needs triage]
3+
title: "<Please write a descriptive title>"
4+
labels: [needs triage]
5+
type: Documentation
56

67
body:
78
- type: markdown

.github/ISSUE_TEMPLATE/feature-request.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
name: Feature Request
22
description: Suggest a new idea for the project.
3-
title: "[FEATURE]: <Please write a descriptive title after the '[FEATURE]: ' prefix>"
4-
labels: [enhancement, needs triage]
3+
title: "<Please write a descriptive title>"
4+
labels: [needs triage]
5+
type: Feature
56

67
body:
78
- type: markdown

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Continuous Integration
33
on:
44
push:
55
branches:
6-
- main
6+
- jazzy
77
pull_request:
88
workflow_dispatch:
99

@@ -28,7 +28,7 @@ jobs:
2828
uses: ros-industrial/industrial_ci@master
2929
env:
3030
ROS_DISTRO: ${{ matrix.env.ROS_DISTRO }}
31-
CXXFLAGS: -Wall -Wextra -Wpedantic
31+
CXXFLAGS: -Wall -Wextra -Wpedantic -std=c++20
3232
CLANG_TIDY: true
3333
UPSTREAM_WORKSPACE: ros2.repos
3434
AFTER_SETUP_UPSTREAM_WORKSPACE: vcs pull $BASEDIR/upstream_ws/src

.pre-commit-config.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ repos:
1717
types_or: [c++, c]
1818

1919
- repo: https://github.com/BlankSpruce/gersemi
20-
rev: 0.13.5
20+
rev: 0.21.0
2121
hooks:
2222
- id: gersemi
2323

2424
- repo: https://github.com/pre-commit/pre-commit-hooks
25-
rev: v4.4.0
25+
rev: v5.0.0
2626
hooks:
2727
- id: check-added-large-files
2828
- id: check-case-conflict

.ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
target-version = "py310"
1+
target-version = "py312"

.vscode/c_cpp_properties.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"defines": [],
1212
"compilerPath": "/usr/bin/clang",
1313
"cStandard": "c99",
14-
"cppStandard": "c++20",
14+
"cppStandard": "c++23",
1515
"intelliSenseMode": "linux-clang-x64"
1616
}
1717
],

.vscode/settings.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
"*.repos": "yaml",
44
"*.world": "xml",
55
"*.xacro": "xml",
6-
"*.srdf": "xml",
76
"*.rviz": "yaml",
87
"*.config": "xml",
9-
"*.sdf": "xml"
8+
"*.sdf": "xml",
9+
"limits": "cpp",
10+
"format": "cpp"
1011
},
1112
"terminal.integrated.defaultProfile.linux": "bash",
1213
"terminal.integrated.profiles.linux": {
@@ -20,6 +21,7 @@
2021
"files.trimTrailingWhitespace": true,
2122
"editor.formatOnSave": true,
2223
"editor.tabSize": 2,
24+
"editor.detectIndentation": false,
2325
"autoDocstring.startOnNewLine": false,
2426
"autoDocstring.docstringFormat": "google-notypes",
2527
"python.autoComplete.extraPaths": [

0 commit comments

Comments
 (0)