Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit f4f9e2a

Browse files
authored
Update readme (#4)
* update readme * update raedme * update links * clean up samples * clean up configs * run ./bin/utils/ensure-up-to-date in circlecii * update pr, issue template * skip python-prior test * fix typo * comment out meta codegen
1 parent 3a901a6 commit f4f9e2a

File tree

30,032 files changed

+139
-3577972
lines changed

Some content is hidden

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

30,032 files changed

+139
-3577972
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ assignees: ''
1111

1212
- [ ] Have you provided a full/minimal spec to reproduce the issue?
1313
- [ ] Have you validated the input using an OpenAPI validator ([example](https://apidevtools.org/swagger-parser/online/))?
14-
- [ ] Have you [tested with the latest master](https://github.com/OpenAPITools/openapi-generator/wiki/FAQ#how-to-test-with-the-latest-master-of-openapi-generator) to confirm the issue still exists?
14+
- [ ] Have you tested with the latest master to confirm the issue still exists?
1515
- [ ] Have you searched for related issues/PRs?
1616
- [ ] What's the actual output vs expected output?
17-
- [ ] [Optional] Sponsorship to speed up the bug fix or feature request ([example](https://github.com/OpenAPITools/openapi-generator/issues/6178))
17+
- [ ] [Optional] Sponsorship to speed up the bug fix or feature request
1818

1919
<!--
2020
Please follow the issue template below for bug reports.
21-
Also please indicate in the issue title which language/library is concerned. Eg: [BUG][JAVA] Bug generating foo with bar
21+
Also please indicate in the issue title which language/library is concerned. Eg: [BUG][python] Bug generating foo with bar
2222
-->
2323

2424
##### Description
2525

2626
<!-- describe what is the question, suggestion or issue and why this is a problem for you. -->
2727

28-
##### openapi-generator version
28+
##### openapi-json-schema-generator version
2929

30-
<!-- which version of openapi-generator are you using, is it a regression? -->
30+
<!-- which version of openapi-json-schema-generator are you using, is it a regression? -->
3131

3232
##### OpenAPI declaration file content or url
3333

@@ -50,7 +50,7 @@ link it here.
5050
<!--
5151
Prefer CLI steps, including the language, libraries and various options.
5252
Providing config-based settings allows for simpler testing across CLI and plugins.
53-
For examples, see https://github.com/OpenAPITools/openapi-generator/tree/master/bin/configs
53+
For examples, see https://github.com/OpenAPITools/openapi-json-schema-generator/tree/master/bin/configs
5454
-->
5555

5656
##### Steps to reproduce
@@ -59,7 +59,7 @@ link it here.
5959

6060
##### Related issues/PRs
6161

62-
<!-- has a similar issue/PR been reported/opened before? Please do a search in https://github.com/openapitools/openapi-generator/issues?utf8=%E2%9C%93&q=is%3Aissue%20 -->
62+
<!-- has a similar issue/PR been reported/opened before? Please do a search in https://github.com/openapitools/openapi-json-schema-generator/issues?utf8=%E2%9C%93&q=is%3Aissue%20 -->
6363

6464
##### Suggest a fix
6565

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<!-- Please check the completed items below -->
44
### PR checklist
55

6-
- [ ] Read the [contribution guidelines](https://github.com/openapitools/openapi-generator/blob/master/CONTRIBUTING.md).
6+
- [ ] Read the [contribution guidelines](https://github.com/openapitools/openapi-json-schema-generator/blob/master/CONTRIBUTING.md).
77
- [ ] Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community.
8-
- [ ] Run the following to [build the project](https://github.com/OpenAPITools/openapi-generator#14---build-projects) and update samples:
8+
- [ ] Run the following to [build the project](https://github.com/OpenAPITools/openapi-json-schema-generator#14---build-projects) and update samples:
99
```
1010
./mvnw clean package
1111
./bin/generate-samples.sh
@@ -14,7 +14,5 @@
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.
17-
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*`.
17+
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/python*`.
1818
For Windows users, please run the script in [Git BASH](https://gitforwindows.org/).
19-
- [ ] File the PR against the [correct branch](https://github.com/OpenAPITools/openapi-generator/wiki/Git-Branches): `master` (6.1.0) (minor release - breaking changes with fallbacks), `7.0.x` (breaking changes without fallbacks)
20-
- [ ] 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.

CI/circle_parallel.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ trap cleanup EXIT
2121
if [ "$NODE_INDEX" = "1" ]; then
2222
echo "Running node $NODE_INDEX"
2323

24+
./bin/utils/ensure-up-to-date
25+
2426
elif [ "$NODE_INDEX" = "2" ]; then
2527
echo "Running node $NODE_INDEX"
2628

@@ -52,14 +54,14 @@ elif [ "$NODE_INDEX" = "3" ]; then
5254
echo 'export NVM_DIR="/opt/circleci/.nvm"' >> $BASH_ENV
5355
echo "[ -s \"$NVM_DIR/nvm.sh\" ] && . \"$NVM_DIR/nvm.sh\"" >> $BASH_ENV
5456

55-
mvn --no-snapshot-updates --quiet verify -Psamples.circleci.node3 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
57+
# no longer testing python-prior
58+
#mvn --no-snapshot-updates --quiet verify -Psamples.circleci.node3 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
5659

5760
elif [ "$NODE_INDEX" = "4" ]; then
5861
echo "Running node $NODE_INDEX to test 'samples.circleci.node4' defined in pom.xml ..."
5962

6063
#mvn --no-snapshot-updates --quiet verify -Psamples.circleci.node4 -Dorg.slf4j.simpleLogger.defaultLogLevel=error
6164
(cd samples/openapi3/client/petstore/python && make test)
62-
(cd samples/openapi3/client/petstore/python-prior && make test)
6365
(cd samples/openapi3/client/3_0_3_unit_test/python && make test)
6466

6567
else

0 commit comments

Comments
 (0)