Skip to content

Commit 046be5d

Browse files
authored
Prepare 7.15.0 (#21445)
* Revert "v7.14.0 release (#21443)" This reverts commit 5eb083e. * prepare v7.15.0 snapshot * update samples * update readme * update doc
1 parent 5eb083e commit 046be5d

File tree

7,578 files changed

+7808
-7808
lines changed

Some content is hidden

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

7,578 files changed

+7808
-7808
lines changed

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.14.0`):
18+
[Master](https://github.com/OpenAPITools/openapi-generator/tree/master) (`7.15.0`):
1919
[![Build Status](https://api.travis-ci.com/OpenAPITools/openapi-generator.svg?branch=master&status=passed)](https://app.travis-ci.com/github/OpenAPITools/openapi-generator/builds)
2020
[![Integration Test2](https://circleci.com/gh/OpenAPITools/openapi-generator.svg?style=shield)](https://circleci.com/gh/OpenAPITools/openapi-generator)
2121
[![Windows Test](https://ci.appveyor.com/api/projects/status/github/openapitools/openapi-generator?branch=master&svg=true&passingText=Windows%20Test%20-%20OK&failingText=Windows%20Test%20-%20Fails)](https://ci.appveyor.com/project/WilliamCheng/openapi-generator)
@@ -149,8 +149,8 @@ The OpenAPI Specification has undergone 3 revisions since initial creation in 20
149149

150150
| OpenAPI Generator Version | Release Date | Notes |
151151
| --------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------ | ------------------------------------------------- |
152-
| 7.14.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.14.0-SNAPSHOT/) | 29.05.2025 | Minor release with breaking changes (with fallback) |
153-
| [7.13.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.13.0) (latest stable release) | 27.04.2025 | Minor release with breaking changes (with fallback) |
152+
| 7.15.0 (upcoming minor release) [SNAPSHOT](https://oss.sonatype.org/content/repositories/snapshots/org/openapitools/openapi-generator-cli/7.15.0-SNAPSHOT/) | 29.07.2025 | Minor release with breaking changes (with fallback) |
153+
| [7.14.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v7.14.0) (latest stable release) | 25.06.2025 | Minor release with breaking changes (with fallback) |
154154
| [6.6.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v6.6.0) | 11.05.2023 | Minor release with breaking changes (with fallback) |
155155
| [5.4.0](https://github.com/OpenAPITools/openapi-generator/releases/tag/v5.4.0) | 31.01.2022 | Minor release with breaking changes (with fallback) |
156156
| [4.3.1](https://github.com/OpenAPITools/openapi-generator/releases/tag/v4.3.1) | 06.05.2020 | Patch release (enhancements, bug fixes, etc) |
@@ -213,16 +213,16 @@ See the different versions of the [openapi-generator-cli](https://search.maven.o
213213
<!-- RELEASE_VERSION -->
214214
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
215215

216-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.13.0/openapi-generator-cli-7.13.0.jar`
216+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar`
217217

218218
For **Mac/Linux** users:
219219
```sh
220-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.13.0/openapi-generator-cli-7.13.0.jar -O openapi-generator-cli.jar
220+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar -O openapi-generator-cli.jar
221221
```
222222

223223
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.
224224
```
225-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.13.0/openapi-generator-cli-7.13.0.jar
225+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar
226226
```
227227

228228
After downloading the JAR, run `java -jar openapi-generator-cli.jar help` to show the usage.
@@ -457,7 +457,7 @@ openapi-generator-cli version
457457
To use a specific version of "openapi-generator-cli"
458458

459459
```sh
460-
openapi-generator-cli version-manager set 7.13.0
460+
openapi-generator-cli version-manager set 7.14.0
461461
```
462462

463463
Or install it as dev-dependency:
@@ -481,7 +481,7 @@ pip install openapi-generator-cli
481481

482482
To install a specific version
483483
```
484-
pip install openapi-generator-cli==7.13.0
484+
pip install openapi-generator-cli==7.14.0
485485
```
486486

487487
You can also install with [jdk4py](https://github.com/activeviam/jdk4py) instead of java binary. (python>=3.10 is required)
@@ -507,7 +507,7 @@ java -jar modules/openapi-generator-cli/target/openapi-generator-cli.jar generat
507507
(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`)
508508

509509
<!-- RELEASE_VERSION -->
510-
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.13.0/openapi-generator-cli-7.13.0.jar)
510+
You can also download the JAR (latest release) directly from [maven.org](https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar)
511511
<!-- /RELEASE_VERSION -->
512512

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

