Skip to content

Commit

Permalink
Update EventGrid & SendGrid extension dependencies and prepare for re…
Browse files Browse the repository at this point in the history
…lease (#2947)
  • Loading branch information
liliankasem authored Feb 3, 2025
1 parent 89ac21b commit 9c6ae7a
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
5 changes: 3 additions & 2 deletions extensions/Worker.Extensions.EventGrid/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Extensions.EventGrid <version>
### Microsoft.Azure.Functions.Worker.Extensions.EventGrid 4.5.0

- <entry>
- Update dependency "Azure.Messaging.EventGrid" to v4.29.0
- Update dependency "Microsoft.Azure.Functions.Worker.Core" to v1.20.0
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Azure Event Grid extensions for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>3.4.3</VersionPrefix>
<VersionPrefix>3.5.0</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand All @@ -19,8 +19,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.17.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Core" Version="1.19.0" />
<PackageReference Include="Azure.Messaging.EventGrid" Version="4.29.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Core" Version="1.20.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions extensions/Worker.Extensions.SendGrid/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Extensions.SendGrid <version>
### Microsoft.Azure.Functions.Worker.Extensions.SendGrid 3.1.0

- <entry>
- Update dependency "Microsoft.Azure.WebJobs.Extensions.SendGrid" to v3.1.0
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<Description>Azure SendGrid extension for .NET isolated functions</Description>

<!--Version information-->
<VersionPrefix>3.0.3</VersionPrefix>
<VersionPrefix>3.1.0</VersionPrefix>

<!--Temporarily opting out of documentation. Pending documentation-->
<GenerateDocumentationFile>false</GenerateDocumentationFile>
Expand All @@ -19,7 +19,7 @@
</ItemGroup>

<ItemGroup>
<WebJobsExtension Include="Microsoft.Azure.WebJobs.Extensions.SendGrid" Version="3.0.3" />
<WebJobsExtension Include="Microsoft.Azure.WebJobs.Extensions.SendGrid" Version="3.1.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@

<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.Azure.WebJobs" Version="3.0.41" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.0" />
<PackageReference Condition="$(TestBuild) != 'true'" Include="Microsoft.Azure.Functions.Worker" Version="2.0.0" />
</ItemGroup>
Expand Down
6 changes: 4 additions & 2 deletions tools/devpack.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
# Packs the SDK locally, and (by default) updates the Sample to use this package, then builds.
# Specify --E2E to instead target the E2E test app.

$buildNumber = "local" + [System.DateTime]::Now.ToString("yyyyMMddHHmm")
# Use metadata to provide a version that is always head of the latest stable package
# E.g: Nuget packages will be named 2.0.0 with the version metedata set to 2.0.0+202501311440-local
$buildNumber = "+" + [System.DateTime]::Now.ToString("yyyyMMddHHmm")

Write-Host
Write-Host "Building packages with BuildNumber $buildNumber"
Expand Down Expand Up @@ -49,7 +51,7 @@ if (!(Test-Path $localPack))
Write-Host
Write-Host "---Updating projects with local SDK pack---"
Write-Host "Packing Core .NET Worker projects to $localPack"
& "dotnet" "pack" $sdkProject "-p:PackageOutputPath=$localPack" "-nologo" "-p:Version=2.0.1" "-p:VersionSuffix=$buildNumber" $AdditionalPackArgs
& "dotnet" "pack" $sdkProject "-p:PackageOutputPath=$localPack" "-nologo" "-p:VersionSuffix=$buildNumber" $AdditionalPackArgs
Write-Host

foreach ($project in $projects) {
Expand Down

0 comments on commit 9c6ae7a

Please sign in to comment.