From cbbc75154371fd6b08d91d1ce6a8711d7d2afef0 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Thu, 5 Feb 2026 18:44:08 -0500 Subject: [PATCH 1/7] Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --- .github/workflows/build-base-images-task.yml | 24 +++++++++++--------- 1 file changed, 13 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-base-images-task.yml b/.github/workflows/build-base-images-task.yml index c59ff42..9705c6e 100644 --- a/.github/workflows/build-base-images-task.yml +++ b/.github/workflows/build-base-images-task.yml @@ -17,14 +17,16 @@ jobs: strategy: matrix: base: - - name: nx-base - dockerfile: Docker/NxBase.Dockerfile - tags: | - docker.io/ptr727/nx-base:ubuntu-noble - - name: nx-base-lsio - dockerfile: Docker/NxBase-LSIO.Dockerfile - tags: | - docker.io/ptr727/nx-base-lsio:ubuntu-noble + - name: nx-base + dockerfile: Docker/NxBase.Dockerfile + cache_tag: docker.io/ptr727/nx-base:ubuntu-noble + tags: | + docker.io/ptr727/nx-base:ubuntu-noble + - name: nx-base-lsio + dockerfile: Docker/NxBase-LSIO.Dockerfile + cache_tag: docker.io/ptr727/nx-base-lsio:ubuntu-noble + tags: | + docker.io/ptr727/nx-base-lsio:ubuntu-noble steps: @@ -55,9 +57,9 @@ jobs: context: Docker file: ${{ matrix.base.dockerfile }} platforms: linux/amd64,linux/arm64 - tags: ${{ matrix.base.tags }} - cache-from: | - type=registry,ref=${{ matrix.base.tags }} + tags: ${{ matrix.base.tags }} + cache-from: | + type=registry,ref=${{ matrix.base.cache_tag }} type=gha,scope=develop-base-${{ matrix.base.name }} type=gha,scope=main-base-${{ matrix.base.name }} ${{ github.event.pull_request && format('type=gha,scope=pr-base-{0}-{1}', github.event.pull_request.number, matrix.base.name) || '' }} From a5f9d782d23d20933776d3a3d4e99cdc77e36e23 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Wed, 11 Feb 2026 06:28:33 -0500 Subject: [PATCH 2/7] Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --- .github/workflows/merge-bot-pull-request.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/merge-bot-pull-request.yml b/.github/workflows/merge-bot-pull-request.yml index 615ed52..e62689d 100644 --- a/.github/workflows/merge-bot-pull-request.yml +++ b/.github/workflows/merge-bot-pull-request.yml @@ -27,7 +27,7 @@ jobs: - name: Merge pull request step if: steps.metadata.outputs.update-type != 'version-update:semver-major' - run: gh pr merge --auto --merge "$PR_URL" + run: gh pr merge --auto --squash "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}} GH_TOKEN: ${{secrets.GITHUB_TOKEN}} @@ -43,7 +43,7 @@ jobs: steps: - name: Merge pull request step - run: gh pr merge --auto --merge "$PR_URL" + run: gh pr merge --auto --squash "$PR_URL" env: PR_URL: ${{github.event.pull_request.html_url}} GH_TOKEN: ${{secrets.GITHUB_TOKEN}} From 158c84ed47997a9e83b4292bd3a374a71682526a Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Thu, 12 Feb 2026 04:55:02 -0500 Subject: [PATCH 3/7] Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .config/dotnet-tools.json | 4 ++-- .github/workflows/run-codegen-pull-request-task.yml | 1 + CreateMatrix/CreateMatrix.csproj | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index a6dbde4..2f1a910 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -3,7 +3,7 @@ "isRoot": true, "tools": { "csharpier": { - "version": "1.2.5", + "version": "1.2.6", "commands": [ "csharpier" ], @@ -24,4 +24,4 @@ "rollForward": false } } -} +} \ No newline at end of file diff --git a/.github/workflows/run-codegen-pull-request-task.yml b/.github/workflows/run-codegen-pull-request-task.yml index 89fe1c7..fdefb94 100644 --- a/.github/workflows/run-codegen-pull-request-task.yml +++ b/.github/workflows/run-codegen-pull-request-task.yml @@ -39,3 +39,4 @@ jobs: body: 'This PR updates the codegen files.' commit-message: 'Update codegen files' delete-branch: true + sign-commits: true diff --git a/CreateMatrix/CreateMatrix.csproj b/CreateMatrix/CreateMatrix.csproj index 36849b5..83fb552 100644 --- a/CreateMatrix/CreateMatrix.csproj +++ b/CreateMatrix/CreateMatrix.csproj @@ -16,11 +16,11 @@ true - + - - + + From b5771c193d7bbdbde0094ee060c5e1ca0cd8cdba Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Fri, 13 Feb 2026 09:57:11 -0500 Subject: [PATCH 4/7] Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/run-codegen-pull-request-task.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-codegen-pull-request-task.yml b/.github/workflows/run-codegen-pull-request-task.yml index fdefb94..b1ecf36 100644 --- a/.github/workflows/run-codegen-pull-request-task.yml +++ b/.github/workflows/run-codegen-pull-request-task.yml @@ -21,7 +21,7 @@ jobs: - name: Run codegen step run: >- - dotnet run --project ./CreateMatrix/CreateMatrix.csproj -- + dotnet run --project ./CreateMatrix/CreateMatrix.csproj -- matrix --versionpath=./Make/Version.json --matrixpath=./Make/Matrix.json --updateversion - name: Format code step From 8b94923050c53a5383536ed16ad6eb49399066bf Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Mon, 16 Feb 2026 00:20:27 -0500 Subject: [PATCH 5/7] Indentation (#337) * Develop (#336) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update codegen step in workflow and add codegen to workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/run-codegen-pull-request-task.yml | 4 ++-- NxWitness.code-workspace | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-codegen-pull-request-task.yml b/.github/workflows/run-codegen-pull-request-task.yml index b1ecf36..58a7195 100644 --- a/.github/workflows/run-codegen-pull-request-task.yml +++ b/.github/workflows/run-codegen-pull-request-task.yml @@ -20,8 +20,8 @@ jobs: uses: actions/checkout@v6 - name: Run codegen step - run: >- - dotnet run --project ./CreateMatrix/CreateMatrix.csproj -- + run: | + dotnet run --project ./CreateMatrix/CreateMatrix.csproj -- \ matrix --versionpath=./Make/Version.json --matrixpath=./Make/Matrix.json --updateversion - name: Format code step diff --git a/NxWitness.code-workspace b/NxWitness.code-workspace index adacbca..abb70cd 100644 --- a/NxWitness.code-workspace +++ b/NxWitness.code-workspace @@ -17,6 +17,7 @@ "buildtransitive", "buildx", "cloudhost", + "codegen", "Composefile", "connrefused", "contentfiles", From d72ac5af7efbb3c273830f35e4615a76b430cb92 Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Sun, 22 Feb 2026 00:42:25 -0500 Subject: [PATCH 6/7] Update pull request action to include 'codegen-update' branch (#342) * Develop (#338) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Indentation (#337) * Develop (#336) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update codegen step in workflow and add codegen to workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the nuget-deps group with 1 update (#339) Bumps dotnet-outdated-tool from 4.6.9 to 4.7.0 --- updated-dependencies: - dependency-name: dotnet-outdated-tool dependency-version: 4.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the nuget-deps group with 1 update (#340) Bumps AwesomeAssertions from 9.3.0 to 9.4.0 --- updated-dependencies: - dependency-name: AwesomeAssertions dependency-version: 9.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update pull request action to include 'codegen-update' branch Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .config/dotnet-tools.json | 2 +- .github/workflows/test-pull-request.yml | 2 +- CreateMatrixTests/CreateMatrixTests.csproj | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index 2f1a910..ef131a2 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -17,7 +17,7 @@ "rollForward": false }, "dotnet-outdated-tool": { - "version": "4.6.9", + "version": "4.7.0", "commands": [ "dotnet-outdated" ], diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 05f4fa2..e3c5acc 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -2,7 +2,7 @@ name: Test pull request action on: pull_request: - branches: [ main, develop ] + branches: [ main, develop, codegen-update ] workflow_dispatch: concurrency: diff --git a/CreateMatrixTests/CreateMatrixTests.csproj b/CreateMatrixTests/CreateMatrixTests.csproj index 7a7458d..b845b0d 100644 --- a/CreateMatrixTests/CreateMatrixTests.csproj +++ b/CreateMatrixTests/CreateMatrixTests.csproj @@ -8,7 +8,7 @@ net10.0 - + From 4292ddce469d39e6b27743d681f2ac5a534011da Mon Sep 17 00:00:00 2001 From: Pieter Viljoen Date: Mon, 30 Mar 2026 13:54:24 -0700 Subject: [PATCH 7/7] Update WisenetWAVE and NxGo to version 6.1.1.42624 with corresponding download URLs (#353) * Testcgpr (#343) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Indentation (#337) * Develop (#336) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update codegen step in workflow and add codegen to workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update pull request action to include 'codegen-update' branch (#342) * Develop (#338) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Indentation (#337) * Develop (#336) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Noenv (#335) * Develop (#333) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Signcommits (#331) * Develop (#329) * Enhance Docker build caching and update documentation (#324) * Develop (#319) * Update docker hub readme task and fix version in README (#316) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) Signed-off-by: Pieter Viljoen * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Fix syntax in jq command for generating docker hub repositories (#320) Signed-off-by: Pieter Viljoen * Update cache-to logic in Docker build step for feature branches (#321) Signed-off-by: Pieter Viljoen * fix: Add cache_tag to base image definitions for improved caching in Docker builds Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Squashmerge (#328) * Enhance Docker build caching and update documentation (#324) (#325) * Develop (#319) * Update docker hub readme task and fix version in README (#316) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings (#318) * Update docker hub readme task and fix version in README (#316) (#317) * Update GitHub Copilot guidance, enhance Docker build caching, and modify workspace settings --------- --------- * Fix syntax in jq command for generating docker hub repositories (#320) * Update cache-to logic in Docker build step for feature branches (#321) * fix: Add cache_tag to base image definitions for improved caching in Docker builds --------- Signed-off-by: Pieter Viljoen * Squash merge Signed-off-by: Pieter Viljoen * just squash Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen * Bump the nuget-deps group with 4 updates (#330) Bumps csharpier from 1.2.5 to 1.2.6 Bumps Microsoft.Extensions.Http.Resilience from 10.2.0 to 10.3.0 Bumps Serilog from 4.3.0 to 4.3.1 Bumps System.CommandLine from 2.0.2 to 2.0.3 --- updated-dependencies: - dependency-name: csharpier dependency-version: 1.2.6 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: Microsoft.Extensions.Http.Resilience dependency-version: 10.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps - dependency-name: Serilog dependency-version: 4.3.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps - dependency-name: System.CommandLine dependency-version: 2.0.3 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * feat: enable signing of commits in codegen pull request workflow Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Fix indentation in codegen step command --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update codegen step in workflow and add codegen to workspace settings Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the nuget-deps group with 1 update (#339) Bumps dotnet-outdated-tool from 4.6.9 to 4.7.0 --- updated-dependencies: - dependency-name: dotnet-outdated-tool dependency-version: 4.7.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the nuget-deps group with 1 update (#340) Bumps AwesomeAssertions from 9.3.0 to 9.4.0 --- updated-dependencies: - dependency-name: AwesomeAssertions dependency-version: 9.4.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update pull request action to include 'codegen-update' branch Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update codegen files (#341) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * Bump the nuget-deps group with 1 update (#344) Bumps Microsoft.NET.Test.Sdk from 18.0.1 to 18.3.0 --- updated-dependencies: - dependency-name: Microsoft.NET.Test.Sdk dependency-version: 18.3.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Bump the nuget-deps group with 1 update (#346) Bumps dotnet-outdated-tool from 4.7.0 to 4.7.1 --- updated-dependencies: - dependency-name: dotnet-outdated-tool dependency-version: 4.7.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: nuget-deps ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Update codegen files (#345) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Pieter Viljoen * Update WisenetWAVE and NxGo to version 6.1.1.42624 with corresponding download URLs - Updated WisenetWAVE version in Dockerfile and Make/Matrix.json - Added new NxGo version with updated download links in Make/Matrix.json - Updated version references in Make/Version.json for NxGo, Metavms, NxWitness, and DWSpectrum to 6.1.1.42624 - Removed deprecated tags and ensured latest versions are marked correctly Signed-off-by: Pieter Viljoen --------- Signed-off-by: Pieter Viljoen Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .config/dotnet-tools.json | 4 +- CreateMatrix/CreateMatrix.csproj | 4 +- CreateMatrix/Extensions.cs | 4 +- CreateMatrixTests/CreateMatrixTests.csproj | 2 +- Docker/DWSpectrum-LSIO.Dockerfile | 14 +- Docker/DWSpectrum.Dockerfile | 14 +- Docker/NxGo-LSIO.Dockerfile | 14 +- Docker/NxGo.Dockerfile | 14 +- Docker/NxMeta-LSIO.Dockerfile | 14 +- Docker/NxMeta.Dockerfile | 14 +- Docker/NxWitness-LSIO.Dockerfile | 14 +- Docker/NxWitness.Dockerfile | 14 +- Docker/WisenetWAVE-LSIO.Dockerfile | 14 +- Docker/WisenetWAVE.Dockerfile | 14 +- Make/Matrix.json | 288 ++++++++++++++++----- Make/Version.json | 45 +++- 16 files changed, 337 insertions(+), 150 deletions(-) diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json index ef131a2..2b10359 100644 --- a/.config/dotnet-tools.json +++ b/.config/dotnet-tools.json @@ -10,14 +10,14 @@ "rollForward": false }, "husky": { - "version": "0.8.0", + "version": "0.9.1", "commands": [ "husky" ], "rollForward": false }, "dotnet-outdated-tool": { - "version": "4.7.0", + "version": "4.7.1", "commands": [ "dotnet-outdated" ], diff --git a/CreateMatrix/CreateMatrix.csproj b/CreateMatrix/CreateMatrix.csproj index 83fb552..1ac15f0 100644 --- a/CreateMatrix/CreateMatrix.csproj +++ b/CreateMatrix/CreateMatrix.csproj @@ -16,11 +16,11 @@ true - + - + diff --git a/CreateMatrix/Extensions.cs b/CreateMatrix/Extensions.cs index 2b603e8..850ea96 100644 --- a/CreateMatrix/Extensions.cs +++ b/CreateMatrix/Extensions.cs @@ -28,8 +28,6 @@ internal bool LogAndHandle( internal static class StringBuilderExtensions { - private const string CrLf = "\r\n"; - extension(StringBuilder sb) { internal StringBuilder AppendLineCrlf(string? value = null) @@ -39,7 +37,7 @@ internal StringBuilder AppendLineCrlf(string? value = null) _ = sb.Append(value); } - return sb.Append(CrLf); + return sb.Append("\r\n"); } } } diff --git a/CreateMatrixTests/CreateMatrixTests.csproj b/CreateMatrixTests/CreateMatrixTests.csproj index b845b0d..c43f3a6 100644 --- a/CreateMatrixTests/CreateMatrixTests.csproj +++ b/CreateMatrixTests/CreateMatrixTests.csproj @@ -9,7 +9,7 @@ - + all diff --git a/Docker/DWSpectrum-LSIO.Dockerfile b/Docker/DWSpectrum-LSIO.Dockerfile index 00a84eb..6fe4e61 100644 --- a/Docker/DWSpectrum-LSIO.Dockerfile +++ b/Docker/DWSpectrum-LSIO.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base-lsio:ubuntu-noble # Labels ARG LABEL_NAME="DWSpectrum-LSIO" ARG LABEL_DESCRIPTION="DW Spectrum IPVMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="digitalwatchdog" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/DWSpectrum.Dockerfile b/Docker/DWSpectrum.Dockerfile index 2542d53..52d66c8 100644 --- a/Docker/DWSpectrum.Dockerfile +++ b/Docker/DWSpectrum.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base:ubuntu-noble # Labels ARG LABEL_NAME="DWSpectrum" ARG LABEL_DESCRIPTION="DW Spectrum IPVMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="digitalwatchdog" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/NxGo-LSIO.Dockerfile b/Docker/NxGo-LSIO.Dockerfile index 75c5634..7d4bd0a 100644 --- a/Docker/NxGo-LSIO.Dockerfile +++ b/Docker/NxGo-LSIO.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base-lsio:ubuntu-noble # Labels ARG LABEL_NAME="NxGo-LSIO" ARG LABEL_DESCRIPTION="Nx Go VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="networkoptix" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/NxGo.Dockerfile b/Docker/NxGo.Dockerfile index de3a173..c77be6a 100644 --- a/Docker/NxGo.Dockerfile +++ b/Docker/NxGo.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base:ubuntu-noble # Labels ARG LABEL_NAME="NxGo" ARG LABEL_DESCRIPTION="Nx Go VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="networkoptix" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/NxMeta-LSIO.Dockerfile b/Docker/NxMeta-LSIO.Dockerfile index 8492e1d..2778c7a 100644 --- a/Docker/NxMeta-LSIO.Dockerfile +++ b/Docker/NxMeta-LSIO.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base-lsio:ubuntu-noble # Labels ARG LABEL_NAME="NxMeta-LSIO" ARG LABEL_DESCRIPTION="Nx Meta VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="networkoptix-metavms" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/NxMeta.Dockerfile b/Docker/NxMeta.Dockerfile index 41e0baa..d827fa6 100644 --- a/Docker/NxMeta.Dockerfile +++ b/Docker/NxMeta.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base:ubuntu-noble # Labels ARG LABEL_NAME="NxMeta" ARG LABEL_DESCRIPTION="Nx Meta VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="networkoptix-metavms" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/NxWitness-LSIO.Dockerfile b/Docker/NxWitness-LSIO.Dockerfile index 50271f9..62e32f0 100644 --- a/Docker/NxWitness-LSIO.Dockerfile +++ b/Docker/NxWitness-LSIO.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base-lsio:ubuntu-noble # Labels ARG LABEL_NAME="NxWitness-LSIO" ARG LABEL_DESCRIPTION="Nx Witness VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="networkoptix" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/NxWitness.Dockerfile b/Docker/NxWitness.Dockerfile index 4e269f7..f46374b 100644 --- a/Docker/NxWitness.Dockerfile +++ b/Docker/NxWitness.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base:ubuntu-noble # Labels ARG LABEL_NAME="NxWitness" ARG LABEL_DESCRIPTION="Nx Witness VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="networkoptix" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/WisenetWAVE-LSIO.Dockerfile b/Docker/WisenetWAVE-LSIO.Dockerfile index 18a3cf2..8dd54d3 100644 --- a/Docker/WisenetWAVE-LSIO.Dockerfile +++ b/Docker/WisenetWAVE-LSIO.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base-lsio:ubuntu-noble # Labels ARG LABEL_NAME="WisenetWAVE-LSIO" ARG LABEL_DESCRIPTION="Wisenet WAVE VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="hanwha" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Docker/WisenetWAVE.Dockerfile b/Docker/WisenetWAVE.Dockerfile index 0233fc1..5c6c7bb 100644 --- a/Docker/WisenetWAVE.Dockerfile +++ b/Docker/WisenetWAVE.Dockerfile @@ -13,13 +13,13 @@ FROM docker.io/ptr727/nx-base:ubuntu-noble # Labels ARG LABEL_NAME="WisenetWAVE" ARG LABEL_DESCRIPTION="Wisenet WAVE VMS" -ARG LABEL_VERSION="6.1.0.42176" +ARG LABEL_VERSION="6.1.1.42624" # Download URL and version # Current values are defined by the build pipeline -ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip" -ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip" -ARG DOWNLOAD_VERSION="6.1.0.42176" +ARG DOWNLOAD_X64_URL="https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip" +ARG DOWNLOAD_ARM64_URL="https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip" +ARG DOWNLOAD_VERSION="6.1.1.42624" # Used for ${COMPANY_NAME} setting the server user and install directory ARG RUNTIME_NAME="hanwha" @@ -34,8 +34,8 @@ ARG \ # Platform of the node performing the build BUILDPLATFORM -# Prevent EULA and confirmation prompts in installers -ARG DEBIAN_FRONTEND=noninteractive +# Prevent EULA and confirmation prompts in installers +ARG DEBIAN_FRONTEND=noninteractive # Media server user and directory name ENV COMPANY_NAME=${RUNTIME_NAME} @@ -50,7 +50,7 @@ LABEL name=${LABEL_NAME}-${DOWNLOAD_VERSION} \ # Download the installer file WORKDIR /temp RUN /bin/bash -euo pipefail -c '\ - DEB_FILE="./vms_server.deb"; \ + DEB_FILE="./vms_server.deb"; \ TARGET_PLATFORM="${TARGETPLATFORM:-}"; \ DOWNLOAD_URL="${DOWNLOAD_X64_URL:?DOWNLOAD_X64_URL is required}"; \ if [ "${TARGET_PLATFORM}" = "linux/arm64" ]; then \ diff --git a/Make/Matrix.json b/Make/Matrix.json index 38c2c2a..9a9db5a 100644 --- a/Make/Matrix.json +++ b/Make/Matrix.json @@ -8,7 +8,6 @@ "Base": "ubuntu", "Tags": [ "docker.io/ptr727/nxgo:6.1.0.42176", - "docker.io/ptr727/nxgo:latest", "docker.io/ptr727/nxgo:stable" ], "Args": [ @@ -17,13 +16,27 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxGo", + "Product": "nxgo", + "Branch": "main", + "Base": "ubuntu", + "Tags": [ + "docker.io/ptr727/nxgo:6.1.1.42624", + "docker.io/ptr727/nxgo:latest" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxGo", "Product": "nxgo", "Branch": "develop", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/nxgo:develop", "docker.io/ptr727/nxgo:develop-6.1.0.42176", "docker.io/ptr727/nxgo:develop-stable" ], @@ -33,6 +46,21 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxGo", + "Product": "nxgo", + "Branch": "develop", + "Base": "ubuntu", + "Tags": [ + "docker.io/ptr727/nxgo:develop", + "docker.io/ptr727/nxgo:develop-6.1.1.42624" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxGo-LSIO", "Product": "nxgo", @@ -40,7 +68,6 @@ "Base": "lsio", "Tags": [ "docker.io/ptr727/nxgo-lsio:6.1.0.42176", - "docker.io/ptr727/nxgo-lsio:latest", "docker.io/ptr727/nxgo-lsio:stable" ], "Args": [ @@ -49,13 +76,27 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxGo-LSIO", + "Product": "nxgo", + "Branch": "main", + "Base": "lsio", + "Tags": [ + "docker.io/ptr727/nxgo-lsio:6.1.1.42624", + "docker.io/ptr727/nxgo-lsio:latest" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxGo-LSIO", "Product": "nxgo", "Branch": "develop", "Base": "lsio", "Tags": [ - "docker.io/ptr727/nxgo-lsio:develop", "docker.io/ptr727/nxgo-lsio:develop-6.1.0.42176", "docker.io/ptr727/nxgo-lsio:develop-stable" ], @@ -65,6 +106,21 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxGo-LSIO", + "Product": "nxgo", + "Branch": "develop", + "Base": "lsio", + "Tags": [ + "docker.io/ptr727/nxgo-lsio:develop", + "docker.io/ptr727/nxgo-lsio:develop-6.1.1.42624" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxMeta", "Product": "nxmeta", @@ -72,7 +128,6 @@ "Base": "ubuntu", "Tags": [ "docker.io/ptr727/nxmeta:6.1.0.42176", - "docker.io/ptr727/nxmeta:latest", "docker.io/ptr727/nxmeta:stable" ], "Args": [ @@ -81,13 +136,27 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxMeta", + "Product": "nxmeta", + "Branch": "main", + "Base": "ubuntu", + "Tags": [ + "docker.io/ptr727/nxmeta:6.1.1.42624", + "docker.io/ptr727/nxmeta:latest" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxMeta", "Product": "nxmeta", "Branch": "develop", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/nxmeta:develop", "docker.io/ptr727/nxmeta:develop-6.1.0.42176", "docker.io/ptr727/nxmeta:develop-stable" ], @@ -97,6 +166,21 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxMeta", + "Product": "nxmeta", + "Branch": "develop", + "Base": "ubuntu", + "Tags": [ + "docker.io/ptr727/nxmeta:develop", + "docker.io/ptr727/nxmeta:develop-6.1.1.42624" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxMeta-LSIO", "Product": "nxmeta", @@ -104,7 +188,6 @@ "Base": "lsio", "Tags": [ "docker.io/ptr727/nxmeta-lsio:6.1.0.42176", - "docker.io/ptr727/nxmeta-lsio:latest", "docker.io/ptr727/nxmeta-lsio:stable" ], "Args": [ @@ -113,13 +196,27 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxMeta-LSIO", + "Product": "nxmeta", + "Branch": "main", + "Base": "lsio", + "Tags": [ + "docker.io/ptr727/nxmeta-lsio:6.1.1.42624", + "docker.io/ptr727/nxmeta-lsio:latest" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxMeta-LSIO", "Product": "nxmeta", "Branch": "develop", "Base": "lsio", "Tags": [ - "docker.io/ptr727/nxmeta-lsio:develop", "docker.io/ptr727/nxmeta-lsio:develop-6.1.0.42176", "docker.io/ptr727/nxmeta-lsio:develop-stable" ], @@ -129,6 +226,21 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxMeta-LSIO", + "Product": "nxmeta", + "Branch": "develop", + "Base": "lsio", + "Tags": [ + "docker.io/ptr727/nxmeta-lsio:develop", + "docker.io/ptr727/nxmeta-lsio:develop-6.1.1.42624" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxWitness", "Product": "nxwitness", @@ -136,7 +248,6 @@ "Base": "ubuntu", "Tags": [ "docker.io/ptr727/nxwitness:6.1.0.42176", - "docker.io/ptr727/nxwitness:latest", "docker.io/ptr727/nxwitness:stable" ], "Args": [ @@ -145,13 +256,27 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxWitness", + "Product": "nxwitness", + "Branch": "main", + "Base": "ubuntu", + "Tags": [ + "docker.io/ptr727/nxwitness:6.1.1.42624", + "docker.io/ptr727/nxwitness:latest" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxWitness", "Product": "nxwitness", "Branch": "develop", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/nxwitness:develop", "docker.io/ptr727/nxwitness:develop-6.1.0.42176", "docker.io/ptr727/nxwitness:develop-stable" ], @@ -161,6 +286,21 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxWitness", + "Product": "nxwitness", + "Branch": "develop", + "Base": "ubuntu", + "Tags": [ + "docker.io/ptr727/nxwitness:develop", + "docker.io/ptr727/nxwitness:develop-6.1.1.42624" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxWitness-LSIO", "Product": "nxwitness", @@ -168,7 +308,6 @@ "Base": "lsio", "Tags": [ "docker.io/ptr727/nxwitness-lsio:6.1.0.42176", - "docker.io/ptr727/nxwitness-lsio:latest", "docker.io/ptr727/nxwitness-lsio:stable" ], "Args": [ @@ -177,13 +316,27 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxWitness-LSIO", + "Product": "nxwitness", + "Branch": "main", + "Base": "lsio", + "Tags": [ + "docker.io/ptr727/nxwitness-lsio:6.1.1.42624", + "docker.io/ptr727/nxwitness-lsio:latest" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "NxWitness-LSIO", "Product": "nxwitness", "Branch": "develop", "Base": "lsio", "Tags": [ - "docker.io/ptr727/nxwitness-lsio:develop", "docker.io/ptr727/nxwitness-lsio:develop-6.1.0.42176", "docker.io/ptr727/nxwitness-lsio:develop-stable" ], @@ -193,19 +346,34 @@ "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip" ] }, + { + "Name": "NxWitness-LSIO", + "Product": "nxwitness", + "Branch": "develop", + "Base": "lsio", + "Tags": [ + "docker.io/ptr727/nxwitness-lsio:develop", + "docker.io/ptr727/nxwitness-lsio:develop-6.1.1.42624" + ], + "Args": [ + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip" + ] + }, { "Name": "DWSpectrum", "Product": "dwspectrum", "Branch": "main", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/dwspectrum:6.0.6.41837", + "docker.io/ptr727/dwspectrum:6.1.0.42176", "docker.io/ptr727/dwspectrum:stable" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_arm64.zip", - "DOWNLOAD_VERSION=6.0.6.41837", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.0.42176", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" ] }, { @@ -214,13 +382,13 @@ "Branch": "main", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/dwspectrum:6.1.0.42176", + "docker.io/ptr727/dwspectrum:6.1.1.42624", "docker.io/ptr727/dwspectrum:latest" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -229,13 +397,13 @@ "Branch": "develop", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/dwspectrum:develop-6.0.6.41837", + "docker.io/ptr727/dwspectrum:develop-6.1.0.42176", "docker.io/ptr727/dwspectrum:develop-stable" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_arm64.zip", - "DOWNLOAD_VERSION=6.0.6.41837", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.0.42176", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" ] }, { @@ -245,12 +413,12 @@ "Base": "ubuntu", "Tags": [ "docker.io/ptr727/dwspectrum:develop", - "docker.io/ptr727/dwspectrum:develop-6.1.0.42176" + "docker.io/ptr727/dwspectrum:develop-6.1.1.42624" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -259,13 +427,13 @@ "Branch": "main", "Base": "lsio", "Tags": [ - "docker.io/ptr727/dwspectrum-lsio:6.0.6.41837", + "docker.io/ptr727/dwspectrum-lsio:6.1.0.42176", "docker.io/ptr727/dwspectrum-lsio:stable" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_arm64.zip", - "DOWNLOAD_VERSION=6.0.6.41837", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.0.42176", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" ] }, { @@ -274,13 +442,13 @@ "Branch": "main", "Base": "lsio", "Tags": [ - "docker.io/ptr727/dwspectrum-lsio:6.1.0.42176", + "docker.io/ptr727/dwspectrum-lsio:6.1.1.42624", "docker.io/ptr727/dwspectrum-lsio:latest" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -289,13 +457,13 @@ "Branch": "develop", "Base": "lsio", "Tags": [ - "docker.io/ptr727/dwspectrum-lsio:develop-6.0.6.41837", + "docker.io/ptr727/dwspectrum-lsio:develop-6.1.0.42176", "docker.io/ptr727/dwspectrum-lsio:develop-stable" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_arm64.zip", - "DOWNLOAD_VERSION=6.0.6.41837", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.0.42176", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" ] }, { @@ -305,12 +473,12 @@ "Base": "lsio", "Tags": [ "docker.io/ptr727/dwspectrum-lsio:develop", - "docker.io/ptr727/dwspectrum-lsio:develop-6.1.0.42176" + "docker.io/ptr727/dwspectrum-lsio:develop-6.1.1.42624" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -334,13 +502,13 @@ "Branch": "main", "Base": "ubuntu", "Tags": [ - "docker.io/ptr727/wisenetwave:6.1.0.42176", + "docker.io/ptr727/wisenetwave:6.1.1.42624", "docker.io/ptr727/wisenetwave:latest" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -365,12 +533,12 @@ "Base": "ubuntu", "Tags": [ "docker.io/ptr727/wisenetwave:develop", - "docker.io/ptr727/wisenetwave:develop-6.1.0.42176" + "docker.io/ptr727/wisenetwave:develop-6.1.1.42624" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -394,13 +562,13 @@ "Branch": "main", "Base": "lsio", "Tags": [ - "docker.io/ptr727/wisenetwave-lsio:6.1.0.42176", + "docker.io/ptr727/wisenetwave-lsio:6.1.1.42624", "docker.io/ptr727/wisenetwave-lsio:latest" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip" ] }, { @@ -425,12 +593,12 @@ "Base": "lsio", "Tags": [ "docker.io/ptr727/wisenetwave-lsio:develop", - "docker.io/ptr727/wisenetwave-lsio:develop-6.1.0.42176" + "docker.io/ptr727/wisenetwave-lsio:develop-6.1.1.42624" ], "Args": [ - "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip", - "DOWNLOAD_VERSION=6.1.0.42176", - "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip" + "DOWNLOAD_ARM64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip", + "DOWNLOAD_VERSION=6.1.1.42624", + "DOWNLOAD_X64_URL=https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip" ] } ] diff --git a/Make/Version.json b/Make/Version.json index c6a7756..0cbf5b2 100644 --- a/Make/Version.json +++ b/Make/Version.json @@ -9,7 +9,14 @@ "UriX64": "https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_x64.zip", "UriArm64": "https://updates.networkoptix.com/nxgo/42176/nxgo-server_update-6.1.0.42176-linux_arm64.zip", "Labels": [ - "Stable", + "Stable" + ] + }, + { + "Version": "6.1.1.42624", + "UriX64": "https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_x64.zip", + "UriArm64": "https://updates.networkoptix.com/nxgo/42624/nxgo-server_update-6.1.1.42624-linux_arm64.zip", + "Labels": [ "Latest" ] } @@ -23,7 +30,14 @@ "UriX64": "https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_x64.zip", "UriArm64": "https://updates.networkoptix.com/metavms/42176/metavms-server_update-6.1.0.42176-linux_arm64.zip", "Labels": [ - "Stable", + "Stable" + ] + }, + { + "Version": "6.1.1.42624", + "UriX64": "https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_x64.zip", + "UriArm64": "https://updates.networkoptix.com/metavms/42624/metavms-server_update-6.1.1.42624-linux_arm64.zip", + "Labels": [ "Latest" ] } @@ -37,7 +51,14 @@ "UriX64": "https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_x64.zip", "UriArm64": "https://updates.networkoptix.com/default/42176/nxwitness-server_update-6.1.0.42176-linux_arm64.zip", "Labels": [ - "Stable", + "Stable" + ] + }, + { + "Version": "6.1.1.42624", + "UriX64": "https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_x64.zip", + "UriArm64": "https://updates.networkoptix.com/default/42624/nxwitness-server_update-6.1.1.42624-linux_arm64.zip", + "Labels": [ "Latest" ] } @@ -47,17 +68,17 @@ "Product": "DWSpectrum", "Versions": [ { - "Version": "6.0.6.41837", - "UriX64": "https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_x64.zip", - "UriArm64": "https://updates.networkoptix.com/digitalwatchdog/41837/dwspectrum-server_update-6.0.6.41837-linux_arm64.zip", + "Version": "6.1.0.42176", + "UriX64": "https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip", + "UriArm64": "https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", "Labels": [ "Stable" ] }, { - "Version": "6.1.0.42176", - "UriX64": "https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_x64.zip", - "UriArm64": "https://updates.networkoptix.com/digitalwatchdog/42176/dwspectrum-server_update-6.1.0.42176-linux_arm64.zip", + "Version": "6.1.1.42624", + "UriX64": "https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_x64.zip", + "UriArm64": "https://updates.networkoptix.com/digitalwatchdog/42624/dwspectrum-server_update-6.1.1.42624-linux_arm64.zip", "Labels": [ "Latest" ] @@ -76,9 +97,9 @@ ] }, { - "Version": "6.1.0.42176", - "UriX64": "https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_x64.zip", - "UriArm64": "https://updates.networkoptix.com/hanwha/42176/wave-server_update-6.1.0.42176-linux_arm64.zip", + "Version": "6.1.1.42624", + "UriX64": "https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_x64.zip", + "UriArm64": "https://updates.networkoptix.com/hanwha/42624/wave-server_update-6.1.1.42624-linux_arm64.zip", "Labels": [ "Latest" ]