From b33a2930f07ee46391f294263955695d55b8ff8b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 22 Aug 2026 06:08:46 +1000 Subject: [PATCH 1/2] update pymavlink for unix domain socket support --- pymavlink | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pymavlink b/pymavlink index ec06837a506..b7527da9232 160000 --- a/pymavlink +++ b/pymavlink @@ -1 +1 @@ -Subproject commit ec06837a50688b5974094876c3c9d1b8bf86629d +Subproject commit b7527da9232e55de3e9e750187aa32d508779f1f From f1a92e7b8b76847f9201c2342099d11dbb172638 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 22 Aug 2026 18:01:57 +1000 Subject: [PATCH 2/2] GitHub Actions: test supported Node versions this matches the matrix in pymavlink --- .github/workflows/test_and_deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test_and_deploy.yml b/.github/workflows/test_and_deploy.yml index 088c7ad46bd..8523b5df16a 100644 --- a/.github/workflows/test_and_deploy.yml +++ b/.github/workflows/test_and_deploy.yml @@ -62,7 +62,7 @@ jobs: strategy: fail-fast: false matrix: - node-version: ['12', '14', 'lts/*'] + node-version: [latest, lts/*, lts/-1, lts/-2, 18] steps: - uses: actions/checkout@v2 with: @@ -74,7 +74,7 @@ jobs: - name: Install dependencies run: | pip install future lxml - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - run: npm install || true # Continue even if there is no package.json.