From 513b787de97186153d4f6b2a9ba553c15708c6be Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Sun, 14 Jun 2026 08:41:56 -0400 Subject: [PATCH 1/6] Update README.md --- README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/README.md b/README.md index bbb6f6b..5cb3005 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,6 @@ # AsBuiltReport.Chart - -## :exclamation: THIS ASBUILTREPORT MODULE IS CURRENTLY IN DEVELOPMENT AND MIGHT NOT YET BE FUNCTIONAL ❗ - AsBuiltReport.Chart is a PowerShell module which provides a set of cmdlets for generating charts and visualizations in As Built Reports. This module is designed to work seamlessly with the AsBuiltReport.Core module, allowing users to create visually appealing and informative reports with ease. # :beginner: Getting Started From c0079592caa197c6d02826cd1fa2fedd6d68f4ff Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Wed, 24 Jun 2026 12:08:26 -0400 Subject: [PATCH 2/6] Update Todo.md --- Todo.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Todo.md b/Todo.md index d6cc011..eef8804 100644 --- a/Todo.md +++ b/Todo.md @@ -1,2 +1 @@ -[Done] Add radar chart support: [Radar Chart](https://scottplot.net/cookbook/5/Radar/) -[] Calculate the spoke length based on the maximum value in the dataset to ensure the radar chart is properly scaled. \ No newline at end of file +- [] Add support for ScottPlot 5.1.59 From 3d9c648397f7f89e8db200787c2521313feb6b76 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Wed, 24 Jun 2026 20:36:16 -0400 Subject: [PATCH 3/6] Update github actions --- .github/workflows/Codeql.yml | 2 +- .github/workflows/PSScriptAnalyzer.yml | 2 +- .github/workflows/Pester.yml | 4 ++-- .github/workflows/Release.yml | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/Codeql.yml b/.github/workflows/Codeql.yml index a46295b..0390571 100644 --- a/.github/workflows/Codeql.yml +++ b/.github/workflows/Codeql.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 # Initializes the CodeQL tools and creates a CodeQL database - name: Initialize CodeQL diff --git a/.github/workflows/PSScriptAnalyzer.yml b/.github/workflows/PSScriptAnalyzer.yml index 759bcad..d2c36fa 100644 --- a/.github/workflows/PSScriptAnalyzer.yml +++ b/.github/workflows/PSScriptAnalyzer.yml @@ -5,7 +5,7 @@ jobs: name: Run PSScriptAnalyzer runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: lint uses: devblackops/github-action-psscriptanalyzer@master with: diff --git a/.github/workflows/Pester.yml b/.github/workflows/Pester.yml index b4201ce..b392b58 100644 --- a/.github/workflows/Pester.yml +++ b/.github/workflows/Pester.yml @@ -37,7 +37,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v6 + uses: actions/checkout@v7 - name: Setup .NET uses: actions/setup-dotnet@v5 with: @@ -88,7 +88,7 @@ jobs: - name: Upload test results if: always() - uses: actions/upload-artifact@v4 + uses: actions/upload-artifact@v7 with: name: test-results-${{ matrix.os }}-${{ matrix.shell }} path: Tests/testResults.xml diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index 6496cc2..64d7daf 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -8,7 +8,7 @@ jobs: publish-to-psgallery: runs-on: windows-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - name: Setup .NET uses: actions/setup-dotnet@v5 with: From 725bdcd675ab1a1f5c442fce3a6fb193a4d2ef49 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Wed, 24 Jun 2026 21:51:21 -0400 Subject: [PATCH 4/6] Update .NET dependencies to latests version --- AsBuiltReport.Chart/AsBuiltReport.Chart.psd1 | 2 +- CHANGELOG.md | 9 +++++++++ Sources/AsBuiltReportChart.csproj | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/AsBuiltReport.Chart/AsBuiltReport.Chart.psd1 b/AsBuiltReport.Chart/AsBuiltReport.Chart.psd1 index 4fa00be..af8b0b7 100644 --- a/AsBuiltReport.Chart/AsBuiltReport.Chart.psd1 +++ b/AsBuiltReport.Chart/AsBuiltReport.Chart.psd1 @@ -12,7 +12,7 @@ RootModule = 'AsBuiltReport.Chart.psm1' # Version number of this module. - ModuleVersion = '0.3.3' + ModuleVersion = '0.3.4' # Supported PSEditions # CompatiblePSEditions = @() diff --git a/CHANGELOG.md b/CHANGELOG.md index 9caa7b4..b948f4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.3.4] - Unreleased + +### Changed + +- Update module v0.3.4 +- Update SkiaSharp .NET dependency to v4.148.0 +- Update HarfBuzzSharp .NET dependency to v14.2.0 +- Update ScottPlot NET dependency to v5.1.59 + ## [0.3.3] - 2026-06-12 ### Added diff --git a/Sources/AsBuiltReportChart.csproj b/Sources/AsBuiltReportChart.csproj index 94f1aa2..ada18d0 100644 --- a/Sources/AsBuiltReportChart.csproj +++ b/Sources/AsBuiltReportChart.csproj @@ -3,13 +3,13 @@ netstandard2.0 - 0.3.3 + 0.3.4 - + From 9ad5329f128b570c480eff77d9b4cecfaaf30952 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Wed, 24 Jun 2026 21:59:48 -0400 Subject: [PATCH 5/6] Revert SkiaSharp version --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b948f4c..87b18c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,8 +10,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Update module v0.3.4 -- Update SkiaSharp .NET dependency to v4.148.0 -- Update HarfBuzzSharp .NET dependency to v14.2.0 - Update ScottPlot NET dependency to v5.1.59 ## [0.3.3] - 2026-06-12 From 5d3051db63aaa70e2cc52716813ae68fc2e038a2 Mon Sep 17 00:00:00 2001 From: Jonathan Colon Date: Thu, 25 Jun 2026 20:18:08 -0400 Subject: [PATCH 6/6] Update release date for v0.3.4 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 87b18c1..6c2f3df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [0.3.4] - Unreleased +## [0.3.4] - 2026-06-25 ### Changed