Skip to content

Commit 8e098b8

Browse files
committed
Merge branch 'dev/aaronburtle/Telemetry-in-app-name' of https://github.com/Azure/data-api-builder into dev/aaronburtle/Telemetry-in-app-name
2 parents 2ac6628 + 3ba9f00 commit 8e098b8

47 files changed

Lines changed: 245 additions & 153 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.devcontainer/devcontainer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"name": ".NET 8",
3-
"image": "mcr.microsoft.com/dotnet/sdk:8.0",
2+
"name": ".NET 10",
3+
"image": "mcr.microsoft.com/dotnet/sdk:10.0",
44
"features": {
55
// https://github.com/devcontainers/features/tree/main/src/dotnet
66
"ghcr.io/devcontainers/features/dotnet:2": {
77
"version": "latest",
8-
"dotnetRuntimeVersions": "8.0",
9-
"aspNetCoreRuntimeVersions": "8.0",
10-
"additionalVersions": "8.0"
8+
"dotnetRuntimeVersions": "10.0",
9+
"aspNetCoreRuntimeVersions": "10.0",
10+
"additionalVersions": "10.0"
1111
}
1212
},
1313
"customizations": {

.github/copilot-instructions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Data API builder (DAB) is an open-source, no-code tool that creates secure, full
66

77
### Key Technologies
88
- **Language**: C# / .NET
9-
- **.NET Version**: .NET 8.0 (see `global.json`)
9+
- **.NET Version**: .NET 10.0 (see `global.json`)
1010
- **Supported Databases**: Azure SQL, SQL Server, SQLDW, Cosmos DB, PostgreSQL, MySQL
1111
- **API Types**: REST, GraphQL, MCP
1212
- **Deployment**: Cross-platform (Azure, AWS, GCP, on-premises)
@@ -36,7 +36,7 @@ data-api-builder/
3636
## Building and Testing
3737

3838
### Prerequisites
39-
- .NET 8.0 SDK or later
39+
- .NET 10.0 SDK or later
4040
- Database server for testing (SQL Server, PostgreSQL, MySQL, or Cosmos DB)
4141

4242
### Building the Project

.pipelines/cosmos-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ steps:
5454
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
5555
# specifying the runtime version a project targets."
5656
- task: UseDotNet@2
57-
displayName: Setup .NET SDK v8.0.x
57+
displayName: Setup .NET SDK v10.0.x
5858
inputs:
5959
packageType: sdk
60-
version: 8.0.x
60+
version: 10.0.x
6161
installationPath: $(Agent.ToolsDirectory)/dotnet
6262

6363
- task: NuGetToolInstaller@1

.pipelines/dwsql-pipelines.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,10 +47,10 @@ jobs:
4747
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
4848
# specifying the runtime version a project targets."
4949
- task: UseDotNet@2
50-
displayName: Setup .NET SDK v8.0.x
50+
displayName: Setup .NET SDK v10.0.x
5151
inputs:
5252
packageType: sdk
53-
version: 8.0.x
53+
version: 10.0.x
5454

5555
- task: NuGetToolInstaller@1
5656

@@ -176,10 +176,10 @@ jobs:
176176
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
177177
# specifying the runtime version a project targets."
178178
- task: UseDotNet@2
179-
displayName: Setup .NET SDK v8.0.x
179+
displayName: Setup .NET SDK v10.0.x
180180
inputs:
181181
packageType: sdk
182-
version: 8.0.x
182+
version: 10.0.x
183183

184184
- task: NuGetToolInstaller@1
185185

.pipelines/mssql-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
5050
# specifying the runtime version a project targets."
5151
- task: UseDotNet@2
52-
displayName: Setup .NET SDK v8.0.x
52+
displayName: Setup .NET SDK v10.0.x
5353
inputs:
5454
packageType: sdk
55-
version: 8.0.x
55+
version: 10.0.x
5656

5757
- task: NuGetToolInstaller@1
5858

.pipelines/mysql-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,10 @@ jobs:
4646
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
4747
# specifying the runtime version a project targets."
4848
- task: UseDotNet@2
49-
displayName: Setup .NET SDK v8.0.x
49+
displayName: Setup .NET SDK v10.0.x
5050
inputs:
5151
packageType: sdk
52-
version: 8.0.x
52+
version: 10.0.x
5353

5454
- task: NuGetToolInstaller@1
5555

.pipelines/pg-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
4242
# specifying the runtime version a project targets."
4343
- task: UseDotNet@2
44-
displayName: Setup .NET SDK v8.0.x
44+
displayName: Setup .NET SDK v10.0.x
4545
inputs:
4646
packageType: sdk
47-
version: 8.0.x
47+
version: 10.0.x
4848

4949
- task: NuGetToolInstaller@1
5050

.pipelines/templates/build-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ steps:
5454
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
5555
# specifying the runtime version a project targets."
5656
- task: UseDotNet@2
57-
displayName: Setup .NET SDK v8.0.x
57+
displayName: Setup .NET SDK v10.0.x
5858
inputs:
5959
packageType: sdk
60-
version: 8.0.x
60+
version: 10.0.x
6161
installationPath: $(Agent.ToolsDirectory)/dotnet
6262

6363
- task: NuGetToolInstaller@1

.pipelines/templates/mssql-test-steps.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ steps:
3131
# Per Microsoft Learn Docs, "Selecting the .NET SDK version is independent from
3232
# specifying the runtime version a project targets."
3333
- task: UseDotNet@2
34-
displayName: Setup .NET SDK v8.0.x
34+
displayName: Setup .NET SDK v10.0.x
3535
inputs:
3636
packageType: sdk
37-
version: 8.0.x
37+
version: 10.0.x
3838

3939
- task: NuGetToolInstaller@1
4040

.pipelines/templates/static-tools.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
clean: true # if true, execute `execute git clean -ffdx && git reset --hard HEAD` before fetching
2222

2323
- task: UseDotNet@2
24-
displayName: Setup .NET SDK v8.0.x
24+
displayName: Setup .NET SDK v10.0.x
2525
inputs:
2626
packageType: sdk
27-
version: 8.0.x
27+
version: 10.0.x
2828

2929
# Analyze source and build output text files for credentials
3030
- task: CredScan@3

0 commit comments

Comments
 (0)