Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ability to append ServerHttpRequest for kotlin-spring generator #17158

Merged
merged 2 commits into from
Jan 10, 2024
Merged

Conversation

Rugal
Copy link
Contributor

@Rugal Rugal commented Nov 21, 2023

Hi

I am creating kotlin-spring based spring-webflux application. I would like to access request header, but there is no way to achieve without adding function parameter. After checking all the available configuration and option, I found no feasible way to append an additional ServerHttpRequest to request handler, hence to add made this simple change in order to resolve the requirement.

I Would like to discuss with people who interested in having request parameter in method.
Since the one I append here is for spring webflux and reactive, therefore I put ServerHttpRequest which is a reactive only interface. Should I take spring mvc into consideration so that in that case the request object type should be HttpServletRequest?

PR checklist

  • Read the contribution guidelines.
  • 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.
  • Run the following to build the project and update samples:
    ./mvnw clean package 
    ./bin/generate-samples.sh ./bin/configs/*.yaml
    ./bin/utils/export_docs_generators.sh
    
    (For Windows users, please run the script in Git BASH)
    Commit all changed files.
    This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master.
    These must match the expectations made by your contribution.
    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*.
    IMPORTANT: Do NOT purge/delete any folders/files (e.g. tests) when regenerating the samples as manually written tests may be removed.
  • File the PR against the correct branch: master (upcoming 7.1.0 minor release - breaking changes with fallbacks), 8.0.x (breaking changes without fallbacks)
  • If your PR is targeting a particular programming language, @mention the @dr4ke616 @jimschubert
    members, so they are more likely to review the pull request.

@wing328
Copy link
Member

wing328 commented Nov 22, 2023

thanks for the PR. please follow step 3 to update the samples and the doc.

@Rugal
Copy link
Contributor Author

Rugal commented Nov 23, 2023

thanks for the PR. please follow step 3 to update the samples and the doc.

step 3 is completed and doc is updated

@wing328 wing328 added this to the 7.2.0 milestone Nov 30, 2023
@wing328
Copy link
Member

wing328 commented Nov 30, 2023

Hi @Rugal thanks again for the PR.

can you please add a config to enable/test this new option similar to ./bin/configs/kotlin-spring-boot-delegate.yaml ?

commit the new samples and then update .github/workflows/samples-kotlin-server.yaml with the new sample folder so that CI can test this feature moving forward?

@wing328
Copy link
Member

wing328 commented Dec 11, 2023

I added the new sample files via 45f8acc

Let's see if all the tests pass

@wing328
Copy link
Member

wing328 commented Dec 11, 2023

the CI tests for the new sample failed: https://github.com/OpenAPITools/openapi-generator/actions/runs/7162598645/job/19499791008?pr=17158

can you please take a look when you've time?

@Rugal
Copy link
Contributor Author

Rugal commented Dec 11, 2023

Will do once get some spare time, thanks for letting me know.
I realize that the generated code does not contain expected ServerHttpRequest parameter. Need to look into reason before pushing the test sample.

@wing328
Copy link
Member

wing328 commented Dec 11, 2023

take your time. let me know if you need any help.

thanks again for the PR.

@Rugal
Copy link
Contributor Author

Rugal commented Dec 11, 2023

Updated. Now the generated sample contains expected ServerHttpRequest parameter.

@Rugal
Copy link
Contributor Author

Rugal commented Dec 11, 2023

For context and possible discussion detail @wing328 , please refer to the PR brief where I updated with some of my thoughts.

@Rugal Rugal requested a review from wing328 December 12, 2023 11:09
@wing328 wing328 removed this from the 7.2.0 milestone Dec 22, 2023
@wing328
Copy link
Member

wing328 commented Jan 9, 2024

https://github.com/OpenAPITools/openapi-generator/actions/runs/7181198352/job/20313881200?pr=17158

please update the samples and then i'll merge. thanks again for the PR.

@wing328 wing328 merged commit 1e0e8fe into OpenAPITools:master Jan 10, 2024
27 of 28 checks passed
@wing328
Copy link
Member

wing328 commented Jan 10, 2024

merged. will update the samples with another commit.

@wing328
Copy link
Member

wing328 commented Jan 15, 2024

Hi @Rugal the CI tests failed: https://github.com/OpenAPITools/openapi-generator/actions/runs/7526797968/job/20485651712

can you please take a look when you've time?

@Rugal
Copy link
Contributor Author

Rugal commented Jan 16, 2024

Hi @Rugal the CI tests failed: https://github.com/OpenAPITools/openapi-generator/actions/runs/7526797968/job/20485651712

can you please take a look when you've time?

Sure, will do it ASAP

@Rugal
Copy link
Contributor Author

Rugal commented Jan 16, 2024

Hi @wing328,

A fix is ready here

wing328 pushed a commit that referenced this pull request Jan 16, 2024
@defaultbranch
Copy link

defaultbranch commented Jan 17, 2024

@Rugal Thanks for your efforts!

Just today (using openapi-generator-maven-plugin:7.2.0), I discovered that there is a kotlin-spring generator, and after using the spring generator for >1 year, I thought I'd give kotlin-spring a try (my motivation is explained further below).

I have a comment:

  • instead of ServerHttpRequest, I was so far using ServerWebExchange provided by the spring generator

and two questions:

  1. why do you go for ServerHttpRequest instead of ServerWebExchange? Wouldn't the later be closer to what the spring generator already provides?
  2. (assuming that both ServerHttpRequest and ServerWebExchange serve a similar purpose, so the difference does not matter much), what is the status of your <appendRequestToHandler>, what are the remaining obstacles to get this functionality into the kotlin-spring generator?

My motivation is, I want to use the option <reactive>true</reactive>, but so far (with the spring generator) this meant Project Reactor which is great but only works at the library/framework level (it has to cope with the limitations of the Java language); Kotlin supports similar functionality at compiler level (thanks to its co-routines), which simplifies the code a great deal; and I was already happy to see that the generator option <reactive>true</reactive> is actually the same for the spring (Java with Project Reactor) and kotlin-spring (Kotlin co-routines). Today I tried the kotlin-spring generator (instead of spring generator) (via openapi-generator-maven-plugin:7.2.0) for the first time, and I figured out that the option <appendRequestToHandler>true</appendRequestToHandler> does nothing much yet, so far it only adds an import statement to the generated code.

@Rugal
Copy link
Contributor Author

Rugal commented Jan 18, 2024

Hi @defaultbranch ,

My initial motivation for this change is that I would like to access request header information in handler/operation. Because I was using webflux, which is a reactive framework, while still want to be able to access request object.
After some search, I found ServerHttpRequest is quite a good fit for my need.
The appendRequestToHandler parameter should be able to generate an import, but also to append the ServerHttpRequest to method signature as well.
Your suggestion is great, I think we can replace the request with exchange, which contains both request and response.

@wing328 wing328 added this to the 7.3.0 milestone Feb 8, 2024
renovate bot added a commit to line/line-bot-sdk-java that referenced this pull request Feb 8, 2024
…v7.3.0 (#1245)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[org.openapitools:openapi-generator](https://togithub.com/openapitools/openapi-generator)
| `7.2.0` -> `7.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>openapitools/openapi-generator
(org.openapitools:openapi-generator)</summary>

###
[`v7.3.0`](https://togithub.com/OpenAPITools/openapi-generator/releases/tag/v7.3.0):
released

(release note below will be revised later)

##### What's Changed

- Prepare 7.3.0-SNAPSHOT by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17456](https://togithub.com/OpenAPITools/openapi-generator/pull/17456)
- Stop using internal variable from okhttp3 by
[@&#8203;noordawod](https://togithub.com/noordawod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17458](https://togithub.com/OpenAPITools/openapi-generator/pull/17458)
- \[Java RESTEasy client] updating test to use the Java RESTEasy echo
api client
([#&#8203;17367](https://togithub.com/openapitools/openapi-generator/issues/17367))
by [@&#8203;miladhub](https://togithub.com/miladhub) in
[https://github.com/OpenAPITools/openapi-generator/pull/17470](https://togithub.com/OpenAPITools/openapi-generator/pull/17470)
- Update README.md by [@&#8203;axshani](https://togithub.com/axshani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- Fix Kotlin templates to be compatible with Kotlin K2 compiler by
[@&#8203;rouazana](https://togithub.com/rouazana) in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- \[JaxRS] fix pojo equals by
[@&#8203;fizzet](https://togithub.com/fizzet) in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- Better Java RESTEasy Echo API client tests by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17473](https://togithub.com/OpenAPITools/openapi-generator/pull/17473)
- \[go]: Accept APIKey as string, byte array or stream using io.Reader
interface by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17432](https://togithub.com/OpenAPITools/openapi-generator/pull/17432)
- \[csharp]: Fixed the http signing issue for ECDSA key when API Key is
provided as string by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17459](https://togithub.com/OpenAPITools/openapi-generator/pull/17459)
- \[kotlin-client]\[jackson] Add support for unknown default enum value
by [@&#8203;ken-tunc](https://togithub.com/ken-tunc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- Fix decoding OpenAPIDateWithoutTime by
[@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- fix rendering of stars in README by
[@&#8203;individual-it](https://togithub.com/individual-it) in
[https://github.com/OpenAPITools/openapi-generator/pull/17477](https://togithub.com/OpenAPITools/openapi-generator/pull/17477)
- Added Christopher Queen Consulting to list of companies using the
generator by [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- Not throwing exception when ignore file exists by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17501](https://togithub.com/OpenAPITools/openapi-generator/pull/17501)
- \[bugfix]\[jaxrs]: fix compile error for jaxrs samples by
[@&#8203;Aliaksie](https://togithub.com/Aliaksie) in
[https://github.com/OpenAPITools/openapi-generator/pull/17479](https://togithub.com/OpenAPITools/openapi-generator/pull/17479)
- \[cpp-qt-client] Add cpp-qt-client technical committee to CODEOWNERS
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17481](https://togithub.com/OpenAPITools/openapi-generator/pull/17481)
- \[cpp-qt-client] Update minimum cmake version to 3.5 by
[@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17480](https://togithub.com/OpenAPITools/openapi-generator/pull/17480)
- Also escape '$' and '' in normal Kotlin strings, … by
[@&#8203;cureaid](https://togithub.com/cureaid) in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- python: simplify module imports by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17507](https://togithub.com/OpenAPITools/openapi-generator/pull/17507)
- BUG - PHP template - Configuration.mustache by
[@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- \[C]\[Client] Fix enum function names not matching headers in the
model… by [@&#8203;bookerdj](https://togithub.com/bookerdj) in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- \[resttemplate] rethrow original exception when retry limits exceeded
by [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- Remove optional path parameter in C# generichost template by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17525](https://togithub.com/OpenAPITools/openapi-generator/pull/17525)
- Use model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17490](https://togithub.com/OpenAPITools/openapi-generator/pull/17490)
- Add Alloy Automation as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17535](https://togithub.com/OpenAPITools/openapi-generator/pull/17535)
- Add a link to new youtube tutorial by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17536](https://togithub.com/OpenAPITools/openapi-generator/pull/17536)
- Add enum name mapping support to Ruby generators by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17537](https://togithub.com/OpenAPITools/openapi-generator/pull/17537)
- \[Ruby]\[client] Handle enums (and other scalars) in oneOf and anyOf
schemas by [@&#8203;armandmgt](https://togithub.com/armandmgt) in
[https://github.com/OpenAPITools/openapi-generator/pull/17515](https://togithub.com/OpenAPITools/openapi-generator/pull/17515)
- fix typo in javadoc in RestTemplate/ApiClient by
[@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- python: adjust basic typing information by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17511](https://togithub.com/OpenAPITools/openapi-generator/pull/17511)
- \[C]\[Client] Update the API doc after PR
[#&#8203;17179](https://togithub.com/openapitools/openapi-generator/issues/17179)
by [@&#8203;ityuhui](https://togithub.com/ityuhui) in
[https://github.com/OpenAPITools/openapi-generator/pull/17540](https://togithub.com/OpenAPITools/openapi-generator/pull/17540)
- Update runalloy logo and links by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17559](https://togithub.com/OpenAPITools/openapi-generator/pull/17559)
- Fix description in allOf with single item by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17560](https://togithub.com/OpenAPITools/openapi-generator/pull/17560)
- \[Rust] \[Server] New generator bases on Axum by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- \[java]\[native] Fix ObjectMapper deprecation warnings by
[@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- Bump follow-redirects from 1.15.2 to 1.15.4 in /website by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17562](https://togithub.com/OpenAPITools/openapi-generator/pull/17562)
- python: enable more mypy checks 1/n by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17556](https://togithub.com/OpenAPITools/openapi-generator/pull/17556)
- Fix spring generator dto annotations for xml support by
[@&#8203;tomyy](https://togithub.com/tomyy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- \[Rust] \[Axum] Remove redundant code in rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17570](https://togithub.com/OpenAPITools/openapi-generator/pull/17570)
- fix(go-server): ensure original filename can be deduced from tmp file
by [@&#8203;ErikBooijMB](https://togithub.com/ErikBooijMB) in
[https://github.com/OpenAPITools/openapi-generator/pull/17416](https://togithub.com/OpenAPITools/openapi-generator/pull/17416)
- Generated methode ApiClient.parameterToPairs failed to handle empty
collections
[#&#8203;17460](https://togithub.com/openapitools/openapi-generator/issues/17460)
by [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- fix: ExampleGenerator correctly generates allOf composed schemas by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- Add ability to append ServerHttpRequest for kotlin-spring generator by
[@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- Add tags on operation for template kotlin-spring by
[@&#8203;pkernevez](https://togithub.com/pkernevez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- fix: ExampleGenerator correctly produces YYYY-MM-dd format for `date`
with examples by [@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17495](https://togithub.com/OpenAPITools/openapi-generator/pull/17495)
- \[CSharp] feat!: add useDateOnly flag by
[@&#8203;Anakael](https://togithub.com/Anakael) in
[https://github.com/OpenAPITools/openapi-generator/pull/17471](https://togithub.com/OpenAPITools/openapi-generator/pull/17471)
- Implement scala http4s server generator by
[@&#8203;mikkka](https://togithub.com/mikkka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- \[BUG]\[Kotlin] Add default values to optional parameters for
jvm-spring-webclient and jvm-spring-restclient by
[@&#8203;MatthiasGabriel](https://togithub.com/MatthiasGabriel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17393](https://togithub.com/OpenAPITools/openapi-generator/pull/17393)
- feat: using Qt with 3rd Party Signals and Slots. Replace signals,slots
and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT by
[@&#8203;myml](https://togithub.com/myml) in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- \[kotlin-client]\[jvm-spring-\*] Fixed URL encoding by
[@&#8203;stefankoppier](https://togithub.com/stefankoppier) in
[https://github.com/OpenAPITools/openapi-generator/pull/17493](https://togithub.com/OpenAPITools/openapi-generator/pull/17493)
- \[BUG]\[java]\[resttemplate] Fix NPE when query param with value null
is exploded by [@&#8203;jorgerod](https://togithub.com/jorgerod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17568](https://togithub.com/OpenAPITools/openapi-generator/pull/17568)
- \[Rust] \[Axum] Deduplicate code from rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17588](https://togithub.com/OpenAPITools/openapi-generator/pull/17588)
- remove internal ISO8601Utils dependency by
[@&#8203;ChaosMarc](https://togithub.com/ChaosMarc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17052](https://togithub.com/OpenAPITools/openapi-generator/pull/17052)
- Fix flattenPath() in InlineModelResolver: use List instead of Map by
[@&#8203;vlsergey](https://togithub.com/vlsergey) in
[https://github.com/OpenAPITools/openapi-generator/pull/17579](https://togithub.com/OpenAPITools/openapi-generator/pull/17579)
- \[Rust] \[Axum] Format ops-v3 sample by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17599](https://togithub.com/OpenAPITools/openapi-generator/pull/17599)
- Add copyright note to rust axum server codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17598](https://togithub.com/OpenAPITools/openapi-generator/pull/17598)
- \[JAVA] - fix BUG 14233 code gen support multiple accept headers where
one is default json/application by
[@&#8203;Breus](https://togithub.com/Breus) in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- \[Python] Handle nullable list items by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17594](https://togithub.com/OpenAPITools/openapi-generator/pull/17594)
- fix: DefaultCodegen now generates an exemple for each status codes by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17603](https://togithub.com/OpenAPITools/openapi-generator/pull/17603)
- Fix parameters_to_url_query doesn't properly convert lists to string
by [@&#8203;rshacham](https://togithub.com/rshacham) in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- \[Python] Handle nullable dictionary values by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17605](https://togithub.com/OpenAPITools/openapi-generator/pull/17605)
- \[Java] remove jersey1 template files by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17607](https://togithub.com/OpenAPITools/openapi-generator/pull/17607)
- \[OAS 3.1] Fix null type check in normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17609](https://togithub.com/OpenAPITools/openapi-generator/pull/17609)
- bug fix: breaking dependency of flask server gen by
[@&#8203;cherusk](https://togithub.com/cherusk) in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- Fix Go generation of `type: object` inside anyOf by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- \[Go-Server] Use ParseQuery For Parsing Query Parameters by
[@&#8203;gonzogomez](https://togithub.com/gonzogomez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17585](https://togithub.com/OpenAPITools/openapi-generator/pull/17585)
- Add Carksberg Group to the user list by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17615](https://togithub.com/OpenAPITools/openapi-generator/pull/17615)
- kotlin-server: Add support for Javalin by
[@&#8203;dennisameling](https://togithub.com/dennisameling) in
[https://github.com/OpenAPITools/openapi-generator/pull/17596](https://togithub.com/OpenAPITools/openapi-generator/pull/17596)
- \[python]\[client] Clean up samples and CI by
[@&#8203;robertschweizer](https://togithub.com/robertschweizer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17509](https://togithub.com/OpenAPITools/openapi-generator/pull/17509)
- feat: add `java-wiremock` generator by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17614](https://togithub.com/OpenAPITools/openapi-generator/pull/17614)
- fix(typescript-axios): fix error if a parameter called 'index' exists
by [@&#8203;goatwu1993](https://togithub.com/goatwu1993) in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- Able to generate within parameter
[#&#8203;17158](https://togithub.com/openapitools/openapi-generator/issues/17158)
by [@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17623](https://togithub.com/OpenAPITools/openapi-generator/pull/17623)
- Added missing copied properties from CodegenOperation by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- \[Rust] \[Axum] Fix clippy warning by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17637](https://togithub.com/OpenAPITools/openapi-generator/pull/17637)
- Bump actions/cache from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17636](https://togithub.com/OpenAPITools/openapi-generator/pull/17636)
- R echo client tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17629](https://togithub.com/OpenAPITools/openapi-generator/pull/17629)
- Bugfix/7720 typescript fetch support is response optional by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17635](https://togithub.com/OpenAPITools/openapi-generator/pull/17635)
- \[dart-dio] includeIfNull: truefalse bugfix by
[@&#8203;vasilich6107](https://togithub.com/vasilich6107) in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- \[Perl] Update \_test.mustache templates to use done_testing by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- Add any type support in Perl client generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17654](https://togithub.com/OpenAPITools/openapi-generator/pull/17654)
- Support x-internal in models and operations by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17639](https://togithub.com/OpenAPITools/openapi-generator/pull/17639)
- Add auto-generated cpanfile in Perl client by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17662](https://togithub.com/OpenAPITools/openapi-generator/pull/17662)
- Remove isAnyTypeSchema in default codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17663](https://togithub.com/OpenAPITools/openapi-generator/pull/17663)
- \[jaxrs-spec] Addinfo contact url to the generated OpenAPIDefinition
by [@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- feat(perl): Update agent to use version constant by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17665](https://togithub.com/OpenAPITools/openapi-generator/pull/17665)
- \[kotlin-client]\[jvm-spring-\*] Fix runtime error in endpoints of
type Unit by [@&#8203;stefankoppier](https://togithub.com/stefankoppier)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17664](https://togithub.com/OpenAPITools/openapi-generator/pull/17664)
- Remove outdated files in perl petstore cilents by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17668](https://togithub.com/OpenAPITools/openapi-generator/pull/17668)
- Test perl petstore client in CircleCI by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17669](https://togithub.com/OpenAPITools/openapi-generator/pull/17669)
- \[Bash] Allow non-JSON request body payloads by
[@&#8203;mHejlesen](https://togithub.com/mHejlesen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
- Update perl tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17670](https://togithub.com/OpenAPITools/openapi-generator/pull/17670)
- Fix typo in KotlinClientCodegen.java user-visible error message by
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- Pass ObjectMapper to JacksonConverterFactory by
[@&#8203;yonatankarp](https://togithub.com/yonatankarp) in
[https://github.com/OpenAPITools/openapi-generator/pull/17673](https://togithub.com/OpenAPITools/openapi-generator/pull/17673)
- Fix map and free form object detection issue in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17624](https://togithub.com/OpenAPITools/openapi-generator/pull/17624)
- support binary response for R api client by
[@&#8203;mattpollock](https://togithub.com/mattpollock) in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- fix an issue the parameters_to_url_query method would throw an error
if the input was of type List\[int]
[BUG#15788](https://togithub.com/BUG/openapi-generator/issues/15788) by
[@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- Include support to Mojolicious relaxed placeholders parsing path
parameters by [@&#8203;atl3tico](https://togithub.com/atl3tico) in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- Fix allOf with a single item in inline model resolver by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17683](https://togithub.com/OpenAPITools/openapi-generator/pull/17683)
- Add tests for query parameters (array of integer/string) by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17686](https://togithub.com/OpenAPITools/openapi-generator/pull/17686)
- Fix missing import in ruby faraday test by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17692](https://togithub.com/OpenAPITools/openapi-generator/pull/17692)
- Improvements on scala http4s server generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17693](https://togithub.com/OpenAPITools/openapi-generator/pull/17693)
- \[Rust]\[client] Fix issue
[#&#8203;16975](https://togithub.com/openapitools/openapi-generator/issues/16975)
- generated type not being converted to string by
[@&#8203;j-szulc](https://togithub.com/j-szulc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- When config option interfaceOnly is true, the class RestApplication
will be generated as well by
[@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17646](https://togithub.com/OpenAPITools/openapi-generator/pull/17646)
- Add SSS Twitter to bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17698](https://togithub.com/OpenAPITools/openapi-generator/pull/17698)
- feat(typescript-angular): add support for Angular V17 by
[@&#8203;alethyst](https://togithub.com/alethyst) in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- Bump gradle/gradle-build-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17720](https://togithub.com/OpenAPITools/openapi-generator/pull/17720)
- Bump eskatos/gradle-command-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17719](https://togithub.com/OpenAPITools/openapi-generator/pull/17719)
- \[cpp-ue4] Fix generated code not compiling when using unique array
items by [@&#8203;roseatromero](https://togithub.com/roseatromero) in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- Add JavaDoc to api and apiInterface templates for the JavaJaxRS spec
generator by [@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- \[BUG] \[Java] Remove deprecation and serial warnings in
ApiException.java and JSON.java by
[@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17716](https://togithub.com/OpenAPITools/openapi-generator/pull/17716)
- add lombok model support on spring by
[@&#8203;dabdirb](https://togithub.com/dabdirb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17622](https://togithub.com/OpenAPITools/openapi-generator/pull/17622)
- \[jaxrs]\[cxf-cdi] make sure the imports are present for enum, if
using jackson by [@&#8203;selliera](https://togithub.com/selliera) in
[https://github.com/OpenAPITools/openapi-generator/pull/15123](https://togithub.com/OpenAPITools/openapi-generator/pull/15123)
- \[JavaSpring] Add Javadoc to enum (x-enum-descriptions) by
[@&#8203;tobi-laa](https://togithub.com/tobi-laa) in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- \[java] fix Use jackson-jakarta-rs-json-provider when useJakartaEe is
true by [@&#8203;dmbakker](https://togithub.com/dmbakker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- fix: ensure models that have variables that contain a complexType of
`time.Time` import the `time` module by
[@&#8203;madpah](https://togithub.com/madpah) in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- use map/array model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17612](https://togithub.com/OpenAPITools/openapi-generator/pull/17612)
- Fix null schema check for array of string in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17728](https://togithub.com/OpenAPITools/openapi-generator/pull/17728)
- Add rule to remove x-internal in openapi normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17734](https://togithub.com/OpenAPITools/openapi-generator/pull/17734)
- corrected handling of "isPrimitiveType" for FormParameters by
[@&#8203;aronkankel](https://togithub.com/aronkankel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- revert swagger-parser upgrade by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17657](https://togithub.com/OpenAPITools/openapi-generator/pull/17657)
- \[python-fastapi] Ensure path param is ... instead of None by
[@&#8203;tjikkun](https://togithub.com/tjikkun) in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- \[scala-sttp]: fix for missing EnumNameSerializer for inner enum
definitions by [@&#8203;hopi](https://togithub.com/hopi) in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- Update model_generic.mustache, tuple notation breaks when there is
only one element in the tuple by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17749](https://togithub.com/OpenAPITools/openapi-generator/pull/17749)
- Fix require var logging, don't matchGenerated if allOf skipped by
[@&#8203;robstoll](https://togithub.com/robstoll) in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- Add operationId name mapping option by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17750](https://togithub.com/OpenAPITools/openapi-generator/pull/17750)
- Accept Promises for the apiKey configuration in the typescript-fetch
generator. by [@&#8203;jyasskin](https://togithub.com/jyasskin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- Allow using bearer auth in typescript-nestjs by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- fix typescript-nestjs services when using api_key authentication by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17708](https://togithub.com/OpenAPITools/openapi-generator/pull/17708)
- \[typescript-axios] Add any to index type when
additionalPropertiesIsAnyType is true
([#&#8203;16494](https://togithub.com/openapitools/openapi-generator/issues/16494))
by [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- Add Svix as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17783](https://togithub.com/OpenAPITools/openapi-generator/pull/17783)
- Fix Python codegen in specific additionalProperties case. by
[@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm) in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- Add sample spec to catch external file reference issues in
swagger-parser by [@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17773](https://togithub.com/OpenAPITools/openapi-generator/pull/17773)
- \[jax-rs]\[jersey3] Fix missing SecurityRequirement by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17797](https://togithub.com/OpenAPITools/openapi-generator/pull/17797)
- \[PHP] update dependencies for php-dt generated code by
[@&#8203;Articus](https://togithub.com/Articus) in
[https://github.com/OpenAPITools/openapi-generator/pull/17796](https://togithub.com/OpenAPITools/openapi-generator/pull/17796)
- fix: update dead link to TypeScript docs by
[@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- \[BUG]\[Javascript] - validateJSON not working on value 0 by
[@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- \[Go] fix unused bytes import for anyOf and oneOf models by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17775](https://togithub.com/OpenAPITools/openapi-generator/pull/17775)
- \[Java] Fix default values of array-type parameters in a referenced
file by [@&#8203;kota65535](https://togithub.com/kota65535) in
[https://github.com/OpenAPITools/openapi-generator/pull/17779](https://togithub.com/OpenAPITools/openapi-generator/pull/17779)
- \[PowerShell] Support multiple types in Accept header by
[@&#8203;condorcorde](https://togithub.com/condorcorde) in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- \[JAVA]\[bugfix] Fix
[OpenAPITools#17757](https://togithub.com/OpenAPITools/openapi-generator/issues/17757)
- Include minimum and maximum values in arrays… by
[@&#8203;MarBode](https://togithub.com/MarBode) in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- Fix parent schema look up using schema name by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17807](https://togithub.com/OpenAPITools/openapi-generator/pull/17807)
- \[cpp-qt-client] Fix CMakeLists.txt.mustache and CMakeLists.txt for
Qt5 (fix
[#&#8203;17712](https://togithub.com/openapitools/openapi-generator/issues/17712))
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17721](https://togithub.com/OpenAPITools/openapi-generator/pull/17721)
- \[Python] deserialize enum json response (fix
[#&#8203;17789](https://togithub.com/openapitools/openapi-generator/issues/17789))
by [@&#8203;joeka](https://togithub.com/joeka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- Fix TS Axios echo client github workflow by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17815](https://togithub.com/OpenAPITools/openapi-generator/pull/17815)
- \[java] fix for json arrays by
[@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- \[JAVA]\[bugfix] Add dependency for jakarta-validation-api and
hibernate-validator to pom.xml for Java Resttemplate client by
[@&#8203;nathcouret](https://togithub.com/nathcouret) in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- \[Go] Fix panic from marshalling Nil NullableTime by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17772](https://togithub.com/OpenAPITools/openapi-generator/pull/17772)
- include API information in RestConfiguration Template by
[@&#8203;azplanlos](https://togithub.com/azplanlos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- \[go-gin-server] add a new function to the router to pass the gin
context by [@&#8203;mfatihercik](https://togithub.com/mfatihercik) in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- \[cpp-qt-client] Extend the reserved keywords for Qt projects with the
following words: by
[@&#8203;martonmiklos](https://togithub.com/martonmiklos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)
- prepare 7.3.0-release by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17817](https://togithub.com/OpenAPITools/openapi-generator/pull/17817)

##### New Contributors

- [@&#8203;axshani](https://togithub.com/axshani) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- [@&#8203;rouazana](https://togithub.com/rouazana) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- [@&#8203;fizzet](https://togithub.com/fizzet) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- [@&#8203;ken-tunc](https://togithub.com/ken-tunc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- [@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- [@&#8203;cureaid](https://togithub.com/cureaid) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- [@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- [@&#8203;bookerdj](https://togithub.com/bookerdj) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- [@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- [@&#8203;linxGnu](https://togithub.com/linxGnu) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- [@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- [@&#8203;tomyy](https://togithub.com/tomyy) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- [@&#8203;acouvreur](https://togithub.com/acouvreur) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- [@&#8203;Rugal](https://togithub.com/Rugal) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- [@&#8203;pkernevez](https://togithub.com/pkernevez) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- [@&#8203;mikkka](https://togithub.com/mikkka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- [@&#8203;myml](https://togithub.com/myml) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- [@&#8203;Breus](https://togithub.com/Breus) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- [@&#8203;rshacham](https://togithub.com/rshacham) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- [@&#8203;cherusk](https://togithub.com/cherusk) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- [@&#8203;ashb](https://togithub.com/ashb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- [@&#8203;goatwu1993](https://togithub.com/goatwu1993) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- [@&#8203;sindremb](https://togithub.com/sindremb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- [@&#8203;vasilich6107](https://togithub.com/vasilich6107) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- [@&#8203;bmodotdev](https://togithub.com/bmodotdev) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- [@&#8203;verhagen](https://togithub.com/verhagen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- [@&#8203;mHejlesen](https://togithub.com/mHejlesen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
-
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- [@&#8203;mattpollock](https://togithub.com/mattpollock) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- [@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- [@&#8203;atl3tico](https://togithub.com/atl3tico) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- [@&#8203;j-szulc](https://togithub.com/j-szulc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- [@&#8203;alethyst](https://togithub.com/alethyst) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- [@&#8203;roseatromero](https://togithub.com/roseatromero) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- [@&#8203;ripdajacker](https://togithub.com/ripdajacker) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- [@&#8203;tobi-laa](https://togithub.com/tobi-laa) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- [@&#8203;dmbakker](https://togithub.com/dmbakker) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- [@&#8203;madpah](https://togithub.com/madpah) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- [@&#8203;aronkankel](https://togithub.com/aronkankel) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- [@&#8203;tjikkun](https://togithub.com/tjikkun) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- [@&#8203;hopi](https://togithub.com/hopi) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- [@&#8203;robstoll](https://togithub.com/robstoll) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- [@&#8203;jyasskin](https://togithub.com/jyasskin) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- [@&#8203;simhnna](https://togithub.com/simhnna) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- [@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- [@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- [@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- [@&#8203;condorcorde](https://togithub.com/condorcorde) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- [@&#8203;MarBode](https://togithub.com/MarBode) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- [@&#8203;joeka](https://togithub.com/joeka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- [@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- [@&#8203;nathcouret](https://togithub.com/nathcouret) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- [@&#8203;azplanlos](https://togithub.com/azplanlos) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- [@&#8203;mfatihercik](https://togithub.com/mfatihercik) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- [@&#8203;martonmiklos](https://togithub.com/martonmiklos) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)

**Full Changelog**:
https://github.com/OpenAPITools/openapi-generator/compare/v7.2.0...v7.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/line/line-bot-sdk-java).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to line/line-bot-sdk-python that referenced this pull request Feb 8, 2024
….3.0 (#598)

[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[org.openapitools:openapi-generator](https://togithub.com/openapitools/openapi-generator)
| `7.2.0` -> `7.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>openapitools/openapi-generator
(org.openapitools:openapi-generator)</summary>

###
[`v7.3.0`](https://togithub.com/OpenAPITools/openapi-generator/releases/tag/v7.3.0):
released

(release note below will be revised later)

##### What's Changed

- Prepare 7.3.0-SNAPSHOT by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17456](https://togithub.com/OpenAPITools/openapi-generator/pull/17456)
- Stop using internal variable from okhttp3 by
[@&#8203;noordawod](https://togithub.com/noordawod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17458](https://togithub.com/OpenAPITools/openapi-generator/pull/17458)
- \[Java RESTEasy client] updating test to use the Java RESTEasy echo
api client
([#&#8203;17367](https://togithub.com/openapitools/openapi-generator/issues/17367))
by [@&#8203;miladhub](https://togithub.com/miladhub) in
[https://github.com/OpenAPITools/openapi-generator/pull/17470](https://togithub.com/OpenAPITools/openapi-generator/pull/17470)
- Update README.md by [@&#8203;axshani](https://togithub.com/axshani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- Fix Kotlin templates to be compatible with Kotlin K2 compiler by
[@&#8203;rouazana](https://togithub.com/rouazana) in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- \[JaxRS] fix pojo equals by
[@&#8203;fizzet](https://togithub.com/fizzet) in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- Better Java RESTEasy Echo API client tests by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17473](https://togithub.com/OpenAPITools/openapi-generator/pull/17473)
- \[go]: Accept APIKey as string, byte array or stream using io.Reader
interface by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17432](https://togithub.com/OpenAPITools/openapi-generator/pull/17432)
- \[csharp]: Fixed the http signing issue for ECDSA key when API Key is
provided as string by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17459](https://togithub.com/OpenAPITools/openapi-generator/pull/17459)
- \[kotlin-client]\[jackson] Add support for unknown default enum value
by [@&#8203;ken-tunc](https://togithub.com/ken-tunc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- Fix decoding OpenAPIDateWithoutTime by
[@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- fix rendering of stars in README by
[@&#8203;individual-it](https://togithub.com/individual-it) in
[https://github.com/OpenAPITools/openapi-generator/pull/17477](https://togithub.com/OpenAPITools/openapi-generator/pull/17477)
- Added Christopher Queen Consulting to list of companies using the
generator by [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- Not throwing exception when ignore file exists by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17501](https://togithub.com/OpenAPITools/openapi-generator/pull/17501)
- \[bugfix]\[jaxrs]: fix compile error for jaxrs samples by
[@&#8203;Aliaksie](https://togithub.com/Aliaksie) in
[https://github.com/OpenAPITools/openapi-generator/pull/17479](https://togithub.com/OpenAPITools/openapi-generator/pull/17479)
- \[cpp-qt-client] Add cpp-qt-client technical committee to CODEOWNERS
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17481](https://togithub.com/OpenAPITools/openapi-generator/pull/17481)
- \[cpp-qt-client] Update minimum cmake version to 3.5 by
[@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17480](https://togithub.com/OpenAPITools/openapi-generator/pull/17480)
- Also escape '$' and '' in normal Kotlin strings, … by
[@&#8203;cureaid](https://togithub.com/cureaid) in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- python: simplify module imports by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17507](https://togithub.com/OpenAPITools/openapi-generator/pull/17507)
- BUG - PHP template - Configuration.mustache by
[@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- \[C]\[Client] Fix enum function names not matching headers in the
model… by [@&#8203;bookerdj](https://togithub.com/bookerdj) in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- \[resttemplate] rethrow original exception when retry limits exceeded
by [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- Remove optional path parameter in C# generichost template by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17525](https://togithub.com/OpenAPITools/openapi-generator/pull/17525)
- Use model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17490](https://togithub.com/OpenAPITools/openapi-generator/pull/17490)
- Add Alloy Automation as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17535](https://togithub.com/OpenAPITools/openapi-generator/pull/17535)
- Add a link to new youtube tutorial by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17536](https://togithub.com/OpenAPITools/openapi-generator/pull/17536)
- Add enum name mapping support to Ruby generators by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17537](https://togithub.com/OpenAPITools/openapi-generator/pull/17537)
- \[Ruby]\[client] Handle enums (and other scalars) in oneOf and anyOf
schemas by [@&#8203;armandmgt](https://togithub.com/armandmgt) in
[https://github.com/OpenAPITools/openapi-generator/pull/17515](https://togithub.com/OpenAPITools/openapi-generator/pull/17515)
- fix typo in javadoc in RestTemplate/ApiClient by
[@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- python: adjust basic typing information by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17511](https://togithub.com/OpenAPITools/openapi-generator/pull/17511)
- \[C]\[Client] Update the API doc after PR
[#&#8203;17179](https://togithub.com/openapitools/openapi-generator/issues/17179)
by [@&#8203;ityuhui](https://togithub.com/ityuhui) in
[https://github.com/OpenAPITools/openapi-generator/pull/17540](https://togithub.com/OpenAPITools/openapi-generator/pull/17540)
- Update runalloy logo and links by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17559](https://togithub.com/OpenAPITools/openapi-generator/pull/17559)
- Fix description in allOf with single item by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17560](https://togithub.com/OpenAPITools/openapi-generator/pull/17560)
- \[Rust] \[Server] New generator bases on Axum by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- \[java]\[native] Fix ObjectMapper deprecation warnings by
[@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- Bump follow-redirects from 1.15.2 to 1.15.4 in /website by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17562](https://togithub.com/OpenAPITools/openapi-generator/pull/17562)
- python: enable more mypy checks 1/n by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17556](https://togithub.com/OpenAPITools/openapi-generator/pull/17556)
- Fix spring generator dto annotations for xml support by
[@&#8203;tomyy](https://togithub.com/tomyy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- \[Rust] \[Axum] Remove redundant code in rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17570](https://togithub.com/OpenAPITools/openapi-generator/pull/17570)
- fix(go-server): ensure original filename can be deduced from tmp file
by [@&#8203;ErikBooijMB](https://togithub.com/ErikBooijMB) in
[https://github.com/OpenAPITools/openapi-generator/pull/17416](https://togithub.com/OpenAPITools/openapi-generator/pull/17416)
- Generated methode ApiClient.parameterToPairs failed to handle empty
collections
[#&#8203;17460](https://togithub.com/openapitools/openapi-generator/issues/17460)
by [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- fix: ExampleGenerator correctly generates allOf composed schemas by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- Add ability to append ServerHttpRequest for kotlin-spring generator by
[@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- Add tags on operation for template kotlin-spring by
[@&#8203;pkernevez](https://togithub.com/pkernevez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- fix: ExampleGenerator correctly produces YYYY-MM-dd format for `date`
with examples by [@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17495](https://togithub.com/OpenAPITools/openapi-generator/pull/17495)
- \[CSharp] feat!: add useDateOnly flag by
[@&#8203;Anakael](https://togithub.com/Anakael) in
[https://github.com/OpenAPITools/openapi-generator/pull/17471](https://togithub.com/OpenAPITools/openapi-generator/pull/17471)
- Implement scala http4s server generator by
[@&#8203;mikkka](https://togithub.com/mikkka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- \[BUG]\[Kotlin] Add default values to optional parameters for
jvm-spring-webclient and jvm-spring-restclient by
[@&#8203;MatthiasGabriel](https://togithub.com/MatthiasGabriel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17393](https://togithub.com/OpenAPITools/openapi-generator/pull/17393)
- feat: using Qt with 3rd Party Signals and Slots. Replace signals,slots
and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT by
[@&#8203;myml](https://togithub.com/myml) in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- \[kotlin-client]\[jvm-spring-\*] Fixed URL encoding by
[@&#8203;stefankoppier](https://togithub.com/stefankoppier) in
[https://github.com/OpenAPITools/openapi-generator/pull/17493](https://togithub.com/OpenAPITools/openapi-generator/pull/17493)
- \[BUG]\[java]\[resttemplate] Fix NPE when query param with value null
is exploded by [@&#8203;jorgerod](https://togithub.com/jorgerod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17568](https://togithub.com/OpenAPITools/openapi-generator/pull/17568)
- \[Rust] \[Axum] Deduplicate code from rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17588](https://togithub.com/OpenAPITools/openapi-generator/pull/17588)
- remove internal ISO8601Utils dependency by
[@&#8203;ChaosMarc](https://togithub.com/ChaosMarc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17052](https://togithub.com/OpenAPITools/openapi-generator/pull/17052)
- Fix flattenPath() in InlineModelResolver: use List instead of Map by
[@&#8203;vlsergey](https://togithub.com/vlsergey) in
[https://github.com/OpenAPITools/openapi-generator/pull/17579](https://togithub.com/OpenAPITools/openapi-generator/pull/17579)
- \[Rust] \[Axum] Format ops-v3 sample by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17599](https://togithub.com/OpenAPITools/openapi-generator/pull/17599)
- Add copyright note to rust axum server codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17598](https://togithub.com/OpenAPITools/openapi-generator/pull/17598)
- \[JAVA] - fix BUG 14233 code gen support multiple accept headers where
one is default json/application by
[@&#8203;Breus](https://togithub.com/Breus) in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- \[Python] Handle nullable list items by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17594](https://togithub.com/OpenAPITools/openapi-generator/pull/17594)
- fix: DefaultCodegen now generates an exemple for each status codes by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17603](https://togithub.com/OpenAPITools/openapi-generator/pull/17603)
- Fix parameters_to_url_query doesn't properly convert lists to string
by [@&#8203;rshacham](https://togithub.com/rshacham) in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- \[Python] Handle nullable dictionary values by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17605](https://togithub.com/OpenAPITools/openapi-generator/pull/17605)
- \[Java] remove jersey1 template files by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17607](https://togithub.com/OpenAPITools/openapi-generator/pull/17607)
- \[OAS 3.1] Fix null type check in normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17609](https://togithub.com/OpenAPITools/openapi-generator/pull/17609)
- bug fix: breaking dependency of flask server gen by
[@&#8203;cherusk](https://togithub.com/cherusk) in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- Fix Go generation of `type: object` inside anyOf by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- \[Go-Server] Use ParseQuery For Parsing Query Parameters by
[@&#8203;gonzogomez](https://togithub.com/gonzogomez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17585](https://togithub.com/OpenAPITools/openapi-generator/pull/17585)
- Add Carksberg Group to the user list by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17615](https://togithub.com/OpenAPITools/openapi-generator/pull/17615)
- kotlin-server: Add support for Javalin by
[@&#8203;dennisameling](https://togithub.com/dennisameling) in
[https://github.com/OpenAPITools/openapi-generator/pull/17596](https://togithub.com/OpenAPITools/openapi-generator/pull/17596)
- \[python]\[client] Clean up samples and CI by
[@&#8203;robertschweizer](https://togithub.com/robertschweizer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17509](https://togithub.com/OpenAPITools/openapi-generator/pull/17509)
- feat: add `java-wiremock` generator by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17614](https://togithub.com/OpenAPITools/openapi-generator/pull/17614)
- fix(typescript-axios): fix error if a parameter called 'index' exists
by [@&#8203;goatwu1993](https://togithub.com/goatwu1993) in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- Able to generate within parameter
[#&#8203;17158](https://togithub.com/openapitools/openapi-generator/issues/17158)
by [@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17623](https://togithub.com/OpenAPITools/openapi-generator/pull/17623)
- Added missing copied properties from CodegenOperation by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- \[Rust] \[Axum] Fix clippy warning by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17637](https://togithub.com/OpenAPITools/openapi-generator/pull/17637)
- Bump actions/cache from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17636](https://togithub.com/OpenAPITools/openapi-generator/pull/17636)
- R echo client tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17629](https://togithub.com/OpenAPITools/openapi-generator/pull/17629)
- Bugfix/7720 typescript fetch support is response optional by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17635](https://togithub.com/OpenAPITools/openapi-generator/pull/17635)
- \[dart-dio] includeIfNull: truefalse bugfix by
[@&#8203;vasilich6107](https://togithub.com/vasilich6107) in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- \[Perl] Update \_test.mustache templates to use done_testing by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- Add any type support in Perl client generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17654](https://togithub.com/OpenAPITools/openapi-generator/pull/17654)
- Support x-internal in models and operations by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17639](https://togithub.com/OpenAPITools/openapi-generator/pull/17639)
- Add auto-generated cpanfile in Perl client by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17662](https://togithub.com/OpenAPITools/openapi-generator/pull/17662)
- Remove isAnyTypeSchema in default codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17663](https://togithub.com/OpenAPITools/openapi-generator/pull/17663)
- \[jaxrs-spec] Addinfo contact url to the generated OpenAPIDefinition
by [@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- feat(perl): Update agent to use version constant by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17665](https://togithub.com/OpenAPITools/openapi-generator/pull/17665)
- \[kotlin-client]\[jvm-spring-\*] Fix runtime error in endpoints of
type Unit by [@&#8203;stefankoppier](https://togithub.com/stefankoppier)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17664](https://togithub.com/OpenAPITools/openapi-generator/pull/17664)
- Remove outdated files in perl petstore cilents by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17668](https://togithub.com/OpenAPITools/openapi-generator/pull/17668)
- Test perl petstore client in CircleCI by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17669](https://togithub.com/OpenAPITools/openapi-generator/pull/17669)
- \[Bash] Allow non-JSON request body payloads by
[@&#8203;mHejlesen](https://togithub.com/mHejlesen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
- Update perl tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17670](https://togithub.com/OpenAPITools/openapi-generator/pull/17670)
- Fix typo in KotlinClientCodegen.java user-visible error message by
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- Pass ObjectMapper to JacksonConverterFactory by
[@&#8203;yonatankarp](https://togithub.com/yonatankarp) in
[https://github.com/OpenAPITools/openapi-generator/pull/17673](https://togithub.com/OpenAPITools/openapi-generator/pull/17673)
- Fix map and free form object detection issue in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17624](https://togithub.com/OpenAPITools/openapi-generator/pull/17624)
- support binary response for R api client by
[@&#8203;mattpollock](https://togithub.com/mattpollock) in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- fix an issue the parameters_to_url_query method would throw an error
if the input was of type List\[int]
[BUG#15788](https://togithub.com/BUG/openapi-generator/issues/15788) by
[@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- Include support to Mojolicious relaxed placeholders parsing path
parameters by [@&#8203;atl3tico](https://togithub.com/atl3tico) in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- Fix allOf with a single item in inline model resolver by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17683](https://togithub.com/OpenAPITools/openapi-generator/pull/17683)
- Add tests for query parameters (array of integer/string) by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17686](https://togithub.com/OpenAPITools/openapi-generator/pull/17686)
- Fix missing import in ruby faraday test by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17692](https://togithub.com/OpenAPITools/openapi-generator/pull/17692)
- Improvements on scala http4s server generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17693](https://togithub.com/OpenAPITools/openapi-generator/pull/17693)
- \[Rust]\[client] Fix issue
[#&#8203;16975](https://togithub.com/openapitools/openapi-generator/issues/16975)
- generated type not being converted to string by
[@&#8203;j-szulc](https://togithub.com/j-szulc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- When config option interfaceOnly is true, the class RestApplication
will be generated as well by
[@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17646](https://togithub.com/OpenAPITools/openapi-generator/pull/17646)
- Add SSS Twitter to bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17698](https://togithub.com/OpenAPITools/openapi-generator/pull/17698)
- feat(typescript-angular): add support for Angular V17 by
[@&#8203;alethyst](https://togithub.com/alethyst) in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- Bump gradle/gradle-build-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17720](https://togithub.com/OpenAPITools/openapi-generator/pull/17720)
- Bump eskatos/gradle-command-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17719](https://togithub.com/OpenAPITools/openapi-generator/pull/17719)
- \[cpp-ue4] Fix generated code not compiling when using unique array
items by [@&#8203;roseatromero](https://togithub.com/roseatromero) in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- Add JavaDoc to api and apiInterface templates for the JavaJaxRS spec
generator by [@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- \[BUG] \[Java] Remove deprecation and serial warnings in
ApiException.java and JSON.java by
[@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17716](https://togithub.com/OpenAPITools/openapi-generator/pull/17716)
- add lombok model support on spring by
[@&#8203;dabdirb](https://togithub.com/dabdirb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17622](https://togithub.com/OpenAPITools/openapi-generator/pull/17622)
- \[jaxrs]\[cxf-cdi] make sure the imports are present for enum, if
using jackson by [@&#8203;selliera](https://togithub.com/selliera) in
[https://github.com/OpenAPITools/openapi-generator/pull/15123](https://togithub.com/OpenAPITools/openapi-generator/pull/15123)
- \[JavaSpring] Add Javadoc to enum (x-enum-descriptions) by
[@&#8203;tobi-laa](https://togithub.com/tobi-laa) in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- \[java] fix Use jackson-jakarta-rs-json-provider when useJakartaEe is
true by [@&#8203;dmbakker](https://togithub.com/dmbakker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- fix: ensure models that have variables that contain a complexType of
`time.Time` import the `time` module by
[@&#8203;madpah](https://togithub.com/madpah) in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- use map/array model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17612](https://togithub.com/OpenAPITools/openapi-generator/pull/17612)
- Fix null schema check for array of string in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17728](https://togithub.com/OpenAPITools/openapi-generator/pull/17728)
- Add rule to remove x-internal in openapi normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17734](https://togithub.com/OpenAPITools/openapi-generator/pull/17734)
- corrected handling of "isPrimitiveType" for FormParameters by
[@&#8203;aronkankel](https://togithub.com/aronkankel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- revert swagger-parser upgrade by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17657](https://togithub.com/OpenAPITools/openapi-generator/pull/17657)
- \[python-fastapi] Ensure path param is ... instead of None by
[@&#8203;tjikkun](https://togithub.com/tjikkun) in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- \[scala-sttp]: fix for missing EnumNameSerializer for inner enum
definitions by [@&#8203;hopi](https://togithub.com/hopi) in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- Update model_generic.mustache, tuple notation breaks when there is
only one element in the tuple by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17749](https://togithub.com/OpenAPITools/openapi-generator/pull/17749)
- Fix require var logging, don't matchGenerated if allOf skipped by
[@&#8203;robstoll](https://togithub.com/robstoll) in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- Add operationId name mapping option by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17750](https://togithub.com/OpenAPITools/openapi-generator/pull/17750)
- Accept Promises for the apiKey configuration in the typescript-fetch
generator. by [@&#8203;jyasskin](https://togithub.com/jyasskin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- Allow using bearer auth in typescript-nestjs by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- fix typescript-nestjs services when using api_key authentication by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17708](https://togithub.com/OpenAPITools/openapi-generator/pull/17708)
- \[typescript-axios] Add any to index type when
additionalPropertiesIsAnyType is true
([#&#8203;16494](https://togithub.com/openapitools/openapi-generator/issues/16494))
by [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- Add Svix as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17783](https://togithub.com/OpenAPITools/openapi-generator/pull/17783)
- Fix Python codegen in specific additionalProperties case. by
[@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm) in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- Add sample spec to catch external file reference issues in
swagger-parser by [@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17773](https://togithub.com/OpenAPITools/openapi-generator/pull/17773)
- \[jax-rs]\[jersey3] Fix missing SecurityRequirement by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17797](https://togithub.com/OpenAPITools/openapi-generator/pull/17797)
- \[PHP] update dependencies for php-dt generated code by
[@&#8203;Articus](https://togithub.com/Articus) in
[https://github.com/OpenAPITools/openapi-generator/pull/17796](https://togithub.com/OpenAPITools/openapi-generator/pull/17796)
- fix: update dead link to TypeScript docs by
[@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- \[BUG]\[Javascript] - validateJSON not working on value 0 by
[@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- \[Go] fix unused bytes import for anyOf and oneOf models by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17775](https://togithub.com/OpenAPITools/openapi-generator/pull/17775)
- \[Java] Fix default values of array-type parameters in a referenced
file by [@&#8203;kota65535](https://togithub.com/kota65535) in
[https://github.com/OpenAPITools/openapi-generator/pull/17779](https://togithub.com/OpenAPITools/openapi-generator/pull/17779)
- \[PowerShell] Support multiple types in Accept header by
[@&#8203;condorcorde](https://togithub.com/condorcorde) in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- \[JAVA]\[bugfix] Fix
[OpenAPITools#17757](https://togithub.com/OpenAPITools/openapi-generator/issues/17757)
- Include minimum and maximum values in arrays… by
[@&#8203;MarBode](https://togithub.com/MarBode) in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- Fix parent schema look up using schema name by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17807](https://togithub.com/OpenAPITools/openapi-generator/pull/17807)
- \[cpp-qt-client] Fix CMakeLists.txt.mustache and CMakeLists.txt for
Qt5 (fix
[#&#8203;17712](https://togithub.com/openapitools/openapi-generator/issues/17712))
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17721](https://togithub.com/OpenAPITools/openapi-generator/pull/17721)
- \[Python] deserialize enum json response (fix
[#&#8203;17789](https://togithub.com/openapitools/openapi-generator/issues/17789))
by [@&#8203;joeka](https://togithub.com/joeka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- Fix TS Axios echo client github workflow by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17815](https://togithub.com/OpenAPITools/openapi-generator/pull/17815)
- \[java] fix for json arrays by
[@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- \[JAVA]\[bugfix] Add dependency for jakarta-validation-api and
hibernate-validator to pom.xml for Java Resttemplate client by
[@&#8203;nathcouret](https://togithub.com/nathcouret) in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- \[Go] Fix panic from marshalling Nil NullableTime by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17772](https://togithub.com/OpenAPITools/openapi-generator/pull/17772)
- include API information in RestConfiguration Template by
[@&#8203;azplanlos](https://togithub.com/azplanlos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- \[go-gin-server] add a new function to the router to pass the gin
context by [@&#8203;mfatihercik](https://togithub.com/mfatihercik) in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- \[cpp-qt-client] Extend the reserved keywords for Qt projects with the
following words: by
[@&#8203;martonmiklos](https://togithub.com/martonmiklos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)
- prepare 7.3.0-release by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17817](https://togithub.com/OpenAPITools/openapi-generator/pull/17817)

##### New Contributors

- [@&#8203;axshani](https://togithub.com/axshani) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- [@&#8203;rouazana](https://togithub.com/rouazana) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- [@&#8203;fizzet](https://togithub.com/fizzet) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- [@&#8203;ken-tunc](https://togithub.com/ken-tunc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- [@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- [@&#8203;cureaid](https://togithub.com/cureaid) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- [@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- [@&#8203;bookerdj](https://togithub.com/bookerdj) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- [@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- [@&#8203;linxGnu](https://togithub.com/linxGnu) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- [@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- [@&#8203;tomyy](https://togithub.com/tomyy) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- [@&#8203;acouvreur](https://togithub.com/acouvreur) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- [@&#8203;Rugal](https://togithub.com/Rugal) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- [@&#8203;pkernevez](https://togithub.com/pkernevez) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- [@&#8203;mikkka](https://togithub.com/mikkka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- [@&#8203;myml](https://togithub.com/myml) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- [@&#8203;Breus](https://togithub.com/Breus) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- [@&#8203;rshacham](https://togithub.com/rshacham) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- [@&#8203;cherusk](https://togithub.com/cherusk) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- [@&#8203;ashb](https://togithub.com/ashb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- [@&#8203;goatwu1993](https://togithub.com/goatwu1993) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- [@&#8203;sindremb](https://togithub.com/sindremb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- [@&#8203;vasilich6107](https://togithub.com/vasilich6107) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- [@&#8203;bmodotdev](https://togithub.com/bmodotdev) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- [@&#8203;verhagen](https://togithub.com/verhagen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- [@&#8203;mHejlesen](https://togithub.com/mHejlesen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
-
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- [@&#8203;mattpollock](https://togithub.com/mattpollock) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- [@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- [@&#8203;atl3tico](https://togithub.com/atl3tico) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- [@&#8203;j-szulc](https://togithub.com/j-szulc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- [@&#8203;alethyst](https://togithub.com/alethyst) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- [@&#8203;roseatromero](https://togithub.com/roseatromero) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- [@&#8203;ripdajacker](https://togithub.com/ripdajacker) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- [@&#8203;tobi-laa](https://togithub.com/tobi-laa) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- [@&#8203;dmbakker](https://togithub.com/dmbakker) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- [@&#8203;madpah](https://togithub.com/madpah) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- [@&#8203;aronkankel](https://togithub.com/aronkankel) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- [@&#8203;tjikkun](https://togithub.com/tjikkun) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- [@&#8203;hopi](https://togithub.com/hopi) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- [@&#8203;robstoll](https://togithub.com/robstoll) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- [@&#8203;jyasskin](https://togithub.com/jyasskin) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- [@&#8203;simhnna](https://togithub.com/simhnna) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- [@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- [@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- [@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- [@&#8203;condorcorde](https://togithub.com/condorcorde) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- [@&#8203;MarBode](https://togithub.com/MarBode) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- [@&#8203;joeka](https://togithub.com/joeka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- [@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- [@&#8203;nathcouret](https://togithub.com/nathcouret) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- [@&#8203;azplanlos](https://togithub.com/azplanlos) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- [@&#8203;mfatihercik](https://togithub.com/mfatihercik) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- [@&#8203;martonmiklos](https://togithub.com/martonmiklos) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)

**Full Changelog**:
https://github.com/OpenAPITools/openapi-generator/compare/v7.2.0...v7.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/line/line-bot-sdk-python).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to line/line-bot-sdk-nodejs that referenced this pull request Feb 8, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[org.openapitools:openapi-generator-cli](https://togithub.com/openapitools/openapi-generator)
| `7.2.0` -> `7.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator-cli/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator-cli/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator-cli/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator-cli/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[org.openapitools:openapi-generator](https://togithub.com/openapitools/openapi-generator)
| `7.2.0` -> `7.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>openapitools/openapi-generator
(org.openapitools:openapi-generator-cli)</summary>

###
[`v7.3.0`](https://togithub.com/OpenAPITools/openapi-generator/releases/tag/v7.3.0):
released

[Compare
Source](https://togithub.com/openapitools/openapi-generator/compare/v7.2.0...v7.3.0)

(release note below will be revised later)

##### What's Changed

- Prepare 7.3.0-SNAPSHOT by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17456](https://togithub.com/OpenAPITools/openapi-generator/pull/17456)
- Stop using internal variable from okhttp3 by
[@&#8203;noordawod](https://togithub.com/noordawod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17458](https://togithub.com/OpenAPITools/openapi-generator/pull/17458)
- \[Java RESTEasy client] updating test to use the Java RESTEasy echo
api client
([#&#8203;17367](https://togithub.com/openapitools/openapi-generator/issues/17367))
by [@&#8203;miladhub](https://togithub.com/miladhub) in
[https://github.com/OpenAPITools/openapi-generator/pull/17470](https://togithub.com/OpenAPITools/openapi-generator/pull/17470)
- Update README.md by [@&#8203;axshani](https://togithub.com/axshani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- Fix Kotlin templates to be compatible with Kotlin K2 compiler by
[@&#8203;rouazana](https://togithub.com/rouazana) in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- \[JaxRS] fix pojo equals by
[@&#8203;fizzet](https://togithub.com/fizzet) in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- Better Java RESTEasy Echo API client tests by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17473](https://togithub.com/OpenAPITools/openapi-generator/pull/17473)
- \[go]: Accept APIKey as string, byte array or stream using io.Reader
interface by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17432](https://togithub.com/OpenAPITools/openapi-generator/pull/17432)
- \[csharp]: Fixed the http signing issue for ECDSA key when API Key is
provided as string by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17459](https://togithub.com/OpenAPITools/openapi-generator/pull/17459)
- \[kotlin-client]\[jackson] Add support for unknown default enum value
by [@&#8203;ken-tunc](https://togithub.com/ken-tunc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- Fix decoding OpenAPIDateWithoutTime by
[@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- fix rendering of stars in README by
[@&#8203;individual-it](https://togithub.com/individual-it) in
[https://github.com/OpenAPITools/openapi-generator/pull/17477](https://togithub.com/OpenAPITools/openapi-generator/pull/17477)
- Added Christopher Queen Consulting to list of companies using the
generator by [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- Not throwing exception when ignore file exists by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17501](https://togithub.com/OpenAPITools/openapi-generator/pull/17501)
- \[bugfix]\[jaxrs]: fix compile error for jaxrs samples by
[@&#8203;Aliaksie](https://togithub.com/Aliaksie) in
[https://github.com/OpenAPITools/openapi-generator/pull/17479](https://togithub.com/OpenAPITools/openapi-generator/pull/17479)
- \[cpp-qt-client] Add cpp-qt-client technical committee to CODEOWNERS
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17481](https://togithub.com/OpenAPITools/openapi-generator/pull/17481)
- \[cpp-qt-client] Update minimum cmake version to 3.5 by
[@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17480](https://togithub.com/OpenAPITools/openapi-generator/pull/17480)
- Also escape '$' and '' in normal Kotlin strings, … by
[@&#8203;cureaid](https://togithub.com/cureaid) in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- python: simplify module imports by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17507](https://togithub.com/OpenAPITools/openapi-generator/pull/17507)
- BUG - PHP template - Configuration.mustache by
[@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- \[C]\[Client] Fix enum function names not matching headers in the
model… by [@&#8203;bookerdj](https://togithub.com/bookerdj) in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- \[resttemplate] rethrow original exception when retry limits exceeded
by [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- Remove optional path parameter in C# generichost template by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17525](https://togithub.com/OpenAPITools/openapi-generator/pull/17525)
- Use model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17490](https://togithub.com/OpenAPITools/openapi-generator/pull/17490)
- Add Alloy Automation as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17535](https://togithub.com/OpenAPITools/openapi-generator/pull/17535)
- Add a link to new youtube tutorial by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17536](https://togithub.com/OpenAPITools/openapi-generator/pull/17536)
- Add enum name mapping support to Ruby generators by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17537](https://togithub.com/OpenAPITools/openapi-generator/pull/17537)
- \[Ruby]\[client] Handle enums (and other scalars) in oneOf and anyOf
schemas by [@&#8203;armandmgt](https://togithub.com/armandmgt) in
[https://github.com/OpenAPITools/openapi-generator/pull/17515](https://togithub.com/OpenAPITools/openapi-generator/pull/17515)
- fix typo in javadoc in RestTemplate/ApiClient by
[@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- python: adjust basic typing information by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17511](https://togithub.com/OpenAPITools/openapi-generator/pull/17511)
- \[C]\[Client] Update the API doc after PR
[#&#8203;17179](https://togithub.com/openapitools/openapi-generator/issues/17179)
by [@&#8203;ityuhui](https://togithub.com/ityuhui) in
[https://github.com/OpenAPITools/openapi-generator/pull/17540](https://togithub.com/OpenAPITools/openapi-generator/pull/17540)
- Update runalloy logo and links by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17559](https://togithub.com/OpenAPITools/openapi-generator/pull/17559)
- Fix description in allOf with single item by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17560](https://togithub.com/OpenAPITools/openapi-generator/pull/17560)
- \[Rust] \[Server] New generator bases on Axum by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- \[java]\[native] Fix ObjectMapper deprecation warnings by
[@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- Bump follow-redirects from 1.15.2 to 1.15.4 in /website by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17562](https://togithub.com/OpenAPITools/openapi-generator/pull/17562)
- python: enable more mypy checks 1/n by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17556](https://togithub.com/OpenAPITools/openapi-generator/pull/17556)
- Fix spring generator dto annotations for xml support by
[@&#8203;tomyy](https://togithub.com/tomyy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- \[Rust] \[Axum] Remove redundant code in rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17570](https://togithub.com/OpenAPITools/openapi-generator/pull/17570)
- fix(go-server): ensure original filename can be deduced from tmp file
by [@&#8203;ErikBooijMB](https://togithub.com/ErikBooijMB) in
[https://github.com/OpenAPITools/openapi-generator/pull/17416](https://togithub.com/OpenAPITools/openapi-generator/pull/17416)
- Generated methode ApiClient.parameterToPairs failed to handle empty
collections
[#&#8203;17460](https://togithub.com/openapitools/openapi-generator/issues/17460)
by [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- fix: ExampleGenerator correctly generates allOf composed schemas by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- Add ability to append ServerHttpRequest for kotlin-spring generator by
[@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- Add tags on operation for template kotlin-spring by
[@&#8203;pkernevez](https://togithub.com/pkernevez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- fix: ExampleGenerator correctly produces YYYY-MM-dd format for `date`
with examples by [@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17495](https://togithub.com/OpenAPITools/openapi-generator/pull/17495)
- \[CSharp] feat!: add useDateOnly flag by
[@&#8203;Anakael](https://togithub.com/Anakael) in
[https://github.com/OpenAPITools/openapi-generator/pull/17471](https://togithub.com/OpenAPITools/openapi-generator/pull/17471)
- Implement scala http4s server generator by
[@&#8203;mikkka](https://togithub.com/mikkka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- \[BUG]\[Kotlin] Add default values to optional parameters for
jvm-spring-webclient and jvm-spring-restclient by
[@&#8203;MatthiasGabriel](https://togithub.com/MatthiasGabriel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17393](https://togithub.com/OpenAPITools/openapi-generator/pull/17393)
- feat: using Qt with 3rd Party Signals and Slots. Replace signals,slots
and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT by
[@&#8203;myml](https://togithub.com/myml) in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- \[kotlin-client]\[jvm-spring-\*] Fixed URL encoding by
[@&#8203;stefankoppier](https://togithub.com/stefankoppier) in
[https://github.com/OpenAPITools/openapi-generator/pull/17493](https://togithub.com/OpenAPITools/openapi-generator/pull/17493)
- \[BUG]\[java]\[resttemplate] Fix NPE when query param with value null
is exploded by [@&#8203;jorgerod](https://togithub.com/jorgerod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17568](https://togithub.com/OpenAPITools/openapi-generator/pull/17568)
- \[Rust] \[Axum] Deduplicate code from rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17588](https://togithub.com/OpenAPITools/openapi-generator/pull/17588)
- remove internal ISO8601Utils dependency by
[@&#8203;ChaosMarc](https://togithub.com/ChaosMarc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17052](https://togithub.com/OpenAPITools/openapi-generator/pull/17052)
- Fix flattenPath() in InlineModelResolver: use List instead of Map by
[@&#8203;vlsergey](https://togithub.com/vlsergey) in
[https://github.com/OpenAPITools/openapi-generator/pull/17579](https://togithub.com/OpenAPITools/openapi-generator/pull/17579)
- \[Rust] \[Axum] Format ops-v3 sample by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17599](https://togithub.com/OpenAPITools/openapi-generator/pull/17599)
- Add copyright note to rust axum server codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17598](https://togithub.com/OpenAPITools/openapi-generator/pull/17598)
- \[JAVA] - fix BUG 14233 code gen support multiple accept headers where
one is default json/application by
[@&#8203;Breus](https://togithub.com/Breus) in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- \[Python] Handle nullable list items by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17594](https://togithub.com/OpenAPITools/openapi-generator/pull/17594)
- fix: DefaultCodegen now generates an exemple for each status codes by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17603](https://togithub.com/OpenAPITools/openapi-generator/pull/17603)
- Fix parameters_to_url_query doesn't properly convert lists to string
by [@&#8203;rshacham](https://togithub.com/rshacham) in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- \[Python] Handle nullable dictionary values by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17605](https://togithub.com/OpenAPITools/openapi-generator/pull/17605)
- \[Java] remove jersey1 template files by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17607](https://togithub.com/OpenAPITools/openapi-generator/pull/17607)
- \[OAS 3.1] Fix null type check in normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17609](https://togithub.com/OpenAPITools/openapi-generator/pull/17609)
- bug fix: breaking dependency of flask server gen by
[@&#8203;cherusk](https://togithub.com/cherusk) in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- Fix Go generation of `type: object` inside anyOf by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- \[Go-Server] Use ParseQuery For Parsing Query Parameters by
[@&#8203;gonzogomez](https://togithub.com/gonzogomez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17585](https://togithub.com/OpenAPITools/openapi-generator/pull/17585)
- Add Carksberg Group to the user list by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17615](https://togithub.com/OpenAPITools/openapi-generator/pull/17615)
- kotlin-server: Add support for Javalin by
[@&#8203;dennisameling](https://togithub.com/dennisameling) in
[https://github.com/OpenAPITools/openapi-generator/pull/17596](https://togithub.com/OpenAPITools/openapi-generator/pull/17596)
- \[python]\[client] Clean up samples and CI by
[@&#8203;robertschweizer](https://togithub.com/robertschweizer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17509](https://togithub.com/OpenAPITools/openapi-generator/pull/17509)
- feat: add `java-wiremock` generator by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17614](https://togithub.com/OpenAPITools/openapi-generator/pull/17614)
- fix(typescript-axios): fix error if a parameter called 'index' exists
by [@&#8203;goatwu1993](https://togithub.com/goatwu1993) in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- Able to generate within parameter
[#&#8203;17158](https://togithub.com/openapitools/openapi-generator/issues/17158)
by [@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17623](https://togithub.com/OpenAPITools/openapi-generator/pull/17623)
- Added missing copied properties from CodegenOperation by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- \[Rust] \[Axum] Fix clippy warning by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17637](https://togithub.com/OpenAPITools/openapi-generator/pull/17637)
- Bump actions/cache from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17636](https://togithub.com/OpenAPITools/openapi-generator/pull/17636)
- R echo client tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17629](https://togithub.com/OpenAPITools/openapi-generator/pull/17629)
- Bugfix/7720 typescript fetch support is response optional by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17635](https://togithub.com/OpenAPITools/openapi-generator/pull/17635)
- \[dart-dio] includeIfNull: truefalse bugfix by
[@&#8203;vasilich6107](https://togithub.com/vasilich6107) in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- \[Perl] Update \_test.mustache templates to use done_testing by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- Add any type support in Perl client generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17654](https://togithub.com/OpenAPITools/openapi-generator/pull/17654)
- Support x-internal in models and operations by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17639](https://togithub.com/OpenAPITools/openapi-generator/pull/17639)
- Add auto-generated cpanfile in Perl client by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17662](https://togithub.com/OpenAPITools/openapi-generator/pull/17662)
- Remove isAnyTypeSchema in default codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17663](https://togithub.com/OpenAPITools/openapi-generator/pull/17663)
- \[jaxrs-spec] Addinfo contact url to the generated OpenAPIDefinition
by [@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- feat(perl): Update agent to use version constant by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17665](https://togithub.com/OpenAPITools/openapi-generator/pull/17665)
- \[kotlin-client]\[jvm-spring-\*] Fix runtime error in endpoints of
type Unit by [@&#8203;stefankoppier](https://togithub.com/stefankoppier)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17664](https://togithub.com/OpenAPITools/openapi-generator/pull/17664)
- Remove outdated files in perl petstore cilents by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17668](https://togithub.com/OpenAPITools/openapi-generator/pull/17668)
- Test perl petstore client in CircleCI by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17669](https://togithub.com/OpenAPITools/openapi-generator/pull/17669)
- \[Bash] Allow non-JSON request body payloads by
[@&#8203;mHejlesen](https://togithub.com/mHejlesen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
- Update perl tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17670](https://togithub.com/OpenAPITools/openapi-generator/pull/17670)
- Fix typo in KotlinClientCodegen.java user-visible error message by
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- Pass ObjectMapper to JacksonConverterFactory by
[@&#8203;yonatankarp](https://togithub.com/yonatankarp) in
[https://github.com/OpenAPITools/openapi-generator/pull/17673](https://togithub.com/OpenAPITools/openapi-generator/pull/17673)
- Fix map and free form object detection issue in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17624](https://togithub.com/OpenAPITools/openapi-generator/pull/17624)
- support binary response for R api client by
[@&#8203;mattpollock](https://togithub.com/mattpollock) in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- fix an issue the parameters_to_url_query method would throw an error
if the input was of type List\[int]
[BUG#15788](https://togithub.com/BUG/openapi-generator/issues/15788) by
[@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- Include support to Mojolicious relaxed placeholders parsing path
parameters by [@&#8203;atl3tico](https://togithub.com/atl3tico) in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- Fix allOf with a single item in inline model resolver by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17683](https://togithub.com/OpenAPITools/openapi-generator/pull/17683)
- Add tests for query parameters (array of integer/string) by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17686](https://togithub.com/OpenAPITools/openapi-generator/pull/17686)
- Fix missing import in ruby faraday test by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17692](https://togithub.com/OpenAPITools/openapi-generator/pull/17692)
- Improvements on scala http4s server generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17693](https://togithub.com/OpenAPITools/openapi-generator/pull/17693)
- \[Rust]\[client] Fix issue
[#&#8203;16975](https://togithub.com/openapitools/openapi-generator/issues/16975)
- generated type not being converted to string by
[@&#8203;j-szulc](https://togithub.com/j-szulc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- When config option interfaceOnly is true, the class RestApplication
will be generated as well by
[@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17646](https://togithub.com/OpenAPITools/openapi-generator/pull/17646)
- Add SSS Twitter to bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17698](https://togithub.com/OpenAPITools/openapi-generator/pull/17698)
- feat(typescript-angular): add support for Angular V17 by
[@&#8203;alethyst](https://togithub.com/alethyst) in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- Bump gradle/gradle-build-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17720](https://togithub.com/OpenAPITools/openapi-generator/pull/17720)
- Bump eskatos/gradle-command-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17719](https://togithub.com/OpenAPITools/openapi-generator/pull/17719)
- \[cpp-ue4] Fix generated code not compiling when using unique array
items by [@&#8203;roseatromero](https://togithub.com/roseatromero) in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- Add JavaDoc to api and apiInterface templates for the JavaJaxRS spec
generator by [@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- \[BUG] \[Java] Remove deprecation and serial warnings in
ApiException.java and JSON.java by
[@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17716](https://togithub.com/OpenAPITools/openapi-generator/pull/17716)
- add lombok model support on spring by
[@&#8203;dabdirb](https://togithub.com/dabdirb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17622](https://togithub.com/OpenAPITools/openapi-generator/pull/17622)
- \[jaxrs]\[cxf-cdi] make sure the imports are present for enum, if
using jackson by [@&#8203;selliera](https://togithub.com/selliera) in
[https://github.com/OpenAPITools/openapi-generator/pull/15123](https://togithub.com/OpenAPITools/openapi-generator/pull/15123)
- \[JavaSpring] Add Javadoc to enum (x-enum-descriptions) by
[@&#8203;tobi-laa](https://togithub.com/tobi-laa) in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- \[java] fix Use jackson-jakarta-rs-json-provider when useJakartaEe is
true by [@&#8203;dmbakker](https://togithub.com/dmbakker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- fix: ensure models that have variables that contain a complexType of
`time.Time` import the `time` module by
[@&#8203;madpah](https://togithub.com/madpah) in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- use map/array model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17612](https://togithub.com/OpenAPITools/openapi-generator/pull/17612)
- Fix null schema check for array of string in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17728](https://togithub.com/OpenAPITools/openapi-generator/pull/17728)
- Add rule to remove x-internal in openapi normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17734](https://togithub.com/OpenAPITools/openapi-generator/pull/17734)
- corrected handling of "isPrimitiveType" for FormParameters by
[@&#8203;aronkankel](https://togithub.com/aronkankel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- revert swagger-parser upgrade by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17657](https://togithub.com/OpenAPITools/openapi-generator/pull/17657)
- \[python-fastapi] Ensure path param is ... instead of None by
[@&#8203;tjikkun](https://togithub.com/tjikkun) in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- \[scala-sttp]: fix for missing EnumNameSerializer for inner enum
definitions by [@&#8203;hopi](https://togithub.com/hopi) in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- Update model_generic.mustache, tuple notation breaks when there is
only one element in the tuple by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17749](https://togithub.com/OpenAPITools/openapi-generator/pull/17749)
- Fix require var logging, don't matchGenerated if allOf skipped by
[@&#8203;robstoll](https://togithub.com/robstoll) in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- Add operationId name mapping option by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17750](https://togithub.com/OpenAPITools/openapi-generator/pull/17750)
- Accept Promises for the apiKey configuration in the typescript-fetch
generator. by [@&#8203;jyasskin](https://togithub.com/jyasskin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- Allow using bearer auth in typescript-nestjs by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- fix typescript-nestjs services when using api_key authentication by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17708](https://togithub.com/OpenAPITools/openapi-generator/pull/17708)
- \[typescript-axios] Add any to index type when
additionalPropertiesIsAnyType is true
([#&#8203;16494](https://togithub.com/openapitools/openapi-generator/issues/16494))
by [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- Add Svix as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17783](https://togithub.com/OpenAPITools/openapi-generator/pull/17783)
- Fix Python codegen in specific additionalProperties case. by
[@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm) in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- Add sample spec to catch external file reference issues in
swagger-parser by [@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17773](https://togithub.com/OpenAPITools/openapi-generator/pull/17773)
- \[jax-rs]\[jersey3] Fix missing SecurityRequirement by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17797](https://togithub.com/OpenAPITools/openapi-generator/pull/17797)
- \[PHP] update dependencies for php-dt generated code by
[@&#8203;Articus](https://togithub.com/Articus) in
[https://github.com/OpenAPITools/openapi-generator/pull/17796](https://togithub.com/OpenAPITools/openapi-generator/pull/17796)
- fix: update dead link to TypeScript docs by
[@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- \[BUG]\[Javascript] - validateJSON not working on value 0 by
[@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- \[Go] fix unused bytes import for anyOf and oneOf models by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17775](https://togithub.com/OpenAPITools/openapi-generator/pull/17775)
- \[Java] Fix default values of array-type parameters in a referenced
file by [@&#8203;kota65535](https://togithub.com/kota65535) in
[https://github.com/OpenAPITools/openapi-generator/pull/17779](https://togithub.com/OpenAPITools/openapi-generator/pull/17779)
- \[PowerShell] Support multiple types in Accept header by
[@&#8203;condorcorde](https://togithub.com/condorcorde) in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- \[JAVA]\[bugfix] Fix
[OpenAPITools#17757](https://togithub.com/OpenAPITools/openapi-generator/issues/17757)
- Include minimum and maximum values in arrays… by
[@&#8203;MarBode](https://togithub.com/MarBode) in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- Fix parent schema look up using schema name by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17807](https://togithub.com/OpenAPITools/openapi-generator/pull/17807)
- \[cpp-qt-client] Fix CMakeLists.txt.mustache and CMakeLists.txt for
Qt5 (fix
[#&#8203;17712](https://togithub.com/openapitools/openapi-generator/issues/17712))
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17721](https://togithub.com/OpenAPITools/openapi-generator/pull/17721)
- \[Python] deserialize enum json response (fix
[#&#8203;17789](https://togithub.com/openapitools/openapi-generator/issues/17789))
by [@&#8203;joeka](https://togithub.com/joeka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- Fix TS Axios echo client github workflow by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17815](https://togithub.com/OpenAPITools/openapi-generator/pull/17815)
- \[java] fix for json arrays by
[@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- \[JAVA]\[bugfix] Add dependency for jakarta-validation-api and
hibernate-validator to pom.xml for Java Resttemplate client by
[@&#8203;nathcouret](https://togithub.com/nathcouret) in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- \[Go] Fix panic from marshalling Nil NullableTime by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17772](https://togithub.com/OpenAPITools/openapi-generator/pull/17772)
- include API information in RestConfiguration Template by
[@&#8203;azplanlos](https://togithub.com/azplanlos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- \[go-gin-server] add a new function to the router to pass the gin
context by [@&#8203;mfatihercik](https://togithub.com/mfatihercik) in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- \[cpp-qt-client] Extend the reserved keywords for Qt projects with the
following words: by
[@&#8203;martonmiklos](https://togithub.com/martonmiklos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)
- prepare 7.3.0-release by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17817](https://togithub.com/OpenAPITools/openapi-generator/pull/17817)

##### New Contributors

- [@&#8203;axshani](https://togithub.com/axshani) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- [@&#8203;rouazana](https://togithub.com/rouazana) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- [@&#8203;fizzet](https://togithub.com/fizzet) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- [@&#8203;ken-tunc](https://togithub.com/ken-tunc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- [@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- [@&#8203;cureaid](https://togithub.com/cureaid) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- [@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- [@&#8203;bookerdj](https://togithub.com/bookerdj) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- [@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- [@&#8203;linxGnu](https://togithub.com/linxGnu) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- [@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- [@&#8203;tomyy](https://togithub.com/tomyy) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- [@&#8203;acouvreur](https://togithub.com/acouvreur) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- [@&#8203;Rugal](https://togithub.com/Rugal) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- [@&#8203;pkernevez](https://togithub.com/pkernevez) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- [@&#8203;mikkka](https://togithub.com/mikkka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- [@&#8203;myml](https://togithub.com/myml) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- [@&#8203;Breus](https://togithub.com/Breus) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- [@&#8203;rshacham](https://togithub.com/rshacham) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- [@&#8203;cherusk](https://togithub.com/cherusk) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- [@&#8203;ashb](https://togithub.com/ashb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- [@&#8203;goatwu1993](https://togithub.com/goatwu1993) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- [@&#8203;sindremb](https://togithub.com/sindremb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- [@&#8203;vasilich6107](https://togithub.com/vasilich6107) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- [@&#8203;bmodotdev](https://togithub.com/bmodotdev) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- [@&#8203;verhagen](https://togithub.com/verhagen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- [@&#8203;mHejlesen](https://togithub.com/mHejlesen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
-
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- [@&#8203;mattpollock](https://togithub.com/mattpollock) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- [@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- [@&#8203;atl3tico](https://togithub.com/atl3tico) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- [@&#8203;j-szulc](https://togithub.com/j-szulc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- [@&#8203;alethyst](https://togithub.com/alethyst) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- [@&#8203;roseatromero](https://togithub.com/roseatromero) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- [@&#8203;ripdajacker](https://togithub.com/ripdajacker) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- [@&#8203;tobi-laa](https://togithub.com/tobi-laa) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- [@&#8203;dmbakker](https://togithub.com/dmbakker) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- [@&#8203;madpah](https://togithub.com/madpah) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- [@&#8203;aronkankel](https://togithub.com/aronkankel) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- [@&#8203;tjikkun](https://togithub.com/tjikkun) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- [@&#8203;hopi](https://togithub.com/hopi) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- [@&#8203;robstoll](https://togithub.com/robstoll) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- [@&#8203;jyasskin](https://togithub.com/jyasskin) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- [@&#8203;simhnna](https://togithub.com/simhnna) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- [@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- [@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- [@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- [@&#8203;condorcorde](https://togithub.com/condorcorde) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- [@&#8203;MarBode](https://togithub.com/MarBode) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- [@&#8203;joeka](https://togithub.com/joeka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- [@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- [@&#8203;nathcouret](https://togithub.com/nathcouret) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- [@&#8203;azplanlos](https://togithub.com/azplanlos) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- [@&#8203;mfatihercik](https://togithub.com/mfatihercik) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- [@&#8203;martonmiklos](https://togithub.com/martonmiklos) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)

**Full Changelog**:
https://github.com/OpenAPITools/openapi-generator/compare/v7.2.0...v7.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to line/line-bot-sdk-java that referenced this pull request Feb 8, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
|
[org.openapitools:openapi-generator-cli](https://togithub.com/openapitools/openapi-generator)
| `7.2.0` -> `7.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator-cli/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator-cli/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator-cli/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator-cli/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
|
[org.openapitools:openapi-generator](https://togithub.com/openapitools/openapi-generator)
| `7.2.0` -> `7.3.0` |
[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator/7.2.0/7.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>openapitools/openapi-generator
(org.openapitools:openapi-generator-cli)</summary>

###
[`v7.3.0`](https://togithub.com/OpenAPITools/openapi-generator/releases/tag/v7.3.0):
released

[Compare
Source](https://togithub.com/openapitools/openapi-generator/compare/v7.2.0...v7.3.0)

(release note below will be revised later)

##### What's Changed

- Prepare 7.3.0-SNAPSHOT by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17456](https://togithub.com/OpenAPITools/openapi-generator/pull/17456)
- Stop using internal variable from okhttp3 by
[@&#8203;noordawod](https://togithub.com/noordawod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17458](https://togithub.com/OpenAPITools/openapi-generator/pull/17458)
- \[Java RESTEasy client] updating test to use the Java RESTEasy echo
api client
([#&#8203;17367](https://togithub.com/openapitools/openapi-generator/issues/17367))
by [@&#8203;miladhub](https://togithub.com/miladhub) in
[https://github.com/OpenAPITools/openapi-generator/pull/17470](https://togithub.com/OpenAPITools/openapi-generator/pull/17470)
- Update README.md by [@&#8203;axshani](https://togithub.com/axshani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- Fix Kotlin templates to be compatible with Kotlin K2 compiler by
[@&#8203;rouazana](https://togithub.com/rouazana) in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- \[JaxRS] fix pojo equals by
[@&#8203;fizzet](https://togithub.com/fizzet) in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- Better Java RESTEasy Echo API client tests by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17473](https://togithub.com/OpenAPITools/openapi-generator/pull/17473)
- \[go]: Accept APIKey as string, byte array or stream using io.Reader
interface by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17432](https://togithub.com/OpenAPITools/openapi-generator/pull/17432)
- \[csharp]: Fixed the http signing issue for ECDSA key when API Key is
provided as string by [@&#8203;Ghufz](https://togithub.com/Ghufz) in
[https://github.com/OpenAPITools/openapi-generator/pull/17459](https://togithub.com/OpenAPITools/openapi-generator/pull/17459)
- \[kotlin-client]\[jackson] Add support for unknown default enum value
by [@&#8203;ken-tunc](https://togithub.com/ken-tunc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- Fix decoding OpenAPIDateWithoutTime by
[@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- fix rendering of stars in README by
[@&#8203;individual-it](https://togithub.com/individual-it) in
[https://github.com/OpenAPITools/openapi-generator/pull/17477](https://togithub.com/OpenAPITools/openapi-generator/pull/17477)
- Added Christopher Queen Consulting to list of companies using the
generator by [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- Not throwing exception when ignore file exists by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17501](https://togithub.com/OpenAPITools/openapi-generator/pull/17501)
- \[bugfix]\[jaxrs]: fix compile error for jaxrs samples by
[@&#8203;Aliaksie](https://togithub.com/Aliaksie) in
[https://github.com/OpenAPITools/openapi-generator/pull/17479](https://togithub.com/OpenAPITools/openapi-generator/pull/17479)
- \[cpp-qt-client] Add cpp-qt-client technical committee to CODEOWNERS
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17481](https://togithub.com/OpenAPITools/openapi-generator/pull/17481)
- \[cpp-qt-client] Update minimum cmake version to 3.5 by
[@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17480](https://togithub.com/OpenAPITools/openapi-generator/pull/17480)
- Also escape '$' and '' in normal Kotlin strings, … by
[@&#8203;cureaid](https://togithub.com/cureaid) in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- python: simplify module imports by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17507](https://togithub.com/OpenAPITools/openapi-generator/pull/17507)
- BUG - PHP template - Configuration.mustache by
[@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- \[C]\[Client] Fix enum function names not matching headers in the
model… by [@&#8203;bookerdj](https://togithub.com/bookerdj) in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- \[resttemplate] rethrow original exception when retry limits exceeded
by [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- Remove optional path parameter in C# generichost template by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17525](https://togithub.com/OpenAPITools/openapi-generator/pull/17525)
- Use model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17490](https://togithub.com/OpenAPITools/openapi-generator/pull/17490)
- Add Alloy Automation as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17535](https://togithub.com/OpenAPITools/openapi-generator/pull/17535)
- Add a link to new youtube tutorial by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17536](https://togithub.com/OpenAPITools/openapi-generator/pull/17536)
- Add enum name mapping support to Ruby generators by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17537](https://togithub.com/OpenAPITools/openapi-generator/pull/17537)
- \[Ruby]\[client] Handle enums (and other scalars) in oneOf and anyOf
schemas by [@&#8203;armandmgt](https://togithub.com/armandmgt) in
[https://github.com/OpenAPITools/openapi-generator/pull/17515](https://togithub.com/OpenAPITools/openapi-generator/pull/17515)
- fix typo in javadoc in RestTemplate/ApiClient by
[@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- python: adjust basic typing information by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17511](https://togithub.com/OpenAPITools/openapi-generator/pull/17511)
- \[C]\[Client] Update the API doc after PR
[#&#8203;17179](https://togithub.com/openapitools/openapi-generator/issues/17179)
by [@&#8203;ityuhui](https://togithub.com/ityuhui) in
[https://github.com/OpenAPITools/openapi-generator/pull/17540](https://togithub.com/OpenAPITools/openapi-generator/pull/17540)
- Update runalloy logo and links by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17559](https://togithub.com/OpenAPITools/openapi-generator/pull/17559)
- Fix description in allOf with single item by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17560](https://togithub.com/OpenAPITools/openapi-generator/pull/17560)
- \[Rust] \[Server] New generator bases on Axum by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- \[java]\[native] Fix ObjectMapper deprecation warnings by
[@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- Bump follow-redirects from 1.15.2 to 1.15.4 in /website by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17562](https://togithub.com/OpenAPITools/openapi-generator/pull/17562)
- python: enable more mypy checks 1/n by
[@&#8203;multani](https://togithub.com/multani) in
[https://github.com/OpenAPITools/openapi-generator/pull/17556](https://togithub.com/OpenAPITools/openapi-generator/pull/17556)
- Fix spring generator dto annotations for xml support by
[@&#8203;tomyy](https://togithub.com/tomyy) in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- \[Rust] \[Axum] Remove redundant code in rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17570](https://togithub.com/OpenAPITools/openapi-generator/pull/17570)
- fix(go-server): ensure original filename can be deduced from tmp file
by [@&#8203;ErikBooijMB](https://togithub.com/ErikBooijMB) in
[https://github.com/OpenAPITools/openapi-generator/pull/17416](https://togithub.com/OpenAPITools/openapi-generator/pull/17416)
- Generated methode ApiClient.parameterToPairs failed to handle empty
collections
[#&#8203;17460](https://togithub.com/openapitools/openapi-generator/issues/17460)
by [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- fix: ExampleGenerator correctly generates allOf composed schemas by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- Add ability to append ServerHttpRequest for kotlin-spring generator by
[@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- Add tags on operation for template kotlin-spring by
[@&#8203;pkernevez](https://togithub.com/pkernevez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- fix: ExampleGenerator correctly produces YYYY-MM-dd format for `date`
with examples by [@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17495](https://togithub.com/OpenAPITools/openapi-generator/pull/17495)
- \[CSharp] feat!: add useDateOnly flag by
[@&#8203;Anakael](https://togithub.com/Anakael) in
[https://github.com/OpenAPITools/openapi-generator/pull/17471](https://togithub.com/OpenAPITools/openapi-generator/pull/17471)
- Implement scala http4s server generator by
[@&#8203;mikkka](https://togithub.com/mikkka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- \[BUG]\[Kotlin] Add default values to optional parameters for
jvm-spring-webclient and jvm-spring-restclient by
[@&#8203;MatthiasGabriel](https://togithub.com/MatthiasGabriel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17393](https://togithub.com/OpenAPITools/openapi-generator/pull/17393)
- feat: using Qt with 3rd Party Signals and Slots. Replace signals,slots
and emit with Q_SIGNALS,Q_SLOTS and Q_EMIT by
[@&#8203;myml](https://togithub.com/myml) in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- \[kotlin-client]\[jvm-spring-\*] Fixed URL encoding by
[@&#8203;stefankoppier](https://togithub.com/stefankoppier) in
[https://github.com/OpenAPITools/openapi-generator/pull/17493](https://togithub.com/OpenAPITools/openapi-generator/pull/17493)
- \[BUG]\[java]\[resttemplate] Fix NPE when query param with value null
is exploded by [@&#8203;jorgerod](https://togithub.com/jorgerod) in
[https://github.com/OpenAPITools/openapi-generator/pull/17568](https://togithub.com/OpenAPITools/openapi-generator/pull/17568)
- \[Rust] \[Axum] Deduplicate code from rust-axum generator by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17588](https://togithub.com/OpenAPITools/openapi-generator/pull/17588)
- remove internal ISO8601Utils dependency by
[@&#8203;ChaosMarc](https://togithub.com/ChaosMarc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17052](https://togithub.com/OpenAPITools/openapi-generator/pull/17052)
- Fix flattenPath() in InlineModelResolver: use List instead of Map by
[@&#8203;vlsergey](https://togithub.com/vlsergey) in
[https://github.com/OpenAPITools/openapi-generator/pull/17579](https://togithub.com/OpenAPITools/openapi-generator/pull/17579)
- \[Rust] \[Axum] Format ops-v3 sample by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17599](https://togithub.com/OpenAPITools/openapi-generator/pull/17599)
- Add copyright note to rust axum server codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17598](https://togithub.com/OpenAPITools/openapi-generator/pull/17598)
- \[JAVA] - fix BUG 14233 code gen support multiple accept headers where
one is default json/application by
[@&#8203;Breus](https://togithub.com/Breus) in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- \[Python] Handle nullable list items by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17594](https://togithub.com/OpenAPITools/openapi-generator/pull/17594)
- fix: DefaultCodegen now generates an exemple for each status codes by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17603](https://togithub.com/OpenAPITools/openapi-generator/pull/17603)
- Fix parameters_to_url_query doesn't properly convert lists to string
by [@&#8203;rshacham](https://togithub.com/rshacham) in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- \[Python] Handle nullable dictionary values by
[@&#8203;changhc](https://togithub.com/changhc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17605](https://togithub.com/OpenAPITools/openapi-generator/pull/17605)
- \[Java] remove jersey1 template files by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17607](https://togithub.com/OpenAPITools/openapi-generator/pull/17607)
- \[OAS 3.1] Fix null type check in normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17609](https://togithub.com/OpenAPITools/openapi-generator/pull/17609)
- bug fix: breaking dependency of flask server gen by
[@&#8203;cherusk](https://togithub.com/cherusk) in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- Fix Go generation of `type: object` inside anyOf by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- \[Go-Server] Use ParseQuery For Parsing Query Parameters by
[@&#8203;gonzogomez](https://togithub.com/gonzogomez) in
[https://github.com/OpenAPITools/openapi-generator/pull/17585](https://togithub.com/OpenAPITools/openapi-generator/pull/17585)
- Add Carksberg Group to the user list by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17615](https://togithub.com/OpenAPITools/openapi-generator/pull/17615)
- kotlin-server: Add support for Javalin by
[@&#8203;dennisameling](https://togithub.com/dennisameling) in
[https://github.com/OpenAPITools/openapi-generator/pull/17596](https://togithub.com/OpenAPITools/openapi-generator/pull/17596)
- \[python]\[client] Clean up samples and CI by
[@&#8203;robertschweizer](https://togithub.com/robertschweizer) in
[https://github.com/OpenAPITools/openapi-generator/pull/17509](https://togithub.com/OpenAPITools/openapi-generator/pull/17509)
- feat: add `java-wiremock` generator by
[@&#8203;acouvreur](https://togithub.com/acouvreur) in
[https://github.com/OpenAPITools/openapi-generator/pull/17614](https://togithub.com/OpenAPITools/openapi-generator/pull/17614)
- fix(typescript-axios): fix error if a parameter called 'index' exists
by [@&#8203;goatwu1993](https://togithub.com/goatwu1993) in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- Able to generate within parameter
[#&#8203;17158](https://togithub.com/openapitools/openapi-generator/issues/17158)
by [@&#8203;Rugal](https://togithub.com/Rugal) in
[https://github.com/OpenAPITools/openapi-generator/pull/17623](https://togithub.com/OpenAPITools/openapi-generator/pull/17623)
- Added missing copied properties from CodegenOperation by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- \[Rust] \[Axum] Fix clippy warning by
[@&#8203;linxGnu](https://togithub.com/linxGnu) in
[https://github.com/OpenAPITools/openapi-generator/pull/17637](https://togithub.com/OpenAPITools/openapi-generator/pull/17637)
- Bump actions/cache from 3 to 4 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17636](https://togithub.com/OpenAPITools/openapi-generator/pull/17636)
- R echo client tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17629](https://togithub.com/OpenAPITools/openapi-generator/pull/17629)
- Bugfix/7720 typescript fetch support is response optional by
[@&#8203;sindremb](https://togithub.com/sindremb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17635](https://togithub.com/OpenAPITools/openapi-generator/pull/17635)
- \[dart-dio] includeIfNull: truefalse bugfix by
[@&#8203;vasilich6107](https://togithub.com/vasilich6107) in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- \[Perl] Update \_test.mustache templates to use done_testing by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- Add any type support in Perl client generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17654](https://togithub.com/OpenAPITools/openapi-generator/pull/17654)
- Support x-internal in models and operations by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17639](https://togithub.com/OpenAPITools/openapi-generator/pull/17639)
- Add auto-generated cpanfile in Perl client by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17662](https://togithub.com/OpenAPITools/openapi-generator/pull/17662)
- Remove isAnyTypeSchema in default codegen by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17663](https://togithub.com/OpenAPITools/openapi-generator/pull/17663)
- \[jaxrs-spec] Addinfo contact url to the generated OpenAPIDefinition
by [@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- feat(perl): Update agent to use version constant by
[@&#8203;bmodotdev](https://togithub.com/bmodotdev) in
[https://github.com/OpenAPITools/openapi-generator/pull/17665](https://togithub.com/OpenAPITools/openapi-generator/pull/17665)
- \[kotlin-client]\[jvm-spring-\*] Fix runtime error in endpoints of
type Unit by [@&#8203;stefankoppier](https://togithub.com/stefankoppier)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17664](https://togithub.com/OpenAPITools/openapi-generator/pull/17664)
- Remove outdated files in perl petstore cilents by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17668](https://togithub.com/OpenAPITools/openapi-generator/pull/17668)
- Test perl petstore client in CircleCI by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17669](https://togithub.com/OpenAPITools/openapi-generator/pull/17669)
- \[Bash] Allow non-JSON request body payloads by
[@&#8203;mHejlesen](https://togithub.com/mHejlesen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
- Update perl tests by [@&#8203;wing328](https://togithub.com/wing328)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17670](https://togithub.com/OpenAPITools/openapi-generator/pull/17670)
- Fix typo in KotlinClientCodegen.java user-visible error message by
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- Pass ObjectMapper to JacksonConverterFactory by
[@&#8203;yonatankarp](https://togithub.com/yonatankarp) in
[https://github.com/OpenAPITools/openapi-generator/pull/17673](https://togithub.com/OpenAPITools/openapi-generator/pull/17673)
- Fix map and free form object detection issue in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17624](https://togithub.com/OpenAPITools/openapi-generator/pull/17624)
- support binary response for R api client by
[@&#8203;mattpollock](https://togithub.com/mattpollock) in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- fix an issue the parameters_to_url_query method would throw an error
if the input was of type List\[int]
[BUG#15788](https://togithub.com/BUG/openapi-generator/issues/15788) by
[@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- Include support to Mojolicious relaxed placeholders parsing path
parameters by [@&#8203;atl3tico](https://togithub.com/atl3tico) in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- Fix allOf with a single item in inline model resolver by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17683](https://togithub.com/OpenAPITools/openapi-generator/pull/17683)
- Add tests for query parameters (array of integer/string) by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17686](https://togithub.com/OpenAPITools/openapi-generator/pull/17686)
- Fix missing import in ruby faraday test by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17692](https://togithub.com/OpenAPITools/openapi-generator/pull/17692)
- Improvements on scala http4s server generator by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17693](https://togithub.com/OpenAPITools/openapi-generator/pull/17693)
- \[Rust]\[client] Fix issue
[#&#8203;16975](https://togithub.com/openapitools/openapi-generator/issues/16975)
- generated type not being converted to string by
[@&#8203;j-szulc](https://togithub.com/j-szulc) in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- When config option interfaceOnly is true, the class RestApplication
will be generated as well by
[@&#8203;verhagen](https://togithub.com/verhagen) in
[https://github.com/OpenAPITools/openapi-generator/pull/17646](https://togithub.com/OpenAPITools/openapi-generator/pull/17646)
- Add SSS Twitter to bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17698](https://togithub.com/OpenAPITools/openapi-generator/pull/17698)
- feat(typescript-angular): add support for Angular V17 by
[@&#8203;alethyst](https://togithub.com/alethyst) in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- Bump gradle/gradle-build-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17720](https://togithub.com/OpenAPITools/openapi-generator/pull/17720)
- Bump eskatos/gradle-command-action from 2 to 3 by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[https://github.com/OpenAPITools/openapi-generator/pull/17719](https://togithub.com/OpenAPITools/openapi-generator/pull/17719)
- \[cpp-ue4] Fix generated code not compiling when using unique array
items by [@&#8203;roseatromero](https://togithub.com/roseatromero) in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- Add JavaDoc to api and apiInterface templates for the JavaJaxRS spec
generator by [@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- \[BUG] \[Java] Remove deprecation and serial warnings in
ApiException.java and JSON.java by
[@&#8203;ripdajacker](https://togithub.com/ripdajacker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17716](https://togithub.com/OpenAPITools/openapi-generator/pull/17716)
- add lombok model support on spring by
[@&#8203;dabdirb](https://togithub.com/dabdirb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17622](https://togithub.com/OpenAPITools/openapi-generator/pull/17622)
- \[jaxrs]\[cxf-cdi] make sure the imports are present for enum, if
using jackson by [@&#8203;selliera](https://togithub.com/selliera) in
[https://github.com/OpenAPITools/openapi-generator/pull/15123](https://togithub.com/OpenAPITools/openapi-generator/pull/15123)
- \[JavaSpring] Add Javadoc to enum (x-enum-descriptions) by
[@&#8203;tobi-laa](https://togithub.com/tobi-laa) in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- \[java] fix Use jackson-jakarta-rs-json-provider when useJakartaEe is
true by [@&#8203;dmbakker](https://togithub.com/dmbakker) in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- fix: ensure models that have variables that contain a complexType of
`time.Time` import the `time` module by
[@&#8203;madpah](https://togithub.com/madpah) in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- use map/array model class only if it is generated by
[@&#8203;martin-mfg](https://togithub.com/martin-mfg) in
[https://github.com/OpenAPITools/openapi-generator/pull/17612](https://togithub.com/OpenAPITools/openapi-generator/pull/17612)
- Fix null schema check for array of string in 3.1 spec by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17728](https://togithub.com/OpenAPITools/openapi-generator/pull/17728)
- Add rule to remove x-internal in openapi normalizer by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17734](https://togithub.com/OpenAPITools/openapi-generator/pull/17734)
- corrected handling of "isPrimitiveType" for FormParameters by
[@&#8203;aronkankel](https://togithub.com/aronkankel) in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- revert swagger-parser upgrade by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17657](https://togithub.com/OpenAPITools/openapi-generator/pull/17657)
- \[python-fastapi] Ensure path param is ... instead of None by
[@&#8203;tjikkun](https://togithub.com/tjikkun) in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- \[scala-sttp]: fix for missing EnumNameSerializer for inner enum
definitions by [@&#8203;hopi](https://togithub.com/hopi) in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- Update model_generic.mustache, tuple notation breaks when there is
only one element in the tuple by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17749](https://togithub.com/OpenAPITools/openapi-generator/pull/17749)
- Fix require var logging, don't matchGenerated if allOf skipped by
[@&#8203;robstoll](https://togithub.com/robstoll) in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- Add operationId name mapping option by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17750](https://togithub.com/OpenAPITools/openapi-generator/pull/17750)
- Accept Promises for the apiKey configuration in the typescript-fetch
generator. by [@&#8203;jyasskin](https://togithub.com/jyasskin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- Allow using bearer auth in typescript-nestjs by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- fix typescript-nestjs services when using api_key authentication by
[@&#8203;simhnna](https://togithub.com/simhnna) in
[https://github.com/OpenAPITools/openapi-generator/pull/17708](https://togithub.com/OpenAPITools/openapi-generator/pull/17708)
- \[typescript-axios] Add any to index type when
additionalPropertiesIsAnyType is true
([#&#8203;16494](https://togithub.com/openapitools/openapi-generator/issues/16494))
by [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- Add Svix as bronze sponsor by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17783](https://togithub.com/OpenAPITools/openapi-generator/pull/17783)
- Fix Python codegen in specific additionalProperties case. by
[@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm) in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- Add sample spec to catch external file reference issues in
swagger-parser by [@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17773](https://togithub.com/OpenAPITools/openapi-generator/pull/17773)
- \[jax-rs]\[jersey3] Fix missing SecurityRequirement by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17797](https://togithub.com/OpenAPITools/openapi-generator/pull/17797)
- \[PHP] update dependencies for php-dt generated code by
[@&#8203;Articus](https://togithub.com/Articus) in
[https://github.com/OpenAPITools/openapi-generator/pull/17796](https://togithub.com/OpenAPITools/openapi-generator/pull/17796)
- fix: update dead link to TypeScript docs by
[@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- \[BUG]\[Javascript] - validateJSON not working on value 0 by
[@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- \[Go] fix unused bytes import for anyOf and oneOf models by
[@&#8203;ctreatma](https://togithub.com/ctreatma) in
[https://github.com/OpenAPITools/openapi-generator/pull/17775](https://togithub.com/OpenAPITools/openapi-generator/pull/17775)
- \[Java] Fix default values of array-type parameters in a referenced
file by [@&#8203;kota65535](https://togithub.com/kota65535) in
[https://github.com/OpenAPITools/openapi-generator/pull/17779](https://togithub.com/OpenAPITools/openapi-generator/pull/17779)
- \[PowerShell] Support multiple types in Accept header by
[@&#8203;condorcorde](https://togithub.com/condorcorde) in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- \[JAVA]\[bugfix] Fix
[OpenAPITools#17757](https://togithub.com/OpenAPITools/openapi-generator/issues/17757)
- Include minimum and maximum values in arrays… by
[@&#8203;MarBode](https://togithub.com/MarBode) in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- Fix parent schema look up using schema name by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17807](https://togithub.com/OpenAPITools/openapi-generator/pull/17807)
- \[cpp-qt-client] Fix CMakeLists.txt.mustache and CMakeLists.txt for
Qt5 (fix
[#&#8203;17712](https://togithub.com/openapitools/openapi-generator/issues/17712))
by [@&#8203;MartinDelille](https://togithub.com/MartinDelille) in
[https://github.com/OpenAPITools/openapi-generator/pull/17721](https://togithub.com/OpenAPITools/openapi-generator/pull/17721)
- \[Python] deserialize enum json response (fix
[#&#8203;17789](https://togithub.com/openapitools/openapi-generator/issues/17789))
by [@&#8203;joeka](https://togithub.com/joeka) in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- Fix TS Axios echo client github workflow by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17815](https://togithub.com/OpenAPITools/openapi-generator/pull/17815)
- \[java] fix for json arrays by
[@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- \[JAVA]\[bugfix] Add dependency for jakarta-validation-api and
hibernate-validator to pom.xml for Java Resttemplate client by
[@&#8203;nathcouret](https://togithub.com/nathcouret) in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- \[Go] Fix panic from marshalling Nil NullableTime by
[@&#8203;ashb](https://togithub.com/ashb) in
[https://github.com/OpenAPITools/openapi-generator/pull/17772](https://togithub.com/OpenAPITools/openapi-generator/pull/17772)
- include API information in RestConfiguration Template by
[@&#8203;azplanlos](https://togithub.com/azplanlos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- \[go-gin-server] add a new function to the router to pass the gin
context by [@&#8203;mfatihercik](https://togithub.com/mfatihercik) in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- \[cpp-qt-client] Extend the reserved keywords for Qt projects with the
following words: by
[@&#8203;martonmiklos](https://togithub.com/martonmiklos) in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)
- prepare 7.3.0-release by
[@&#8203;wing328](https://togithub.com/wing328) in
[https://github.com/OpenAPITools/openapi-generator/pull/17817](https://togithub.com/OpenAPITools/openapi-generator/pull/17817)

##### New Contributors

- [@&#8203;axshani](https://togithub.com/axshani) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17468](https://togithub.com/OpenAPITools/openapi-generator/pull/17468)
- [@&#8203;rouazana](https://togithub.com/rouazana) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17466](https://togithub.com/OpenAPITools/openapi-generator/pull/17466)
- [@&#8203;fizzet](https://togithub.com/fizzet) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17431](https://togithub.com/OpenAPITools/openapi-generator/pull/17431)
- [@&#8203;ken-tunc](https://togithub.com/ken-tunc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17404](https://togithub.com/OpenAPITools/openapi-generator/pull/17404)
- [@&#8203;DevMobileAS](https://togithub.com/DevMobileAS) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17146](https://togithub.com/OpenAPITools/openapi-generator/pull/17146)
- [@&#8203;gitchrisqueen](https://togithub.com/gitchrisqueen) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17483](https://togithub.com/OpenAPITools/openapi-generator/pull/17483)
- [@&#8203;cureaid](https://togithub.com/cureaid) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17434](https://togithub.com/OpenAPITools/openapi-generator/pull/17434)
- [@&#8203;AntoineMarques](https://togithub.com/AntoineMarques) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17529](https://togithub.com/OpenAPITools/openapi-generator/pull/17529)
- [@&#8203;bookerdj](https://togithub.com/bookerdj) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17512](https://togithub.com/OpenAPITools/openapi-generator/pull/17512)
- [@&#8203;ilam-natarajan](https://togithub.com/ilam-natarajan) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17488](https://togithub.com/OpenAPITools/openapi-generator/pull/17488)
- [@&#8203;sebastian-toepfer](https://togithub.com/sebastian-toepfer)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17541](https://togithub.com/OpenAPITools/openapi-generator/pull/17541)
- [@&#8203;linxGnu](https://togithub.com/linxGnu) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17549](https://togithub.com/OpenAPITools/openapi-generator/pull/17549)
- [@&#8203;steven-sheehy](https://togithub.com/steven-sheehy) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17558](https://togithub.com/OpenAPITools/openapi-generator/pull/17558)
- [@&#8203;tomyy](https://togithub.com/tomyy) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17054](https://togithub.com/OpenAPITools/openapi-generator/pull/17054)
- [@&#8203;conleos-hoppermann](https://togithub.com/conleos-hoppermann)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17463](https://togithub.com/OpenAPITools/openapi-generator/pull/17463)
- [@&#8203;acouvreur](https://togithub.com/acouvreur) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17499](https://togithub.com/OpenAPITools/openapi-generator/pull/17499)
- [@&#8203;Rugal](https://togithub.com/Rugal) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17158](https://togithub.com/OpenAPITools/openapi-generator/pull/17158)
- [@&#8203;pkernevez](https://togithub.com/pkernevez) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17410](https://togithub.com/OpenAPITools/openapi-generator/pull/17410)
- [@&#8203;mikkka](https://togithub.com/mikkka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17430](https://togithub.com/OpenAPITools/openapi-generator/pull/17430)
- [@&#8203;myml](https://togithub.com/myml) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17067](https://togithub.com/OpenAPITools/openapi-generator/pull/17067)
- [@&#8203;Breus](https://togithub.com/Breus) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/15245](https://togithub.com/OpenAPITools/openapi-generator/pull/15245)
- [@&#8203;rshacham](https://togithub.com/rshacham) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17592](https://togithub.com/OpenAPITools/openapi-generator/pull/17592)
- [@&#8203;cherusk](https://togithub.com/cherusk) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17611](https://togithub.com/OpenAPITools/openapi-generator/pull/17611)
- [@&#8203;ashb](https://togithub.com/ashb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17339](https://togithub.com/OpenAPITools/openapi-generator/pull/17339)
- [@&#8203;goatwu1993](https://togithub.com/goatwu1993) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17550](https://togithub.com/OpenAPITools/openapi-generator/pull/17550)
- [@&#8203;sindremb](https://togithub.com/sindremb) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17627](https://togithub.com/OpenAPITools/openapi-generator/pull/17627)
- [@&#8203;vasilich6107](https://togithub.com/vasilich6107) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17631](https://togithub.com/OpenAPITools/openapi-generator/pull/17631)
- [@&#8203;bmodotdev](https://togithub.com/bmodotdev) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17649](https://togithub.com/OpenAPITools/openapi-generator/pull/17649)
- [@&#8203;verhagen](https://togithub.com/verhagen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17644](https://togithub.com/OpenAPITools/openapi-generator/pull/17644)
- [@&#8203;mHejlesen](https://togithub.com/mHejlesen) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17641](https://togithub.com/OpenAPITools/openapi-generator/pull/17641)
-
[@&#8203;neeme-praks-sympower](https://togithub.com/neeme-praks-sympower)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17674](https://togithub.com/OpenAPITools/openapi-generator/pull/17674)
- [@&#8203;mattpollock](https://togithub.com/mattpollock) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17626](https://togithub.com/OpenAPITools/openapi-generator/pull/17626)
- [@&#8203;masudanaokinino](https://togithub.com/masudanaokinino) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17638](https://togithub.com/OpenAPITools/openapi-generator/pull/17638)
- [@&#8203;atl3tico](https://togithub.com/atl3tico) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17633](https://togithub.com/OpenAPITools/openapi-generator/pull/17633)
- [@&#8203;j-szulc](https://togithub.com/j-szulc) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17504](https://togithub.com/OpenAPITools/openapi-generator/pull/17504)
- [@&#8203;alethyst](https://togithub.com/alethyst) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17685](https://togithub.com/OpenAPITools/openapi-generator/pull/17685)
- [@&#8203;roseatromero](https://togithub.com/roseatromero) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17684](https://togithub.com/OpenAPITools/openapi-generator/pull/17684)
- [@&#8203;ripdajacker](https://togithub.com/ripdajacker) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17705](https://togithub.com/OpenAPITools/openapi-generator/pull/17705)
- [@&#8203;tobi-laa](https://togithub.com/tobi-laa) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/14123](https://togithub.com/OpenAPITools/openapi-generator/pull/14123)
- [@&#8203;dmbakker](https://togithub.com/dmbakker) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17600](https://togithub.com/OpenAPITools/openapi-generator/pull/17600)
- [@&#8203;madpah](https://togithub.com/madpah) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17452](https://togithub.com/OpenAPITools/openapi-generator/pull/17452)
- [@&#8203;aronkankel](https://togithub.com/aronkankel) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17700](https://togithub.com/OpenAPITools/openapi-generator/pull/17700)
- [@&#8203;tjikkun](https://togithub.com/tjikkun) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17532](https://togithub.com/OpenAPITools/openapi-generator/pull/17532)
- [@&#8203;hopi](https://togithub.com/hopi) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17697](https://togithub.com/OpenAPITools/openapi-generator/pull/17697)
- [@&#8203;robstoll](https://togithub.com/robstoll) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17746](https://togithub.com/OpenAPITools/openapi-generator/pull/17746)
- [@&#8203;jyasskin](https://togithub.com/jyasskin) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17758](https://togithub.com/OpenAPITools/openapi-generator/pull/17758)
- [@&#8203;simhnna](https://togithub.com/simhnna) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17711](https://togithub.com/OpenAPITools/openapi-generator/pull/17711)
- [@&#8203;wouter-rednose](https://togithub.com/wouter-rednose) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17625](https://togithub.com/OpenAPITools/openapi-generator/pull/17625)
- [@&#8203;jaklaassen-affirm](https://togithub.com/jaklaassen-affirm)
made their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17659](https://togithub.com/OpenAPITools/openapi-generator/pull/17659)
- [@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17771](https://togithub.com/OpenAPITools/openapi-generator/pull/17771)
- [@&#8203;ChuckMoe](https://togithub.com/ChuckMoe) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17769](https://togithub.com/OpenAPITools/openapi-generator/pull/17769)
- [@&#8203;condorcorde](https://togithub.com/condorcorde) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17765](https://togithub.com/OpenAPITools/openapi-generator/pull/17765)
- [@&#8203;MarBode](https://togithub.com/MarBode) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17759](https://togithub.com/OpenAPITools/openapi-generator/pull/17759)
- [@&#8203;joeka](https://togithub.com/joeka) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17791](https://togithub.com/OpenAPITools/openapi-generator/pull/17791)
- [@&#8203;vasiliisorokin](https://togithub.com/vasiliisorokin) made
their first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17812](https://togithub.com/OpenAPITools/openapi-generator/pull/17812)
- [@&#8203;nathcouret](https://togithub.com/nathcouret) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17753](https://togithub.com/OpenAPITools/openapi-generator/pull/17753)
- [@&#8203;azplanlos](https://togithub.com/azplanlos) made their first
contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17770](https://togithub.com/OpenAPITools/openapi-generator/pull/17770)
- [@&#8203;mfatihercik](https://togithub.com/mfatihercik) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17785](https://togithub.com/OpenAPITools/openapi-generator/pull/17785)
- [@&#8203;martonmiklos](https://togithub.com/martonmiklos) made their
first contribution in
[https://github.com/OpenAPITools/openapi-generator/pull/17722](https://togithub.com/OpenAPITools/openapi-generator/pull/17722)

**Full Changelog**:
https://github.com/OpenAPITools/openapi-generator/compare/v7.2.0...v7.3.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/line/line-bot-sdk-java).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants