Skip to content

Commit ba3c13b

Browse files
authored
Merge pull request #159 from CiscoM31/refresh/11oct23
Refresh/11oct23: update from upstream
2 parents 15ab1d5 + 93ad234 commit ba3c13b

File tree

9,961 files changed

+575737
-103955
lines changed

Some content is hidden

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

9,961 files changed

+575737
-103955
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,8 @@ jobs:
204204
- command_build_and_test:
205205
nodeNo: "3"
206206
node4:
207-
docker:
208-
- image: fkrull/multi-python
207+
machine:
208+
image: ubuntu-2004:202201-02
209209
working_directory: ~/OpenAPITools/openapi-generator
210210
shell: /bin/bash --login
211211
environment:
@@ -215,7 +215,7 @@ jobs:
215215
DOCKER_CODEGEN_CLI_IMAGE_NAME: openapitools/openapi-generator-cli
216216
steps:
217217
- checkout
218-
- command_docker_build_and_test:
218+
- command_build_and_test:
219219
nodeNo: "4"
220220
workflows:
221221
version: 2

.github/.test/samples.json

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -319,12 +319,6 @@
319319
"Client: Java"
320320
]
321321
},
322-
{
323-
"input": "java-petstore-jersey1.sh",
324-
"matches": [
325-
"Client: Java"
326-
]
327-
},
328322
{
329323
"input": "java-petstore-jersey2-java6.sh",
330324
"matches": [
@@ -584,18 +578,6 @@
584578
"Server: Java"
585579
]
586580
},
587-
{
588-
"input": "jaxrs-jersey1-petstore-server.sh",
589-
"matches": [
590-
"Server: Java"
591-
]
592-
},
593-
{
594-
"input": "jaxrs-jersey1-usetags-petstore-server.sh",
595-
"matches": [
596-
"Server: Java"
597-
]
598-
},
599581
{
600582
"input": "jaxrs-petstore-server-datelib-j8.sh",
601583
"matches": [
@@ -800,12 +782,6 @@
800782
"Client: Python"
801783
]
802784
},
803-
{
804-
"input": "python-server-flask-petstore-python2.sh",
805-
"matches": [
806-
"Server: Python"
807-
]
808-
},
809785
{
810786
"input": "python-server-flask-petstore.sh",
811787
"matches": [

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,13 @@
88
- [ ] Run the following to [build the project](https://github.com/OpenAPITools/openapi-generator#14---build-projects) and update samples:
99
```
1010
./mvnw clean package
11-
./bin/generate-samples.sh
11+
./bin/generate-samples.sh ./bin/configs/*.yaml
1212
./bin/utils/export_docs_generators.sh
1313
```
1414
Commit all changed files.
1515
This is important, as CI jobs will verify _all_ generator outputs of your HEAD commit as it would merge with master.
1616
These must match the expectations made by your contribution.
1717
You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example `./bin/generate-samples.sh bin/configs/java*`.
1818
For Windows users, please run the script in [Git BASH](https://gitforwindows.org/).
19-
- [ ] In case you are adding a new generator, run the following additional script :
20-
```
21-
./bin/utils/ensure-up-to-date
22-
```
23-
Commit all changed files.
24-
- [ ] File the PR against the [correct branch](https://github.com/OpenAPITools/openapi-generator/wiki/Git-Branches): `master` (6.3.0) (minor release - breaking changes with fallbacks), `7.0.x` (breaking changes without fallbacks)
19+
- [ ] File the PR against the [correct branch](https://github.com/OpenAPITools/openapi-generator/wiki/Git-Branches): `master` (upcoming 7.1.0 minor release - breaking changes with fallbacks), `8.0.x` (breaking changes without fallbacks)
2520
- [ ] If your PR is targeting a particular programming language, @mention the [technical committee](https://github.com/openapitools/openapi-generator/#62---openapi-generator-technical-committee) members, so they are more likely to review the pull request.

.github/workflows/docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
runs-on: ubuntu-latest
2222
steps:
2323
- name: Check out code
24-
uses: actions/checkout@v3
24+
uses: actions/checkout@v4
2525

2626
- name: Test run-in-docker.sh
2727
shell: bash

.github/workflows/gradle-plugin-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Gradle plugin tests
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up JDK 11
1818
uses: actions/setup-java@v3
1919
with:

.github/workflows/gradle-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- samples/client/petstore/java/okhttp-gson-group-parameter
3131
- samples/client/petstore/java/webclient-swagger2
3232
steps:
33-
- uses: actions/checkout@v3
33+
- uses: actions/checkout@v4
3434
- uses: actions/setup-java@v3
3535
with:
3636
distribution: 'temurin'

.github/workflows/linux.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
os: [ubuntu-latest]
2121
steps:
2222
- name: Check out code
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424

2525
- name: Set up JDK ${{ matrix.java }}
2626
uses: actions/setup-java@v3
@@ -45,7 +45,7 @@ jobs:
4545
${{ runner.os }}-gradle-
4646
4747
- name: Setup Maven
48-
uses: s4u/setup-maven-action@v1.8.0
48+
uses: s4u/setup-maven-action@v1.10.0
4949
with:
5050
java-version: ${{ matrix.java }}
5151
maven-version: 3.8.8
@@ -85,9 +85,9 @@ jobs:
8585
os: [ubuntu-latest]
8686
steps:
8787
- name: Check out code
88-
uses: actions/checkout@v3
88+
uses: actions/checkout@v4
8989
- name: Setup Maven
90-
uses: s4u/setup-maven-action@v1.8.0
90+
uses: s4u/setup-maven-action@v1.10.0
9191
with:
9292
java-version: 11
9393
maven-version: 3.8.8

.github/workflows/maven-plugin-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Maven plugin tests
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v3
16+
- uses: actions/checkout@v4
1717
- name: Set up JDK 11
1818
uses: actions/setup-java@v3
1919
with:

.github/workflows/misc-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Misc tests
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: ruby/setup-ruby@v1
2020
with:
2121
ruby-version: '2.6'

.github/workflows/openapi-generator.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: Build
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- name: Set up JDK 11
2020
uses: actions/setup-java@v3
2121
with:
@@ -53,7 +53,7 @@ jobs:
5353
needs:
5454
- build
5555
steps:
56-
- uses: actions/checkout@v3
56+
- uses: actions/checkout@v4
5757
- name: Set up JDK 11
5858
uses: actions/setup-java@v3
5959
with:
@@ -90,7 +90,7 @@ jobs:
9090
needs:
9191
- build
9292
steps:
93-
- uses: actions/checkout@v3
93+
- uses: actions/checkout@v4
9494
- name: Set up JDK 11
9595
uses: actions/setup-java@v3
9696
with:
@@ -129,7 +129,7 @@ jobs:
129129
- build
130130
runs-on: ubuntu-latest
131131
steps:
132-
- uses: actions/checkout@v3
132+
- uses: actions/checkout@v4
133133
- name: Set up JDK 11
134134
uses: actions/setup-java@v3
135135
with:

0 commit comments

Comments
 (0)