Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update azure-functions-dotnet-worker monorepo (major) #20

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
Microsoft.Azure.Functions.Worker 1.10.0 -> 2.0.0 age adoption passing confidence
Microsoft.Azure.Functions.Worker 1.6.0 -> 2.0.0 age adoption passing confidence
Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs 5.0.1 -> 6.6.0 age adoption passing confidence
Microsoft.Azure.Functions.Worker.Sdk 1.7.0 -> 2.0.0 age adoption passing confidence
Microsoft.Azure.Functions.Worker.Sdk 1.3.0 -> 2.0.0 age adoption passing confidence

Release Notes

Azure/azure-functions-dotnet-worker (Microsoft.Azure.Functions.Worker)

v2.0.0: Microsoft.Azure.Functions.Worker 2.0.0

Compare Source

Microsoft.Azure.Functions.Worker (metapackage) 2.0.0
  • Updating Microsoft.Azure.Functions.Worker.Core to 2.0.0
  • Updating Microsoft.Azure.Functions.Worker.Grpc to 2.0.0
  • Changed exception handling in function invocation path to ensure fatal exceptions bubble up.
Breaking Changes
  • Dropping .NET 5 TFM support
  • Capability IncludeEmptyEntriesInMessagePayload is now enabled by default (#​2701)
    • This means that empty entries will be included in the function trigger message payload by default.
    • To disable this capability and return to the old behaviour, set IncludeEmptyEntriesInMessagePayload to false in the worker options.
  • ValidateScopes is enabled for development environments by default.
Microsoft.Azure.Functions.Worker.Core 2.0.0
  • Updating Azure.Core to 1.41.0
  • New APIs supporting IHostApplicationBuilder
  • Updated service registrations for bootstrapping methods to ensure idempotency.
Breaking Changes
  • Capability EnableUserCodeException is now enabled by default (#​2702)
    • This means that exceptions thrown by user code will be surfaced to the Host as their original exception type, instead of being wrapped in an RpcException.
    • To disable this capability and return to the old behaviour, set EnableUserCodeException to false in the worker options.
    • The EnableUserCodeException property in WorkerOptions has been marked as obsolete and may be removed in a future release.
  • Rename ILoggerExtensions to FunctionsLoggerExtensions to avoid naming conflict issues (#​2716)
  • Removed the default value for HttpStatusCode in WriteAsJsonAsync (#​2720)
  • Removed fallback command line argument reading code for grpc worker startup options. (#​1908)
Setting Worker Options Example

If you need to disable these capabilities and return to the old behaviour, you can set the worker options as follows:

var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults(options =>
{
    options.EnableUserCodeException = false;
    options.IncludeEmptyEntriesInMessagePayload = false;
})
Microsoft.Azure.Functions.Worker.Grpc 2.0.0
  • Refer to metapackage

v1.23.0

Compare Source

  • Updating Microsoft.Azure.Functions.Worker.Core to 1.19.0
  • Updating Microsoft.Azure.Functions.Worker.Grpc to 1.17.0
  • Updating Azure.Core to 1.41.0

v1.22.0: Microsoft.Azure.Functions.Worker 1.22.0

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker (metapackage) 1.22.0
  • Updating Microsoft.Azure.Functions.Worker.Core to 1.18.0
Microsoft.Azure.Functions.Worker.Core 1.18.0
  • Enabling AAD Authentication for ApplicationInsights (#​2217)
  • OpenTelemetry support (#​2395)

v1.21.0

Compare Source

  • Updating Microsoft.Azure.Functions.Worker.Core to 1.17.0
  • Updating Microsoft.Azure.Functions.Worker.Grpc to 1.16.0
  • Updating Azure.Core to 1.37.0

v1.20.1: Microsoft.Azure.Functions.Worker 1.20.1

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker (metapackage) 1.20.1
  • Updated to Microsoft.Azure.Functions.Worker.Core 1.16.1
Microsoft.Azure.Functions.Worker.Core 1.16.1
  • Populating parameter value for nullable types when input binding data is missing the value for the parameter (#​2155)
  • Remove closure in DefaultFunctionExecutor (#​2182) (Thank you @​danielmarbach for this contribution!)

v1.20.0: Microsoft.Azure.Functions.Worker 1.20.0

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker (metapackage) 1.20.0
  • Updated to Microsoft.Azure.Functions.Worker.Core 1.16.0
  • Updated to Microsoft.Azure.Functions.Worker.Grpc 1.15.0
Microsoft.Azure.Functions.Worker.Core 1.16.0
  • Adding optional parameter support (#​1868)
  • Unsealed Microsoft.Azure.Functions.Worker.Http.HttpHeadersCollection
  • HttpRequestDataExtensions.ReadAsStringAsync updated to use enforce the UTF-8 default if the encoding is not specified. (#​1987)
Microsoft.Azure.Functions.Worker.Grpc 1.15.0
  • Added support for handling the new command line arguments with "functions-" prefix. (#​1897)
  • Adding optional parameter support (#​1868)
  • Enhancements to interop in hosted placeholder scenarios

Thank you @​endizhupani for your contributions to this release!

v1.19.0

Compare Source

  • Updating Azure.Core to 1.41.0

v1.18.0: Microsoft.Azure.Functions.Worker 1.18.0

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker (metapackage) 1.18.0
Microsoft.Azure.Functions.Worker.Core 1.14.0
  • Unsealed InputConverterAttribute. Implementers can now derive from this type to map attributes to custom converters. (#​1712)
  • Add support for deferred binding (#​1676)
  • Add binding attribute to converter context (#​1660)
Microsoft.Azure.Functions.Worker.Grpc 1.12.0
  • Add support for deferred binding (#​1676)

Full Changelog: Azure/azure-functions-dotnet-worker@1.17.0...1.18.0

v1.17.0

Compare Source

  • Updating Azure.Core to 1.41.0

v1.16.0

  • Updating Azure.Core to 1.37.0
  • Updating Google.Protobuf to 3.25.2
  • Updating Grpc.Net.Client to 2.60.0
  • Updating Grpc.Net.ClientFactory to 2.60.0
  • Updating Grpc.Core to 2.46.6 (netstandard2.0 only)

v1.14.1: Microsoft.Azure.Functions.Worker 1.14.1

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker 1.14.1 (meta package)
  • Update Microsoft.Azure.Functions.Worker.Core dependency to 1.12.1
  • Update Microsoft.Azure.Functions.Worker.Grpc dependency to 1.10.1
Microsoft.Azure.Functions.Worker.Core 1.12.1
  • Minor documentation updates (no functional changes)
Microsoft.Azure.Functions.Worker.Grpc 1.10.1
  • Fixed an issue causing throughput degradation and for synchronous functions, blocked the execution pipeline. (#​1516)

v1.14.0: Microsoft.Azure.Functions.Worker 1.14.0

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker 1.14.0 (meta package)
  • Update Microsoft.Azure.Functions.Worker.Core dependency to 1.12.0
  • Update Microsoft.Azure.Functions.Worker.Grpc dependency to 1.10.0
Microsoft.Azure.Functions.Worker.Core 1.12.0
  • Fix ArgumentOutOfRangeException when using HttpDataRequestDataExtensions.ReadAsStringAsync in .NET Framework (#​1466)
Microsoft.Azure.Functions.Worker.Grpc 1.10.0
  • Including worker metadata & capabilities in env reload response (#​1425)
  • Fix race condition causing GrpcWorker initialization failure (#​1508)
  • Fix null reference exception when retry context is not set (#​1476)

v1.13.0: Microsoft.Azure.Functions.Worker 1.13.0

Compare Source

What's Changed

Microsoft.Azure.Functions.Worker 1.13.0 (meta package)
  • Update Microsoft.Azure.Functions.Worker.Core dependency to 1.11.0
  • Update Microsoft.Azure.Functions.Worker.Grpc dependency to 1.9.0
Microsoft.Azure.Functions.Worker.Core 1.11.0
Microsoft.Azure.Functions.Worker.Grpc 1.11.0
Microsoft.Azure.Functions.ApplicationInsights 1.0.0-preview4

Full Changelog: Azure/azure-functions-dotnet-worker@1.10.1...1.13.0

v1.10.1: Microsoft.Azure.Functions.Worker 1.10.1

Compare Source

WorkerOptions additions:

  • Added support for surfacing user-thrown exception to App Insights (#​939)
  • Adding support for opting-in to get empty entries in function trigger payload (#​1091)
  • Adding support for modifying Capabilities sent to the host (#​1183)

Full Changelog: Azure/azure-functions-dotnet-worker@1.10.0...1.10.1


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/major-azure-functions-dotnet-worker-monorepo branch from 80dc1f0 to 9fb3ca1 Compare November 13, 2024 01:49
@renovate renovate bot changed the title Update dependency Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs to v6 Update azure-functions-dotnet-worker monorepo (major) Nov 13, 2024
Copy link

coderabbitai bot commented Nov 13, 2024

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants