From 34996759b8be3353720e8469395a353e67a8b865 Mon Sep 17 00:00:00 2001 From: Curt Tudor Date: Tue, 23 Sep 2025 08:02:46 -0600 Subject: [PATCH 1/3] bump to csdk 1.8.5 --- deps/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt index 21642ba..9e090a6 100644 --- a/deps/CMakeLists.txt +++ b/deps/CMakeLists.txt @@ -21,7 +21,7 @@ endif (WIN32) FetchContent_Declare(ziti GIT_REPOSITORY https://github.com/openziti/ziti-sdk-c.git - GIT_TAG 1.4.4 + GIT_TAG 1.8.5 ) FetchContent_MakeAvailable(ziti) From a53233059b70bd132671b93cf73d31d651ddc13b Mon Sep 17 00:00:00 2001 From: Curt Tudor Date: Fri, 26 Sep 2025 15:14:07 -0600 Subject: [PATCH 2/3] bump to ubuntu022.04 for actions runner --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b52839c..d0747d9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -41,8 +41,8 @@ jobs: matrix: config: - { os: windows-latest, target: "windows", arch: "x64" } - - { os: ubuntu-20.04, target: "linux", arch: "x64" } - - { os: ubuntu-20.04, target: "linux", arch: "arm64" } + - { os: ubuntu-22.04, target: "linux", arch: "x64" } + - { os: ubuntu-22.04, target: "linux", arch: "arm64" } - { os: macos-13, target: "macos", arch: "x64" } - { os: macos-14, target: "macos", arch: "arm64" } node_ver: [ 18, 20, 21, 22, 23 ] @@ -203,4 +203,4 @@ jobs: token: ${{ secrets.NPM_TOKEN }} access: public if: | - matrix.config.os == 'ubuntu-20.04' && matrix.node_ver == '20' && matrix.config.arch == 'x64' && startsWith(github.ref, 'refs/tags/') + matrix.config.os == 'ubuntu-22.04' && matrix.node_ver == '20' && matrix.config.arch == 'x64' && startsWith(github.ref, 'refs/tags/') From fb7bc28f0500fba3d391d912ff69848ae5541ae1 Mon Sep 17 00:00:00 2001 From: Curt Tudor Date: Fri, 26 Sep 2025 15:18:38 -0600 Subject: [PATCH 3/3] bump semver --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 0435f71..df11bff 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@openziti/ziti-sdk-nodejs", "description": "A NodeJS-based SDK for delivering secure applications over a Ziti Network", - "version": "0.20.0", + "version": "0.21.0", "main": "./lib/ziti", "scripts": { "build": "npm run build:configure && npm run build:make",