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

[CSharp] feat!: add useDateOnly flag #17471

Merged
merged 37 commits into from Jan 10, 2024

Conversation

Anakael
Copy link
Contributor

@Anakael Anakael commented Dec 24, 2023

resolve: #13877

Here is setup I've tested on:

server:

app.MapGet("/echodate", (DateOnly date) =>
{
    return date.ToString();
})
.WithName("GetWeatherForecast")
.WithOpenApi();

spec:

{
  "openapi": "3.0.1",
  "info": {
    "title": "TestOpenApiDateOnly",
    "version": "1.0"
  },
  "paths": {
    "/echodate": {
      "get": {
        "tags": [
          "TestOpenApiDateOnly"
        ],
        "operationId": "GetWeatherForecast",
        "parameters": [
          {
            "name": "date",
            "in": "query",
            "required": true,
            "style": "form",
            "schema": {
              "type": "string",
              "format": "date"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        }
      }
    }
  },
  "components": { }
}

generate with: java -jar ../openapi-generator/modules/openapi-generator-cli/target/openapi-generator-cli.jar generate -i Server/spec.json -g csharp -o GeneratedClient --additional-properties=library=httpclient,useDateOnly=true

generated client:

namespace Org.OpenAPITools.Api
{

    /// <summary>
    /// Represents a collection of functions to interact with the API endpoints
    /// </summary>
    public interface ITestOpenApiDateOnlyApiSync : IApiAccessor
    {
        #region Synchronous Operations
        /// <summary>
        /// 
        /// </summary>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="date"></param>
        /// <returns>string</returns>
        string GetWeatherForecast(DateOnly date);

        /// <summary>
        /// 
        /// </summary>
        /// <remarks>
        /// 
        /// </remarks>
        /// <exception cref="Org.OpenAPITools.Client.ApiException">Thrown when fails to make API call</exception>
        /// <param name="date"></param>
        /// <returns>ApiResponse of string</returns>
        ApiResponse<string> GetWeatherForecastWithHttpInfo(DateOnly date);
        #endregion Synchronous Operations
    }
    // ..rest
}

Note: useDateOnly flag adds usage of DateOnly type, which is available only from .NET6, but I haven't add any check for using it with older frameworks. Is it worth to add or no?

PR checklist

  • Read the contribution guidelines.
  • Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community.
  • Run the following to build the project and update samples:
    ./mvnw clean package 
    ./bin/generate-samples.sh ./bin/configs/*.yaml
    ./bin/utils/export_docs_generators.sh
    
    (For Windows users, please run the script in Git BASH)
    Commit all changed files.
    This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master.
    These must match the expectations made by your contribution.
    You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example ./bin/generate-samples.sh bin/configs/java*.
    IMPORTANT: Do NOT purge/delete any folders/files (e.g. tests) when regenerating the samples as manually written tests may be removed.
  • File the PR against the correct branch: master (upcoming 7.1.0 minor release - breaking changes with fallbacks), 8.0.x (breaking changes without fallbacks)
  • If your PR is targeting a particular programming language, @mention the technical committee members, so they are more likely to review the pull request.

@Anakael
Copy link
Contributor Author

Anakael commented Dec 24, 2023

@devhl-labs
Copy link
Contributor

Is there a way to tell in the spec so we could avoid another option?

@Anakael
Copy link
Contributor Author

Anakael commented Dec 25, 2023

Is there a way to tell in the spec so we could avoid another option?

I don't think so. We could use DateOnly as default type for date string format, but it would be breaking change for generated code's consumers then and it's probably not worth it.

@devhl-labs
Copy link
Contributor

devhl-labs commented Dec 25, 2023

According to the spec there are formats for date and date-time. Adding support would be a breaking change, but it is a correct breaking change. We should find a way to do it while providing a fallback to the legacy incorrect way.

https://swagger.io/docs/specification/data-models/data-types/

@Anakael
Copy link
Contributor Author

Anakael commented Dec 25, 2023

-> legacy incorrect way
It neather legacy or incorrect way.
In C# we have 4 core types for dates and time: DateTime, DateTimeOffset (for which we already have option in generator), DateOnly, TimeOnly and all of them are actual correct way. But the last two were introduced only in .NET6 and available only in core framework and not available for .netstandard (which is actual).
The property I've added use difference between date and date-time and map them to DateOnly and DateTime C# types. Without that flag both of spec types were maped to just DateTime.

@devhl-labs
Copy link
Contributor

My point is only that date and date-time formats should get translated to different types in languages which support both without the need for opting in. The option should instead enable users to avoid breaking changes.

@Anakael
Copy link
Contributor Author

Anakael commented Dec 25, 2023

I see. So you suggest to make my flag as default behavior for .NET6+ and add new one: useDateTimeForDate to preserve old behaviour?

@devhl-labs
Copy link
Contributor

Yes that makes sense to me. Gives a fallback to avoid breaking changes while ensuring we can more closely follow the spec going forward.

@Anakael
Copy link
Contributor Author

Anakael commented Dec 25, 2023

Ok, I'll do it.

@Anakael Anakael changed the title [CSharp] feat: add useDateOnly flag [CSharp] feat!: add useDateOnly flag Dec 30, 2023
@Anakael
Copy link
Contributor Author

Anakael commented Dec 31, 2023

There are a lot of regenerated samples here ._.

}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove the spacing changes in this file.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please remove the spacing changes in this file.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

}

private void setAddititonalPropertyForFramework() {
if (((String)additionalProperties.get(TARGET_FRAMEWORK)).startsWith("net6.0")) {
Copy link
Contributor

@devhl-labs devhl-labs Jan 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

startsWith("net6.0") fails to capture the or later part of NET_60_OR_LATER. Also, I think the target framework could contain multiple frameworks.

This is something that really should be in the abstract and not needed here, but sadly it is not :(

Thanks for your work on this pr. It is looking good.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

-> startsWith("net6.0") fails to capture the or later part of NET_60_OR_LATER
Do you mean versions like net7.0, net.8.0? aspnetcore generator supports only 6.0 as for now.
-> Also, I think the target framework could contain multiple frameworks.
targetFramework from csharp generator could, indeed. But aspnetcore generator use aspnetCoreVersion parameter, which couldn't.
-> This is something that really should be in the abstract and not needed here, but sadly it is not :(
This is because of different parameters and logic around it. Also, csharp generator supports .netstandard and .NET framework, but aspnetcore doesn't. So merge it in abstract class will break LS solid principe.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would still suggest handling past .net6. The end of life on it is this year. Surprising to me that no one has updated it already. Other than that, LGTM.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.
-> Surprising to me that no one has updated it already
I think it's because aspnetcore generator is not popular since it's not what you can generate on every spec update.

{{^supportsDateOnly}}
"yyyyMMdd"
{{/supportsDateOnly}}
Copy link
Contributor

@devhl-labs devhl-labs Jan 5, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please revert the spacing change.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

@@ -155,4 +159,4 @@ namespace {{packageName}}.{{clientPackage}}
return this;
}
}
}
}
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please revert the spacing change.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.

@Anakael
Copy link
Contributor Author

Anakael commented Jan 8, 2024

@devhl-labs @wing328
Can we merge it now? :)

@@ -0,0 +1,9 @@
# for .net standard
generatorName: csharp
outputDir: samples/client/petstore/csharp/OpenAPIClient-net7.0-useDateTimeForDate
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

in https://github.com/OpenAPITools/openapi-generator/tree/master/.github/workflows, there are workflows for dotnet.

can you please add the new sample folders to these workflow so that CI will tests to make sure these samples compile without issues moving forward?

Copy link
Contributor Author

@Anakael Anakael Jan 9, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Done.
I've also noticed that netcore-latest samples not captured in on section's regexes. Is it intended or mistake?
image

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

likely a mistake. can you please file another PR to fix it?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure.

@wing328 wing328 merged commit 11caad9 into OpenAPITools:master Jan 10, 2024
41 checks passed
@wing328
Copy link
Member

wing328 commented Jan 10, 2024

thanks again for the PR. just merged it

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.

[REQ][csharp-netcore] Support .NET 6 DateOnly type for date
3 participants