Skip to content

Commit

Permalink
Reset releae notes
Browse files Browse the repository at this point in the history
  • Loading branch information
liliankasem committed Nov 13, 2024
1 parent 325fce0 commit ae93a8b
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 44 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@

### Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore <version>

- Addressing fix for AspNetCoreResponseCookies cookie defaults (#2811)
- <entry>

### Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore.Analyzers <version>

- <entry>
41 changes: 6 additions & 35 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,43 +4,14 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker (metapackage) 2.0.0
### Microsoft.Azure.Functions.Worker (metapackage) <version>

- Updating `Microsoft.Azure.Functions.Worker.Core` to 2.0.0
- Updating `Microsoft.Azure.Functions.Worker.Grpc` to 2.0.0
- <entry>

### Microsoft.Azure.Functions.Worker.Core 2.0.0
### Microsoft.Azure.Functions.Worker.Core <version>

- `ValidateScopes` is enabled for developement environments by default. (#2705)
- The default is the value of `IsDevelopment(IHostingEnvironment)`.
- 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.
- 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)
- Updating `Azure.Core` to 1.41.0
- Updated service registrations for bootstrapping methods to ensure idempotency.
- <entry>

##### Setting worker options example
### Microsoft.Azure.Functions.Worker.Grpc <version>

```csharp
var host = new HostBuilder()
.ConfigureFunctionsWorkerDefaults(options =>
{
options.EnableUserCodeException = false;
options.IncludeEmptyEntriesInMessagePayload = false;
})
```

### Microsoft.Azure.Functions.Worker.Grpc 2.0.0

- Removed fallback command line argument reading code for grpc worker startup options. (#1908)

### Microsoft.Azure.Functions.Worker.Sdk 2.0.0-preview2

- Adding support for SDK container builds with Functions base images
- Updating `Azure.Core` to 1.41.0
- Updated service registrations for bootstrapping methods to ensure idempotency.
- <entry>
8 changes: 2 additions & 6 deletions sdk/release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,9 @@
- My change description (#PR/#issue)
-->

### Microsoft.Azure.Functions.Worker.Sdk 2.0.0-preview2
### Microsoft.Azure.Functions.Worker.Sdk <version>

- Changed exception handling in function invocation path to ensure fatal exceptions bubble up.
- Updated `Microsoft.Azure.Functions.Worker.Sdk.Generators` reference to 1.3.4.
- Setting _ToolingSuffix for TargetFrameworkVersion v9.0
- Adding support for SDK container builds with Functions base images
- Removed the default value for HttpStatusCode in WriteAsJsonAsync (#2720)
- <entry>

### Microsoft.Azure.Functions.Worker.Sdk.Generators <version>

Expand Down
5 changes: 3 additions & 2 deletions src/DotNetWorker.ApplicationInsights/release_notes.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## What's Changed

### Microsoft.Azure.Functions.Worker.ApplicationInsights 1.4.0
- Updating `Azure.Identity` to 1.12.0
### Microsoft.Azure.Functions.Worker.ApplicationInsights <version>

- <entry>

0 comments on commit ae93a8b

Please sign in to comment.