You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/azure-functions/extension-bundles.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@ You define an extension bundle reference in the `host.json` project file by addi
27
27
28
28
## Supported extension bundles
29
29
30
-
This table lists all `Microsoft.Azure.Functions.ExtensionBundle` bundle versions and the current [support state](#support-policy).
30
+
This table lists all `Microsoft.Azure.Functions.ExtensionBundle` bundle versions and the current [support state](#support-policy):
31
31
32
32
| Bundle version | Version in host.json | Support state | End-of-support date |
33
33
| --- | --- | --- | --- |
@@ -44,11 +44,11 @@ Keep these considerations in mind when you work with extension bundles:
44
44
45
45
- When possible, you should set a `version` range value in `host.json` from the preceding table, such as `[4.0.0, 5.0.0)`, instead of defining a custom range.
46
46
- Use the latest version range to obtain optimal app performance and access to the latest features.
47
-
- In the unlikely event that you can't use an extension bundle, you must instead [explicitly install extensions](./functions-bindings-register.md#explicitly-installing-extensions).
47
+
- In the unlikely event that you can't use an extension bundle, you must instead [explicitly install extensions](./functions-bindings-register.md#explicitly-install-extensions).
48
48
49
49
## Previewing extension bundles
50
50
51
-
Prerelease versions of specific binding extensions are maintained in a preview extension bundle. The preview extension bundle (`Microsoft.Azure.Functions.ExtensionBundle.Preview`) allows you to take advantage of preview extensions and new behaviors in existing extensions before they reach general availability (GA).
51
+
Prerelease versions of specific binding extensions are maintained in a preview extension bundle: `Microsoft.Azure.Functions.ExtensionBundle.Preview`. You can use this preview extension bundle to take advantage of preview extensions and new behaviors in existing extensions before they reach general availability (GA).
52
52
53
53
Keep these considerations in mind when you choose to use a non-GA extension bundle:
54
54
@@ -62,10 +62,10 @@ Keep these considerations in mind when you choose to use a non-GA extension bund
62
62
- Pin your bundle to a specific, well-tested bundle version instead of to a range. Pinning prevents automatic upgrading of your bundle version before you have a chance to verify the update in a nonproduction environment.
63
63
- Move your app to using a GA bundle version as soon as the functionality becomes available in a fully supported bundle release.
64
64
- To stay informed about bundle updates, including moving from preview to GA, you should:
65
-
- Monitor preview bundle version releases on the [release page for extension bundles](https://github.com/Azure/azure-functions-extension-bundles/releases).
65
+
- Monitor releases of preview bundle versions on the [release page for extension bundles](https://github.com/Azure/azure-functions-extension-bundles/releases).
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-error-pages.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ To avoid loss of data or missed messages, you should practice good error handlin
39
39
40
40
## Retries
41
41
42
-
There are two kinds of retries available for your functions:
42
+
Two kinds of retries are available for your functions:
43
43
44
44
- Built-in retry behaviors of individual trigger extensions
45
45
- Retry policies that the Azure Functions runtime provides
@@ -62,7 +62,7 @@ The following table indicates which triggers support retries and where the retry
62
62
63
63
## Retry policies
64
64
65
-
With Azure Functions, you can define retry policies for specific trigger types. The runtime enforces these retry policies. These trigger types currently support retry policies:
65
+
With Azure Functions, you can define retry policies for specific trigger types. The runtime enforces these retry policies. The following trigger types currently support retry policies:
Copy file name to clipboardExpand all lines: articles/azure-functions/functions-bindings-expressions-patterns.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,7 @@ One of the most powerful features of [triggers and bindings](./functions-trigger
14
14
15
15
Most expressions are wrapped in curly braces. For example, in a queue trigger function, `{queueTrigger}` resolves to the queue message text. If the `path` property for a blob output binding is `container/{queueTrigger}` and a queue message `HelloWorld` triggers the function, a blob named `HelloWorld` is created.
It's a best practice to manage secrets and connection strings by using app settings rather than configuration files. This practice limits access to these secrets and makes it safe to store files such as `function.json` in public source-control repositories.
For projects that use a compiled C# class library, you install the NuGet packages for the extensions that you need as you normally would in your apps. For more information, see the [Visual Studio Code developer guide](functions-develop-vs-code.md?tabs=csharp#install-binding-extensions) or the [Visual Studio developer guide](functions-develop-vs.md#add-bindings).
0 commit comments