Skip to content

Commit 5d4b1cb

Browse files
committed
Merge branch 'master' into bugfix/22859-Spring-HTTP-Interface-library-must-support-useBeanValidation2
# Conflicts: # bin/configs/spring-http-interface-reactive.yaml # bin/configs/spring-http-interface.yaml # modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/SpringCodegen.java # samples/client/petstore/spring-http-interface-springboot-4/src/main/java/org/openapitools/model/ArrayTestDto.java # samples/client/petstore/spring-http-interface-springboot-4/src/main/java/org/openapitools/model/FileSchemaTestClassDto.java # samples/client/petstore/spring-http-interface-springboot-4/src/main/java/org/openapitools/model/PetDto.java
2 parents d4cccfe + 1d3ef5c commit 5d4b1cb

4,669 files changed

Lines changed: 149987 additions & 17984 deletions

File tree

Some content is hidden

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

.github/workflows/docker-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Set up QEMU
3434
uses: docker/setup-qemu-action@v4
3535
- name: Set up Docker Buildx
36-
uses: docker/setup-buildx-action@v3
36+
uses: docker/setup-buildx-action@v4
3737
- name: Login to DockerHub
3838
uses: docker/login-action@v4
3939
with:

.github/workflows/samples-aspnet-fastenpoints-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- samples/server/petstore/aspnet/fastendpoints-useValidators
2727
steps:
2828
- uses: actions/checkout@v5
29-
- uses: actions/setup-dotnet@v5.1.0
29+
- uses: actions/setup-dotnet@v5.2.0
3030
with:
3131
dotnet-version: '8.0.x'
3232
- name: Build
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: Samples C# .Net 10 Client (Petstore)
2+
3+
on:
4+
push:
5+
paths:
6+
- samples/client/petstore/csharp/restsharp/net10/Petstore/**
7+
pull_request:
8+
paths:
9+
- samples/client/petstore/csharp/restsharp/net10/Petstore/**
10+
jobs:
11+
build:
12+
name: Build clients
13+
runs-on: ubuntu-latest
14+
services:
15+
petstore-api:
16+
image: swaggerapi/petstore
17+
ports:
18+
- 80:8080
19+
env:
20+
SWAGGER_HOST: http://petstore.swagger.io
21+
SWAGGER_BASE_PATH: /v2
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
sample:
26+
- samples/client/petstore/csharp/restsharp/net10/Petstore/
27+
steps:
28+
- uses: actions/checkout@v5
29+
- uses: actions/setup-dotnet@v5.2.0
30+
with:
31+
dotnet-version: '10.0.x'
32+
- name: Build
33+
working-directory: ${{ matrix.sample }}
34+
run: dotnet build Org.OpenAPITools.sln
35+
- name: Test
36+
working-directory: ${{ matrix.sample }}
37+
run: dotnet test Org.OpenAPITools.sln

.github/workflows/samples-dotnet-petstore.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- samples/client/petstore/csharp/restsharp/standard2.0/Petstore/
2727
steps:
2828
- uses: actions/checkout@v5
29-
- uses: actions/setup-dotnet@v5.1.0
29+
- uses: actions/setup-dotnet@v5.2.0
3030
with:
3131
dotnet-version: '7.0.x'
3232
- name: Build

.github/workflows/samples-dotnet-standard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# - samples/client/petstore/csharp/unityWebRequest/standard2.0/Petstore/
2929
steps:
3030
- uses: actions/checkout@v5
31-
- uses: actions/setup-dotnet@v5.1.0
31+
- uses: actions/setup-dotnet@v5.2.0
3232
with:
3333
dotnet-version: 3.1.*
3434
- name: Build

.github/workflows/samples-dotnet10.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
# - samples/client/petstore/csharp/unityWebRequest/net10/Petstore
4949
steps:
5050
- uses: actions/checkout@v5
51-
- uses: actions/setup-dotnet@v5.1.0
51+
- uses: actions/setup-dotnet@v5.2.0
5252
with:
5353
dotnet-version: '10.x'
5454
- name: Build

.github/workflows/samples-dotnet6-server.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- samples/server/petstore/aspnetcore-6.0-useSwashBuckle
2626
steps:
2727
- uses: actions/checkout@v5
28-
- uses: actions/setup-dotnet@v5.1.0
28+
- uses: actions/setup-dotnet@v5.2.0
2929
with:
3030
dotnet-version: '6.0.x'
3131
- name: Build

.github/workflows/samples-dotnet7-client.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- samples/client/petstore/csharp/restsharp/standard2.0/ConditionalSerialization/
4444
steps:
4545
- uses: actions/checkout@v5
46-
- uses: actions/setup-dotnet@v5.1.0
46+
- uses: actions/setup-dotnet@v5.2.0
4747
with:
4848
dotnet-version: '7.0.x'
4949
- name: Build

.github/workflows/samples-dotnet8-client-echo-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- samples/client/echo_api/csharp/restsharp/net8/EchoApi
2020
steps:
2121
- uses: actions/checkout@v5
22-
- uses: actions/setup-dotnet@v5.1.0
22+
- uses: actions/setup-dotnet@v5.2.0
2323
with:
2424
dotnet-version: '8.0.x'
2525
- name: Run echo server

.github/workflows/samples-dotnet8-client.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- samples/client/petstore/csharp/restsharp/net8/useVirtualForHooks/
2020
steps:
2121
- uses: actions/checkout@v5
22-
- uses: actions/setup-dotnet@v5.1.0
22+
- uses: actions/setup-dotnet@v5.2.0
2323
with:
2424
dotnet-version: '8.0.x'
2525
- name: Build

0 commit comments

Comments
 (0)