Skip to content

Commit b21fc0b

Browse files
Remove doc/sample references to preview bundle (#744)
* Remove doc/sample references to preview bundle * Few more * undo * Powershell -> PowerShell * fix version
1 parent f4b55d8 commit b21fc0b

File tree

17 files changed

+27
-28
lines changed

17 files changed

+27
-28
lines changed

docs/GeneralSetup.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -153,21 +153,21 @@ These steps can be done in the Terminal/CLI or with PowerShell.
153153
dotnet add package Microsoft.Azure.WebJobs.Extensions.Sql --prerelease
154154
```
155155

156-
**JavaScript, TypeScript, Python, PowerShell:** Update the `host.json` file to the preview extension bundle.
156+
**JavaScript, TypeScript, Python, PowerShell:** Update the `host.json` file to the v4 version of the extension bundle.
157157

158158
```json
159159
"extensionBundle": {
160-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
160+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
161161
"version": "[4.*, 5.0.0)"
162162
}
163163
```
164164

165165
**Java:**
166-
Update the `host.json` file to the preview extension bundle.
166+
Update the `host.json` file to the v4 version of the extension bundle.
167167

168168
```json
169169
"extensionBundle": {
170-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
170+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
171171
"version": "[4.*, 5.0.0)"
172172
}
173173
```

docs/SetupGuide_DotnetCSharpScript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ These instructions will guide you through creating your Function Project and add
4949

5050
4. Enable SQL bindings on the csx function created above. More information can be found in the [Azure SQL bindings for Azure Functions docs](https://aka.ms/sqlbindings).
5151

52-
Update the `host.json` file inside **MyApp/MyCSXFunction/** to the preview extension bundle.
52+
Update the `host.json` file inside **MyApp/MyCSXFunction/** to the v4 version of the extension bundle.
5353

5454
```json
5555
"extensionBundle": {
56-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
56+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
5757
"version": "[4.*, 5.0.0)"
5858
}
5959
```

docs/SetupGuide_Java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ These instructions will guide you through creating your Function Project and add
3636

3737
3. Enable SQL bindings on the function project. More information can be found in the [Azure SQL bindings for Azure Functions docs](https://aka.ms/sqlbindings).
3838

39-
Update the `host.json` file to the preview extension bundle.
39+
Update the `host.json` file to the v4 version of the extension bundle.
4040

4141
```json
4242
"extensionBundle": {
43-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
43+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
4444
"version": "[4.*, 5.0.0)"
4545
}
4646
```

docs/SetupGuide_Javascript.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ These instructions will guide you through creating your Function Project and add
3737

3838
3. Enable SQL bindings on the function project. More information can be found in the [Azure SQL bindings for Azure Functions docs](https://aka.ms/sqlbindings).
3939

40-
Update the `host.json` file to the preview extension bundle.
40+
Update the `host.json` file to the v4 version of the extension bundle.
4141

4242
```json
4343
"extensionBundle": {
44-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
44+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
4545
"version": "[4.*, 5.0.0)"
4646
}
4747
```

docs/SetupGuide_PowerShell.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,11 @@ These instructions will guide you through creating your Function Project and add
3636

3737
3. Enable SQL bindings on the function project. More information can be found in the [Azure SQL bindings for Azure Functions docs](https://aka.ms/sqlbindings).
3838

39-
Update the `host.json` file to the preview extension bundle.
39+
Update the `host.json` file to the v4 version of the extension bundle.
4040

4141
```json
4242
"extensionBundle": {
43-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
43+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
4444
"version": "[4.*, 5.0.0)"
4545
}
4646
```

docs/SetupGuide_Python.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ These instructions will guide you through creating your Function Project and add
3737

3838
3. Enable SQL bindings on the function project. More information can be found in the [Azure SQL bindings for Azure Functions docs](https://aka.ms/sqlbindings).
3939

40-
Update the `host.json` file to the preview extension bundle.
40+
Update the `host.json` file to the v4 version of the extension bundle.
4141

4242
```json
4343
"extensionBundle": {
44-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
44+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
4545
"version": "[4.*, 5.0.0)"
4646
}
4747
```

docs/SqlBindingRelatedRepos.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@ Contains templates for the various types of bindings and supported languages, ea
2828

2929
## Extension Bundle
3030

31-
Currently SQL Bindings is part of the 3.x and 4.x Preview bundles.
31+
Currently SQL Bindings is part of the 4.x bundles.
3232

33-
[Azure/azure-functions-extension-bundles at v3.x-preview (github.com)](https://github.com/Azure/azure-functions-extension-bundles/tree/v3.x-preview)
33+
[Azure/azure-functions-extension-bundles at v4.x (github.com)](https://github.com/Azure/azure-functions-extension-bundles/tree/v4.x)
3434

3535
[Azure/azure-functions-extension-bundles at v4.x-preview (github.com)](https://github.com/Azure/azure-functions-extension-bundles/tree/v4.x-preview)
3636

samples/samples-csx/host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"extensionBundle": {
15-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
15+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
1616
"version": "[4.*, 5.0.0)"
1717
}
1818
}

samples/samples-java/host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"extensionBundle": {
15-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
15+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
1616
"version": "[4.*, 5.0.0)"
1717
}
1818
}

samples/samples-js-v4/host.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
},
1414
"extensionBundle": {
15-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
15+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
1616
"version": "[4.*, 5.0.0)"
1717
}
1818
}

0 commit comments

Comments
 (0)