From afe70fb5187659a3a55ef30b40550128875be90f Mon Sep 17 00:00:00 2001 From: abhinavminhas Date: Sat, 19 Oct 2024 11:34:07 +1100 Subject: [PATCH 1/3] VSTest verbosity set to detailed --- .github/workflows/build.yml | 4 ++-- .github/workflows/coverage.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a128870..0431822 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -109,7 +109,7 @@ jobs: - name: Test if: ${{ matrix.dotnet-version == 'N/A' }} - run: dotnet test --no-build --verbosity normal --configuration Release --filter TestCategory=GMAIL-TESTS-DOTNETCORE + run: dotnet test --no-build --verbosity detailed --configuration Release --filter TestCategory=GMAIL-TESTS-DOTNETCORE Code-Coverage: name: Code Coverage (Codecov) @@ -155,7 +155,7 @@ jobs: - name: Test if: ${{ matrix.dotnet-version == '3.1.x' }} - run: dotnet test --no-build --verbosity normal --configuration Release --filter TestCategory=GMAIL-TESTS-DOTNETCORE /p:CollectCoverage=true /p:CoverletOutputFormat=lcov + run: dotnet test --no-build --verbosity detailed --configuration Release --filter TestCategory=GMAIL-TESTS-DOTNETCORE /p:CollectCoverage=true /p:CoverletOutputFormat=lcov - name: Upload Coverage To Codecov uses: codecov/codecov-action@v4 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 0184c20..ba8147b 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -48,7 +48,7 @@ jobs: - name: Test if: ${{ matrix.dotnet-version == '3.1.x' }} - run: dotnet test --no-build --verbosity normal --configuration Release --filter TestCategory=GMAIL-TESTS-DOTNETCORE /p:CollectCoverage=true /p:CoverletOutputFormat=lcov + run: dotnet test --no-build --verbosity detailed --configuration Release --filter TestCategory=GMAIL-TESTS-DOTNETCORE /p:CollectCoverage=true /p:CoverletOutputFormat=lcov - name: Upload Coverage To Codecov uses: codecov/codecov-action@v4 From 8b6da5321f05024a65d47035efda6781cf97684d Mon Sep 17 00:00:00 2001 From: abhinavminhas Date: Fri, 13 Dec 2024 21:38:13 +1100 Subject: [PATCH 2/3] MimeKitLite dependency update from ('4.8.0' -> '4.9.0') --- .../GmailAPIHelper.NET.Tests.csproj | 21 +++++++++++-------- GmailAPIHelper.NET.Tests/packages.config | 10 ++++----- GmailAPIHelper/GmailAPIHelper.csproj | 2 +- 3 files changed, 18 insertions(+), 15 deletions(-) diff --git a/GmailAPIHelper.NET.Tests/GmailAPIHelper.NET.Tests.csproj b/GmailAPIHelper.NET.Tests/GmailAPIHelper.NET.Tests.csproj index 6d69e10..735be92 100644 --- a/GmailAPIHelper.NET.Tests/GmailAPIHelper.NET.Tests.csproj +++ b/GmailAPIHelper.NET.Tests/GmailAPIHelper.NET.Tests.csproj @@ -59,15 +59,16 @@ ..\packages\MSTest.TestFramework.2.2.8\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll - - ..\packages\MimeKitLite.4.8.0\lib\netstandard2.0\MimeKitLite.dll + + ..\packages\MimeKitLite.4.9.0\lib\netstandard2.0\MimeKitLite.dll + True ..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll - - ..\packages\System.Buffers.4.5.1\lib\net461\System.Buffers.dll + + ..\packages\System.Buffers.4.6.0\lib\netstandard2.0\System.Buffers.dll ..\packages\System.CodeDom.7.0.0\lib\netstandard2.0\System.CodeDom.dll @@ -77,19 +78,21 @@ ..\packages\System.Management.7.0.2\lib\netstandard2.0\System.Management.dll - - ..\packages\System.Memory.4.5.5\lib\net461\System.Memory.dll + + ..\packages\System.Memory.4.6.0\lib\netstandard2.0\System.Memory.dll + True - - ..\packages\System.Numerics.Vectors.4.5.0\lib\net46\System.Numerics.Vectors.dll + + ..\packages\System.Numerics.Vectors.4.6.0\lib\netstandard2.0\System.Numerics.Vectors.dll ..\packages\System.Reflection.TypeExtensions.4.7.0\lib\net461\System.Reflection.TypeExtensions.dll - ..\packages\System.Runtime.CompilerServices.Unsafe.6.0.0\lib\net461\System.Runtime.CompilerServices.Unsafe.dll + ..\packages\System.Runtime.CompilerServices.Unsafe.6.1.0\lib\netstandard2.0\System.Runtime.CompilerServices.Unsafe.dll + True diff --git a/GmailAPIHelper.NET.Tests/packages.config b/GmailAPIHelper.NET.Tests/packages.config index 8c8e338..31ad9fc 100644 --- a/GmailAPIHelper.NET.Tests/packages.config +++ b/GmailAPIHelper.NET.Tests/packages.config @@ -4,16 +4,16 @@ - + - + - - + + - + \ No newline at end of file diff --git a/GmailAPIHelper/GmailAPIHelper.csproj b/GmailAPIHelper/GmailAPIHelper.csproj index 0bcc0bd..0cf28b9 100644 --- a/GmailAPIHelper/GmailAPIHelper.csproj +++ b/GmailAPIHelper/GmailAPIHelper.csproj @@ -36,7 +36,7 @@ Solution Version: - + From 5e8dc9a12f83c6152b909ef73ea50135421d5672 Mon Sep 17 00:00:00 2001 From: abhinavminhas Date: Fri, 13 Dec 2024 21:53:15 +1100 Subject: [PATCH 3/3] Nuget package creation - v1.10.2 --- .github/workflows/publish-nuget-Package.yml | 2 +- CHANGELOG.md | 4 ++++ GmailAPIHelper/GmailAPIHelper.csproj | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-nuget-Package.yml b/.github/workflows/publish-nuget-Package.yml index acae12c..25ef17e 100644 --- a/.github/workflows/publish-nuget-Package.yml +++ b/.github/workflows/publish-nuget-Package.yml @@ -1,7 +1,7 @@ name: Publish Nuget Package env: - NUGET_PACKAGE_NAME_VERSION: "GmailHelper.1.10.1.nupkg" + NUGET_PACKAGE_NAME_VERSION: "GmailHelper.1.10.2.nupkg" on: workflow_dispatch: diff --git a/CHANGELOG.md b/CHANGELOG.md index f88261c..df53f8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project documented here. ## [Released] +## [1.10.2](https://www.nuget.org/packages/GmailHelper/1.10.2) - 2024-12-13 +### Changed +- MimeKitLite dependency update from ('4.8.0' -> '4.9.0'). + ## [1.10.1](https://www.nuget.org/packages/GmailHelper/1.10.1) - 2024-10-19 ### Changed - MimeKitLite dependency update from ('4.7.1' -> '4.8.0'). diff --git a/GmailAPIHelper/GmailAPIHelper.csproj b/GmailAPIHelper/GmailAPIHelper.csproj index 0cf28b9..7b04d39 100644 --- a/GmailAPIHelper/GmailAPIHelper.csproj +++ b/GmailAPIHelper/GmailAPIHelper.csproj @@ -30,8 +30,8 @@ Solution Version: GmailHelper git LICENSE - 1. MimeKitLite dependency update from ('4.7.1' -> '4.8.0'). - 1.10.1 + 1. MimeKitLite dependency update from ('4.8.0' -> '4.9.0'). + 1.10.2