Skip to content

Commit 30d3610

Browse files
Merge branch 'main' into chgagnon/portFix
2 parents c1f4671 + ff2c309 commit 30d3610

File tree

18 files changed

+30
-31
lines changed

18 files changed

+30
-31
lines changed

builds/azure-pipelines/build-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,6 @@ stages:
4444
parameters:
4545
solution: '$(solution)'
4646
configuration: '$(configuration)'
47-
nugetVersion: '1.0.0-test'
48-
binariesVersion: '1.0.0'
49-
supportedVersion: '1.*-*'
47+
nugetVersion: '99.99.99-test'
48+
binariesVersion: '99.99.99'
49+
supportedVersion: '99.99.99'

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 preview extension bundle.
187+
**JavaScript, TypeScript, Python, PowerShell:** Update the `host.json` file to the v4 version of the extension bundle.
188188

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

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

199199
```json
200200
"extensionBundle": {
201-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
201+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
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 preview extension bundle.
55+
Update the `host.json` file inside **MyApp/MyCSXFunction/** to the v4 version of the extension bundle.
5656

5757
```json
5858
"extensionBundle": {
59-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
59+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
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 preview extension bundle.
42+
Update the `host.json` file to the v4 version of the extension bundle.
4343

4444
```json
4545
"extensionBundle": {
46-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
46+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
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 preview extension bundle.
43+
Update the `host.json` file to the v4 version of the extension bundle.
4444

4545
```json
4646
"extensionBundle": {
47-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
47+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
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 preview extension bundle.
42+
Update the `host.json` file to the v4 version of the extension bundle.
4343

4444
```json
4545
"extensionBundle": {
46-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
46+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
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 preview extension bundle.
43+
Update the `host.json` file to the v4 version of the extension bundle.
4444

4545
```json
4646
"extensionBundle": {
47-
"id": "Microsoft.Azure.Functions.ExtensionBundle.Preview",
47+
"id": "Microsoft.Azure.Functions.ExtensionBundle",
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 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
}

0 commit comments

Comments
 (0)