docs/installation.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ npm install @openapitools/openapi-generator-cli -g
2222
To install a specific version of the tool, pass the version during installation:
2323
<!-- RELEASE_VERSION -->
2424
```bash
25-
openapi-generator-cli version-manager set 7.12.0
25+
openapi-generator-cli version-manager set 7.14.0
2626
```
2727
<!-- /RELEASE_VERSION -->
2828
To install the tool as a dev dependency in your current project:
@@ -119,18 +119,18 @@ docker run --rm \
119119
<!-- RELEASE_VERSION -->
120120
If you're looking for the latest stable version, you can grab it directly from Maven.org (Java 11 runtime at a minimum):
121121

122-
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar`
122+
JAR location: `https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar`
123123

124124
For **Mac/Linux** users:
125125

126126
```bash
127-
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar -O openapi-generator-cli.jar
127+
wget https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar -O openapi-generator-cli.jar
128128
```
129129

130130
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.
131131

132132
```powershell
133-
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.12.0/openapi-generator-cli-7.12.0.jar
133+
Invoke-WebRequest -OutFile openapi-generator-cli.jar https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/7.14.0/openapi-generator-cli-7.14.0.jar
134134
```
135135
<!-- /RELEASE_VERSION -->
136136

docs/plugins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Add to your `build->plugins` section (default phase is `generate-sources` phase)
1616
<plugin>
1717
<groupId>org.openapitools</groupId>
1818
<artifactId>openapi-generator-maven-plugin</artifactId>
19-
<version>7.12.0</version>
19+
<version>7.14.0</version>
2020
<executions>
2121
<execution>
2222
<goals>

modules/openapi-generator-cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
66
<!-- RELEASE_VERSION -->
7-
<version>7.14.0</version>
7+
<version>7.15.0-SNAPSHOT</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>

modules/openapi-generator-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<artifactId>openapi-generator-project</artifactId>
77
<groupId>org.openapitools</groupId>
88
<!-- RELEASE_VERSION -->
9-
<version>7.14.0</version>
9+
<version>7.15.0-SNAPSHOT</version>
1010
<!-- /RELEASE_VERSION -->
1111
<relativePath>../../pom.xml</relativePath>
1212
</parent>

modules/openapi-generator-gradle-plugin/README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ task validateGoodSpec(type: org.openapitools.generator.gradle.plugin.tasks.Valid
9797
[source,group]
9898
----
9999
plugins {
100-
id "org.openapi.generator" version "7.12.0"
100+
id "org.openapi.generator" version "7.14.0"
101101
}
102102
----
103103

@@ -113,7 +113,7 @@ buildscript {
113113
// url "https://plugins.gradle.org/m2/"
114114
}
115115
dependencies {
116-
classpath "org.openapitools:openapi-generator-gradle-plugin:7.10.0"
116+
classpath "org.openapitools:openapi-generator-gradle-plugin:7.14.0"
117117
}
118118
}
119119
@@ -759,7 +759,7 @@ buildscript {
759759
}
760760
dependencies {
761761
classpath 'com.android.tools.build:gradle:3.2.1'
762-
classpath('org.openapitools:openapi-generator-gradle-plugin:7.10.0') {
762+
classpath('org.openapitools:openapi-generator-gradle-plugin:7.14.0') {
763763
exclude group: 'com.google.guava'
764764
}
765765
}

modules/openapi-generator-gradle-plugin/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.14.0
2+
openApiGeneratorVersion=7.15.0-SNAPSHOT
33
# /RELEASE_VERSION
44

55
# BEGIN placeholders

modules/openapi-generator-gradle-plugin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>org.openapitools</groupId>
55
<artifactId>openapi-generator-project</artifactId>
66
<!-- RELEASE_VERSION -->
7-
<version>7.14.0</version>
7+
<version>7.15.0-SNAPSHOT</version>
88
<!-- /RELEASE_VERSION -->
99
<relativePath>../../pom.xml</relativePath>
1010
</parent>

modules/openapi-generator-gradle-plugin/samples/local-spec/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ gradle generateGoWithInvalidSpec # expected outcome: BUILD FAILED
1919
The samples can be tested against other versions of the plugin using the `openApiGeneratorVersion` property. For example:
2020

2121
```bash
22-
gradle -PopenApiGeneratorVersion=7.12.0 openApiValidate
22+
gradle -PopenApiGeneratorVersion=7.14.0 openApiValidate
2323
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# RELEASE_VERSION
2-
openApiGeneratorVersion=7.14.0
2+
openApiGeneratorVersion=7.15.0-SNAPSHOT
33
# /RELEASE_VERSION

0 commit comments

Comments
 (0)