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

[cpp-ue4] Fix generated code not compiling when using unique array items #17684

Merged
merged 4 commits into from Jan 27, 2024

Conversation

roseatromero
Copy link
Contributor

@roseatromero roseatromero commented Jan 23, 2024

Currently if the "uniqueItems": true, is present in the schema for array items, the generated code does not compile due to lack of support for TSet container

0>GenericApiOperations.cpp(151): Error C2672 : 'CollectionToUrlString_multi': no matching overloaded function found
0>Helpers.h(203): Reference  : could be 'FString ::CollectionToUrlString_multi(const TArray<T,FDefaultAllocator> &,const TCHAR *)'
0>GenericApiOperations.cpp(151): Reference  : 'FString ::CollectionToUrlString_multi(const TArray<T,FDefaultAllocator> &,const TCHAR *)': could not deduce template argument for 'const TArray<T,FDefaultAllocator> &' from 'const TSet<FString,DefaultKeyFuncs<InElementType,false>,FDefaultSetAllocator>'
0>        with
0>        [
0>            InElementType=FString
0>        ]

This PR adds a template that correctly combines the URL parameters for associative container TSet and fixes the compilation issue.

Testing:

Based on the following schema:

"schema": {
    "pattern": "^[^/\\\\]*$",
    "uniqueItems": true,
    "type": "array",
    "items": {
      "type": "string"
    }
  }

I verified in the debugger that the URL parameters were added

roseatromero and others added 3 commits January 23, 2024 03:23
Added a template for converting collection to url string parameters for associative container
@roseatromero
Copy link
Contributor Author

Tagging @Kahncode for visibility

@Kahncode
Copy link
Contributor

Hello @roseatromero thanks for the change.

I feel like this is perhaps a more ambitious direction than I would have taken. Perhaps less correct, but I would have handled "set" as TArray. But I don't understand where the set comes from here, your schema has clearly an Array, so why does it translate to TSet?

Anyway the change I would suggest is in the file CppUE4ClientCodegen.java to change
typeMapping.put("set", "TSet");
to
typeMapping.put("set", "TArray");
as TArray can contain a set of elements after all.

@roseatromero
Copy link
Contributor Author

Hello @roseatromero thanks for the change.

I feel like this is perhaps a more ambitious direction than I would have taken. Perhaps less correct, but I would have handled "set" as TArray. But I don't understand where the set comes from here, your schema has clearly an Array, so why does it translate to TSet?

Anyway the change I would suggest is in the file CppUE4ClientCodegen.java to change typeMapping.put("set", "TSet"); to typeMapping.put("set", "TArray"); as TArray can contain a set of elements after all.

TSet is an associative rather than a sequence container, that guarantees the items stored inside are unique - hence why it's correctly generated to use it when uniqueItems is set to true. With TArray there could be duplicates in the generated URL params, which is not what the API is expecting according to the schema.

@Kahncode
Copy link
Contributor

Yes of course, it's less correct. What I'm wondering though is how that will be handled if it was body parameters. As far as I can see in the generated files TSet was not handled at all. This is why I mentioned that going for proper support for sets is a more ambitious change. In this case I'd suggest you test more cases, at least body parameters, and support the TSet fully as it is a valuable improvement.

In any case this is a good change as it is and it looks fine to me.

@wing328
Copy link
Member

wing328 commented Jan 27, 2024

ci failure not related to this change.

@wing328 wing328 merged commit d152f4d into OpenAPITools:master Jan 27, 2024
6 of 10 checks passed
@wing328
Copy link
Member

wing328 commented Jan 27, 2024

@roseatromero thanks for the PR, which has been merged.

@Kahncode thanks for reviewing the change.

@wing328
Copy link
Member

wing328 commented Jan 27, 2024

@roseatromero can you please PM me via Slack when you've time next week?

https://join.slack.com/t/openapi-generator/shared_invite/zt-12jxxd7p2-XUeQM~4pzsU9x~eGLQqX2g

Have a nice weekend.

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