Skip to content

Commit 31a7c7a

Browse files
Revert "Remove doc/sample references to preview bundle (#744)"
This reverts commit d7cd728.
1 parent 30d3610 commit 31a7c7a

File tree

17 files changed

+28
-27
lines changed

17 files changed

+28
-27
lines changed

docs/GeneralSetup.md

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

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

189189
```json
190190
"extensionBundle": {
191-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
191+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
192192
"version": "[4.*, 5.0.0)"
193193
}
194194
```
195195

196196
**Java:**
197-
Update the `host.json` file to the v4 version of the extension bundle.
197+
Update the `host.json` file to the preview extension bundle.
198198

199199
```json
200200
"extensionBundle": {
201-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
201+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
202202
"version": "[4.*, 5.0.0)"
203203
}
204204
```

docs/SetupGuide_DotnetCSharpScript.md

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

5353
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).
5454

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

5757
```json
5858
"extensionBundle": {
59-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
59+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
6060
"version": "[4.*, 5.0.0)"
6161
}
6262
```

docs/SetupGuide_Java.md

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

4040
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).
4141

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

4444
```json
4545
"extensionBundle": {
46-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
46+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
4747
"version": "[4.*, 5.0.0)"
4848
}
4949
```

docs/SetupGuide_Javascript.md

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

4141
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).
4242

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

4545
```json
4646
"extensionBundle": {
47-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
47+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
4848
"version": "[4.*, 5.0.0)"
4949
}
5050
```

docs/SetupGuide_PowerShell.md

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

4040
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).
4141

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

4444
```json
4545
"extensionBundle": {
46-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
46+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
4747
"version": "[4.*, 5.0.0)"
4848
}
4949
```

docs/SetupGuide_Python.md

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

4141
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).
4242

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

4545
```json
4646
"extensionBundle": {
47-
"id": "Microsoft.Azure.Functions.ExtensionBundle",
47+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
4848
"version": "[4.*, 5.0.0)"
4949
}
5050
```

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 4.x bundles.
31+
Currently SQL Bindings is part of the 3.x and 4.x Preview bundles.
3232

33-
[Azure/azure-functions-extension-bundles at v4.x (github.com)](https://github.com/Azure/azure-functions-extension-bundles/tree/v4.x)
33+
[Azure/azure-functions-extension-bundles at v3.x-preview (github.com)](https://github.com/Azure/azure-functions-extension-bundles/tree/v3.x-preview)
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",
15+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
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",
15+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
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",
15+
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
1616
"version": "[4.*, 5.0.0)"
1717
}
1818
}

0 commit comments

Comments
 (0)