Skip to content

Commit 1437026

Browse files
authored
Merge branch 'OpenAPITools:master' into go_pattern_generation_20079
2 parents 2b7cc7f + 45aeae3 commit 1437026

File tree

53 files changed

+442
-183
lines changed

Some content is hidden

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

53 files changed

+442
-183
lines changed

.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@v4
29-
- uses: actions/setup-dotnet@v4.1.0
29+
- uses: actions/setup-dotnet@v4.2.0
3030
with:
3131
dotnet-version: '8.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@v4
31-
- uses: actions/setup-dotnet@v4.1.0
31+
- uses: actions/setup-dotnet@v4.2.0
3232
with:
3333
dotnet-version: 3.1.*
3434
- name: Build

.github/workflows/samples-dotnet6-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/
2020
steps:
2121
- uses: actions/checkout@v4
22-
- uses: actions/setup-dotnet@v4.1.0
22+
- uses: actions/setup-dotnet@v4.2.0
2323
with:
2424
dotnet-version: '6.0.x'
2525
- name: Run echo server

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- samples/client/petstore/csharp/restsharp/net6/ParameterMappings/
1919
steps:
2020
- uses: actions/checkout@v4
21-
- uses: actions/setup-dotnet@v4.1.0
21+
- uses: actions/setup-dotnet@v4.2.0
2222
with:
2323
dotnet-version: '6.0.x'
2424
- 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@v4
28-
- uses: actions/setup-dotnet@v4.1.0
28+
- uses: actions/setup-dotnet@v4.2.0
2929
with:
3030
dotnet-version: '6.0.x'
3131
- name: Build

.github/workflows/samples-dotnet8-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-8.0-useSwashBuckle
2626
steps:
2727
- uses: actions/checkout@v4
28-
- uses: actions/setup-dotnet@v4.1.0
28+
- uses: actions/setup-dotnet@v4.2.0
2929
with:
3030
dotnet-version: '8.0.x'
3131
- name: Build

.github/workflows/samples-dotnet8.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- samples/client/petstore/csharp/generichost/net8/UseDateTimeForDate
3535
steps:
3636
- uses: actions/checkout@v4
37-
- uses: actions/setup-dotnet@v4.1.0
37+
- uses: actions/setup-dotnet@v4.2.0
3838
with:
3939
dotnet-version: '8.0.x'
4040
- name: Build

.github/workflows/samples-dotnet9.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- samples/client/petstore/csharp/generichost/net9/UseDateTimeForDate
3838
steps:
3939
- uses: actions/checkout@v4
40-
- uses: actions/setup-dotnet@v4.1.0
40+
- uses: actions/setup-dotnet@v4.2.0
4141
with:
4242
dotnet-version: '9.0.101'
4343
- name: Build
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.10.0-SNAPSHOT
2+
openApiGeneratorVersion=7.11.0-SNAPSHOT
33
# /RELEASE_VERSION

modules/openapi-generator/src/main/resources/C-libcurl/CMakeLists.txt.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_policy(SET CMP0063 NEW)
66
set(CMAKE_C_VISIBILITY_PRESET default)
77
set(CMAKE_VISIBILITY_INLINES_HIDDEN OFF)
88
set(CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS ON)
9-
set(CMAKE_C_FLAGS "-Werror=implicit-function-declaration -Werror=missing-declarations")
9+
set(CMAKE_C_FLAGS "-Werror=implicit-function-declaration -Werror=missing-declarations -Werror=int-conversion")
1010

1111
option(BUILD_SHARED_LIBS "Build using shared libraries" ON)
1212

0 commit comments

Comments
 (0)