Skip to content

Releases: quarkiverse/quarkus-openapi-generator

Quarkus OpenAPI Generator - v2.1.0

19 Jan 21:03
Compare
Choose a tag to compare

What's Changed

  • Fixed issue that prevented the app from starting when "base-package" property was not set by @hbelmiro in #221
  • Added "return-response" property to return Response instead of a model by @hbelmiro in #219
  • Bump javaparser-core from 3.24.9 to 3.24.10 by @dependabot in #230
  • Bump assertj-core from 3.24.1 to 3.24.2 by @dependabot in #240
  • issue-237 OAuth2AuthenticationProvider is now managed by CDI (#239) by @hbelmiro in #244

Full Changelog: 2.0.0...2.1.0

Quarkus OpenAPI Generator - v1.2.0

17 Jan 12:44
Compare
Choose a tag to compare

Attention! This version is for Quarkus 2.x only!

What's Changed

  • Fixed issue that prevented the app from starting when "base-package" property was not set (#221) by @hbelmiro in #222
  • [quarkus2] Added "return-response" property to return Response instead of a model (#219) by @hbelmiro in #223
  • Updated Quarkus to 2.15.3 by @hbelmiro in #226
  • Bump assertj-core from 3.23.1 to 3.24.1 (#229) by @hbelmiro in #234
  • Bump javaparser-core from 3.24.9 to 3.24.10 (#230) by @hbelmiro in #236
  • [quarkus2] issue-237 OAuth2AuthenticationProvider is now managed by CDI by @hbelmiro in #239

Full Changelog: 1.1.0...1.2.0

Quarkus OpenAPI Generator - v2.0.0

02 Jan 19:30
Compare
Choose a tag to compare

Hooray! πŸ‘Ύ

This is the first version to support Quarkus 3. Please update your dependencies to this version if you are willing to use Quarkus 3. We will keep compatibility for Quarkus 2 (1.x.x train) and Quarkus 3 (2.x.x train); keep an eye on it!

What's Changed

Quarkus OpenAPI Generator - v1.1.0

02 Jan 19:27
Compare
Choose a tag to compare

Attention! This version is for Quarkus 2.x only!

What's Changed

Full Changelog: 1.0.1...1.1.0

Quarkus OpenAPI Generator - v1.0.1

06 Dec 18:37
Compare
Choose a tag to compare

Release to fix a bug introduced in the 1.0.0 version.

What's Changed

  • Add CodeQL workflow for GitHub code scanning by @lgtm-com in #195
  • Control when path has not 'src' in it by @gwydionmv in #197
  • Use dynamic port where possible in tests that use WireMock by @dritoferro in #198

New Contributors

  • @lgtm-com made their first contribution in #195
  • @dritoferro made their first contribution in #198

Full Changelog: 1.0.0...1.0.1

Quarkus OpenAPI Generator - v1.0.0

02 Dec 14:53
Compare
Choose a tag to compare

Hooray! This is the first release of the OpenAPI Generator extension that we consider to be a stable release. Thank you all for your contributions and for being part of the community!

We will keep the 1.x branch compatible with Quarkus 2.x and the 2.x (future) branch to Quarkus 3.x. Stay tuned!

What's Changed

New Contributors

Full Changelog: 0.12.0...1.0.0

Quarkus OpenAPI Generator - v0.12.0

20 Oct 18:40
Compare
Choose a tag to compare
Pre-release

What's Changed

New Contributors

Full Changelog: 0.11.0...0.12.0

Quarkus OpenAPI Generator - v0.11.0

12 Sep 13:48
Compare
Choose a tag to compare
Pre-release

What's Changed

New Contributors

Full Changelog: 0.10.0...0.11.0

Quarkus OpenAPI Generator - v0.10.0

02 Sep 20:27
Compare
Choose a tag to compare
Pre-release

What's Changed

New Contributors

Full Changelog: 0.9.0...0.10.0

Quarkus OpenAPI Generator - v0.9.0

30 Jun 11:20
Compare
Choose a tag to compare
Pre-release

Breaking Change!

In this release, we introduce a change that might break a few setups. If your OpenAPI spec file doesn't have a default server defined, the generated REST stub won't have a baseUrl defined. The annotation will look like this for a file named myspec.yaml:

@RegisterRestClient(configKey="myspec_yaml")
public interface MyService {
    // content suppressed
}

So to properly configure the endpoint URL, you can use the quarkus.rest-client.myspec_yaml.url configuration key of the Quarkus REST Client extension.

Before this change, the default baseUri annotation parameter would be http://localhost. Please update your configuration if you expect to have localhost as your default server endpoint.

What's Changed

Full Changelog: 0.8.0...0.9.0