Skip to content

Commit 0cb169d

Browse files
committed
chore: solved conflicts
2 parents bde43b4 + f4ed900 commit 0cb169d

10,035 files changed

Lines changed: 51266 additions & 17962 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/samples-scala-client.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ on:
1111
- samples/client/petstore/scala-sttp/**
1212
- samples/client/petstore/scala-sttp-circe/**
1313
- samples/client/petstore/scala-sttp4/**
14+
- samples/client/petstore/scala-sttp4-circe/**
1415
pull_request:
1516
paths:
1617
- samples/client/petstore/scalaz/**
@@ -21,6 +22,7 @@ on:
2122
- samples/client/petstore/scala-sttp/**
2223
- samples/client/petstore/scala-sttp-circe/**
2324
- samples/client/petstore/scala-sttp4/**
25+
- samples/client/petstore/scala-sttp4-circe/**
2426
jobs:
2527
build:
2628
name: Build sbt/Scala
@@ -38,6 +40,7 @@ jobs:
3840
- samples/client/petstore/scala-sttp
3941
- samples/client/petstore/scala-sttp-circe
4042
- samples/client/petstore/scala-sttp4
43+
- samples/client/petstore/scala-sttp4-circe
4144
services:
4245
petstore-api:
4346
image: swaggerapi/petstore

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
<div align="center">
1717

18-
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.23.0`):
18+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.24.0`):
1919
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
2020
[![Bitrise](https://img.shields.io/bitrise/4a2b10a819d12b67/master?label=bitrise%3A%20Swift+4,5&token=859FMDR8QHwabCzwvZK6vQ)](https://app.bitrise.io/app/4a2b10a819d12b67)
2121

@@ -154,8 +154,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
154154

155155
| OpenAPI Generator Version | Release Date | Notes |
156156
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
157-
| 7.23.0 (upcoming minor release) [SNAPSHOT](https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-to-test-with-the-latest-master-of-openapi-generator) | 08.06.2026 | Minor release with breaking changes (with fallback) |
158-
| [7.22.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.22.0) (latest stable release) | 28.04.2026 | Minor release with breaking changes (with fallback) |
157+
| 7.24.0 (upcoming minor release) [SNAPSHOT](https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-to-test-with-the-latest-master-of-openapi-generator) | 08.07.2026 | Minor release with breaking changes (with fallback) |
158+
| [7.23.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.23.0) (latest stable release) | 28.04.2026 | Minor release with breaking changes (with fallback) |
159159
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
160160
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
161161
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
@@ -218,16 +218,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
218218
<!-- RELEASE_VERSION -->
219219
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
220220

221-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.22.0/openapi-generator-cli-7.22.0.jar`
221+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar`
222222

223223
For **Mac/Linux** users:
224224
```sh
225-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.22.0/openapi-generator-cli-7.22.0.jar -O openapi-generator-cli.jar
225+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar -O openapi-generator-cli.jar
226226
```
227227

228228
For **Windows** users, you will need to install [wget](http://gnuwin32.sourceforge.net/packages/wget.htm) or you can use Invoke-WebRequest in PowerShell (3.0+), e.g.
229229
```
230-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.22.0/openapi-generator-cli-7.22.0.jar
230+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar
231231
```
232232

233233
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -462,7 +462,7 @@ openapi-generator-cli version
462462
To use a specific version of "openapi-generator-cli"
463463

464464
```sh
465-
openapi-generator-cli version-manager set 7.22.0
465+
openapi-generator-cli version-manager set 7.23.0
466466
```
467467

468468
Or install it as dev-dependency:
@@ -486,7 +486,7 @@ pip install openapi-generator-cli
486486

487487
To install a specific version
488488
```
489-
pip install openapi-generator-cli==7.22.0
489+
pip install openapi-generator-cli==7.23.0
490490
```
491491

492492
You can also install with [jdk4py](https://github.com/activeviam/jdk4py) instead of java binary. (python>=3.10 is required)
@@ -512,7 +512,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
512512
(if you're on Windows, replace the last command with `java -jar modules\openapi-generator-cli\target\openapi-generator-cli.jar generate -i https://raw.githubusercontent.com/openapitools/openapi-generator/master/modules/openapi-generator/src/test/resources/3_0/petstore.yaml -g php -o c:\temp\php_api_client`)
513513

514514
<!-- RELEASE_VERSION -->
515-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.22.0/openapi-generator-cli-7.22.0.jar)
515+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.23.0/openapi-generator-cli-7.23.0.jar)
516516
<!-- /RELEASE_VERSION -->
517517

518518
To get a list of **general** options available, please run `java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar help generate`

bin/configs/kotlin-spring-boot-integer-enum.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ additionalProperties:
1111
annotationLibrary: none
1212
documentationProvider: none
1313
enumPropertyNaming: UPPERCASE
14+
useEnumValueInterface: "true"

bin/configs/kotlin-spring-boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ additionalProperties:
1111
serializableModel: "true"
1212
useBeanValidation: "true"
1313
requestMappingMode: controller
14+
useEnumValueInterface: "true"
15+
useSpringBoot3: "false"
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
generatorName: rust-axum
2+
outputDir: samples/server/petstore/rust-axum/output/rust-axum-sse
3+
inputSpec: modules/openapi-generator/src/test/resources/3_0/rust-axum/rust-axum-sse.yaml
4+
templateDir: modules/openapi-generator/src/main/resources/rust-axum
5+
generateAliasAsModel: true
6+
additionalProperties:
7+
hideGenerationTimestamp: "true"
8+
packageName: rust-axum-sse-test
9+
homePageUrl: https://github.com/openapitools/openapi-generator
10+
globalProperties:
11+
skipFormModel: false
12+
enablePostProcessFile: true

bin/configs/scala-sttp4-circe.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
generatorName: scala-sttp4
2+
outputDir: samples/client/petstore/scala-sttp4-circe
3+
inputSpec: modules/openapi-generator/src/test/resources/3_0/petstore.yaml
4+
templateDir: modules/openapi-generator/src/main/resources/scala-sttp4
5+
additionalProperties:
6+
hideGenerationTimestamp: "true"
7+
jsonLibrary: "circe"

bin/configs/spring-boot-3-include-http-request-context.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ additionalProperties:
1515
generateBuilders: true
1616
includeHttpRequestContext: "true"
1717
delegatePattern: true
18+
useEnumValueInterface: "true"

bin/configs/spring-boot-4.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ additionalProperties:
1515
generateConstructorWithAllArgs: true
1616
generateBuilders: true
1717
openApiNullable: false
18+
useEnumValueInterface: "true"

bin/configs/spring-boot-sort-validation.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ additionalProperties:
1818
generatePageableConstraintValidation: "true"
1919
useTags: "true"
2020
requestMappingMode: api_interface
21+
useEnumValueInterface: "true"

bin/configs/spring-boot.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ additionalProperties:
99
hideGenerationTimestamp: "true"
1010
camelCaseDollarSign: "true"
1111
modelNameSuffix: 'Dto'
12+
useEnumValueInterface: "true"
13+
useSpringBoot3: "false"

0 commit comments

Comments
 (0)