Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

add lombok model support on spring #17622

Merged
merged 11 commits into from Jan 27, 2024

Conversation

dabdirb
Copy link
Contributor

@dabdirb dabdirb commented Jan 16, 2024

There are several issues raised to request generate model with lombok support, include #5447, #10841, #14156, #16250, #17606
This PR add lombok support on spring project, i plan to first implement it on spring then port to all other java projects.
When user add lombok annotation by additionalModelTypeAnnotations,

java -jar openapi-generator-cli.jar generate -g spring \
  -i petstore.json \
 --additional-properties=hideGenerationTimestamp=true,additionalModelTypeAnnotations=@lombok.Data;@lombok.NoArgsConstructor;@lombok.AllArgsConstructor

will generate below code, clean with just field definations.

/**
 * Tag
 */
@lombok.Data
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor

@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
public class Tag {

  private Long id;

  private String name;

}

User can combine the lombok annotations to customize the output model

java -jar openapi-generator-cli.jar generate -g spring \
  -i petstore.json \
  --additional-properties=hideGenerationTimestamp=true,additionalModelTypeAnnotations=@lombok.RequiredArgsConstructor;@lombok.NoArgsConstructor;@lombok.AllArgsConstructor
/**
 * Tag
 */
@lombok.RequiredArgsConstructor
@lombok.NoArgsConstructor
@lombok.AllArgsConstructor

@Generated(value = "org.openapitools.codegen.languages.SpringCodegen")
public class Tag {

  private Long id;

  private String name;

  public Tag id(Long id) {
    this.id = id;
    return this;
  }

  /**
   * Get id
   * @return id
  */
  
  @Schema(name = "id", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
  @JsonProperty("id")
  public Long getId() {
    return id;
  }

  public void setId(Long id) {
    this.id = id;
  }

  public Tag name(String name) {
    this.name = name;
    return this;
  }

  /**
   * Get name
   * @return name
  */
  
  @Schema(name = "name", requiredMode = Schema.RequiredMode.NOT_REQUIRED)
  @JsonProperty("name")
  public String getName() {
    return name;
  }

  public void setName(String name) {
    this.name = name;
  }

  @Override
  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    Tag tag = (Tag) o;
    return Objects.equals(this.id, tag.id) &&
        Objects.equals(this.name, tag.name);
  }

  @Override
  public int hashCode() {
    return Objects.hash(id, name);
  }

  @Override
  public String toString() {
    StringBuilder sb = new StringBuilder();
    sb.append("class Tag {\n");
    sb.append("    id: ").append(toIndentedString(id)).append("\n");
    sb.append("    name: ").append(toIndentedString(name)).append("\n");
    sb.append("}");
    return sb.toString();
  }

  /**
   * Convert the given object to string with each line indented by 4 spaces
   * (except the first line).
   */
  private String toIndentedString(Object o) {
    if (o == null) {
      return "null";
    }
    return o.toString().replace("\n", "\n    ");
  }
}

Note

This implementation will discard the x-setter-extra-annotation in setter function and swagger @Schema in geter function.

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.

@AhmedAbdelfaheem
Copy link

AhmedAbdelfaheem commented Jan 18, 2024

When this fix will be merged ? @dabdirb

@wing328
Copy link
Member

wing328 commented Jan 18, 2024

cc
@cachescrubber (2022/02) @welshm (2022/02) @MelleD (2022/02) @atextor (2022/02) @manedev79 (2022/02) @javisst (2022/02) @borsch (2022/02) @banlevente (2022/02) @Zomzog (2022/09) @martin-mfg (2023/08)

Copy link
Contributor

@martin-mfg martin-mfg left a comment

Choose a reason for hiding this comment

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

LGTM

Thanks a lot for this PR!


Using lombok will change the format of toString()s output, which some users might see as disadvantage. But since using lombok is opt-in, I think that's not a problem.
e.g. from

class MyError {
    message: message
    code: 1
    innerObj: class MyErrorInnerObj {
        innerMsg: innerMsg
    }

to

MyError(message=message, code=1, innerObj=MyErrorInnerObj(innerMsg=innerMsg))

Copy link
Contributor

@welshm welshm left a comment

Choose a reason for hiding this comment

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

Thanks the feature looks great!

Would be good to add tests for the Lombok feature.

@welshm
Copy link
Contributor

welshm commented Jan 20, 2024

Is NoArgsConstructor still required to work properly with Spring? I know it used to be - and if that's the case might be worth documenting as part of the feature that's generally suggested that particular annotation always be included

@dabdirb
Copy link
Contributor Author

dabdirb commented Jan 22, 2024

@welshm NoArgsConstructor does not required
The toString() output format is diff, in fact legacy toString() works well, if a developer want to use @lombok.ToString, he intend to replace it.
I have added a UT case to cover the lombok annotation parsing.

@@ -4427,4 +4427,48 @@ public void testMultiInheritanceParentRequiredParams_issue15796() throws IOExcep
.hasParameter("race").toConstructor()
;
}

@Test
public void testLombokAnnotations() throws IOException {
Copy link
Contributor

Choose a reason for hiding this comment

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

Beautiful tests - thank you!

🙌

@wing328
Copy link
Member

wing328 commented Jan 23, 2024

@dabdirb thanks for the PR.

What about adding a config under ./bin/configs/ to have this feature enabled and test the sample in the github workflow?

.github/workflows/samples-spring-jdk17.yaml
.github/workflows/samples-spring.yaml

for test spec, you can use https://github.com/OpenAPITools/openapi-generator/blob/master/modules/openapi-generator/src/test/resources/3_0/petstore.yaml to start with

@wing328 wing328 merged commit 66a6af5 into OpenAPITools:master Jan 27, 2024
58 checks passed
@wing328
Copy link
Member

wing328 commented Jan 27, 2024

lgtm. thanks for the PR.

@wing328 wing328 added this to the 7.3.0 milestone Jan 27, 2024
@wing328
Copy link
Member

wing328 commented Jan 27, 2024

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

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

Have a nice weekend.

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

(release note below will be revised later)

##### What's Changed

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

##### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

(release note below will be revised later)

##### What's Changed

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

##### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

(release note below will be revised later)

##### What's Changed

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

##### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

(release note below will be revised later)

##### What's Changed

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

##### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@switang
Copy link

switang commented Feb 9, 2024

@dabdirb Thanks for adding this! We were able to reduce some additional config now that the lombok.* are available for conditions.

I include this over the var output in the pojo file since we like to use the Builder annotation:
{{#defaultValue}}{{#lombok.Builder}}@lombok.Builder.Default{{/lombok.Builder}}{{/defaultValue}}

Used to have an additional property that we set and used in the pojo, but now just reference lombok.Builder

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

6 participants