Skip to content

Commit

Permalink
Merge pull request #85 from abhinavminhas/dev
Browse files Browse the repository at this point in the history
Nuget Package Creation - v1.10.1
  • Loading branch information
abhinavminhas authored Oct 18, 2024
2 parents 76aa8dc + 1f64089 commit c20a3d4
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 16 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-2019, ubuntu-20.04, macOS-12 ]
os: [ windows-2019, ubuntu-20.04, macOS-13 ]
dotnet-version: [ '3.1.x', '6.0.x' ]

steps:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-2019, ubuntu-20.04, macOS-12 ]
os: [ windows-2019, ubuntu-20.04, macOS-13 ]
dotnet-version: [ '3.1.x' ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ windows-2019, ubuntu-20.04, macOS-12 ]
os: [ windows-2019, ubuntu-20.04, macOS-13 ]
dotnet-version: [ '3.1.x' ]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-nuget-Package.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Publish Nuget Package

env:
NUGET_PACKAGE_NAME_VERSION: "GmailHelper.1.10.0.nupkg"
NUGET_PACKAGE_NAME_VERSION: "GmailHelper.1.10.1.nupkg"

on:
workflow_dispatch:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ All notable changes to this project documented here.

## [Released]

## [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').

## [1.10.0](https://www.nuget.org/packages/GmailHelper/1.10.0) - 2024-08-04
### Changed
* Security Updates
Expand Down
4 changes: 2 additions & 2 deletions GmailAPIHelper.NET.Tests/GmailAPIHelper.NET.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,8 @@
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\MSTest.TestFramework.2.2.8\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
</Reference>
<Reference Include="MimeKitLite, Version=4.7.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKitLite.4.7.1\lib\netstandard2.0\MimeKitLite.dll</HintPath>
<Reference Include="MimeKitLite, Version=4.8.0.0, Culture=neutral, PublicKeyToken=bede1c8a46c66814, processorArchitecture=MSIL">
<HintPath>..\packages\MimeKitLite.4.8.0\lib\netstandard2.0\MimeKitLite.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
Expand Down
2 changes: 1 addition & 1 deletion GmailAPIHelper.NET.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<package id="Google.Apis.Auth" version="1.68.0" targetFramework="net461" />
<package id="Google.Apis.Core" version="1.68.0" targetFramework="net461" />
<package id="Google.Apis.Gmail.v1" version="1.68.0.3427" targetFramework="net461" />
<package id="MimeKitLite" version="4.7.1" targetFramework="net461" />
<package id="MimeKitLite" version="4.8.0" targetFramework="net461" />
<package id="MSTest.TestAdapter" version="2.2.8" targetFramework="net461" />
<package id="MSTest.TestFramework" version="2.2.8" targetFramework="net461" />
<package id="Newtonsoft.Json" version="13.0.3" targetFramework="net461" />
Expand Down
12 changes: 3 additions & 9 deletions GmailAPIHelper/GmailAPIHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,13 @@ Solution Version:
<PackageId>GmailHelper</PackageId>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReleaseNotes>Security Updates:
1. Remove security protocol usage completely (Due to deprecated versions in .Net Standard 2.0, should rely on .NET version's security protocol using this package).
2. Email regex match - Introduce timeout to limit the execution time (DDoS protection).

Code Quality Updates:
1. Throw 'ArgumentException' instead of 'NullReferenceException' (ModifyMessage/ModifyMessages).
</PackageReleaseNotes>
<Version>1.10.0</Version>
<PackageReleaseNotes>1. MimeKitLite dependency update from ('4.7.1' -&gt; '4.8.0').</PackageReleaseNotes>
<Version>1.10.1</Version>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Google.Apis.Gmail.v1" Version="1.68.0.3427" />
<PackageReference Include="MimeKitLite" Version="4.7.1" />
<PackageReference Include="MimeKitLite" Version="4.8.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit c20a3d4

Please sign in to comment.