Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 24, 2023

Bumps base from 2023.6-SNAPSHOT to 2023.6.
Updates io.openapiprocessor:openapi-processor-test from 2023.6-SNAPSHOT to 2023.6

Release notes

Sourced from io.openapiprocessor:openapi-processor-test's releases.

2023.6

(new) support different enum styles

it is now possible to (globally) configure different enum types in mapping.yaml:

openapi-processor-mapping: v5 options: package-name: generated enum-type: default|string|framework

default, which is default, creates a simple java enum with all uppercase enum values. It will create the same code as previous versions.

string, simply uses String and does not create an enum class. This is useful if automatic conversion of the incoming value to a java enum value does not work. In case bean-validation is enabled the processor adds a (generated) validation annotation that verifies that the string is a valid (OpenAPI) enum value.

public interface FooApi { @Mapping(path = "/foo", produces = {"application/json"}) Foo postFoo(@Parameter(name = "enum") @Values(values = {"one", "two"}) String aEnum); }

framework, is a placeholder for framework specific enum generation, only supported by openapi-processor-spring.

Commits

Updates io.openapiprocessor:openapi-processor-core from 2023.6-SNAPSHOT to 2023.6

Release notes

Sourced from io.openapiprocessor:openapi-processor-core's releases.

2023.6

(new) support different enum styles

it is now possible to (globally) configure different enum types in mapping.yaml:

openapi-processor-mapping: v5 options: package-name: generated enum-type: default|string|framework

default, which is default, creates a simple java enum with all uppercase enum values. It will create the same code as previous versions.

string, simply uses String and does not create an enum class. This is useful if automatic conversion of the incoming value to a java enum value does not work. In case bean-validation is enabled the processor adds a (generated) validation annotation that verifies that the string is a valid (OpenAPI) enum value.

public interface FooApi { @Mapping(path = "/foo", produces = {"application/json"}) Foo postFoo(@Parameter(name = "enum") @Values(values = {"one", "two"}) String aEnum); }

framework, is a placeholder for framework specific enum generation, only supported by openapi-processor-spring.

Commits

Updates io.openapiprocessor:openapi-processor-core-parser-api from 2023.6-SNAPSHOT to 2023.6

Release notes

Sourced from io.openapiprocessor:openapi-processor-core-parser-api's releases.

2023.6

(new) support different enum styles

it is now possible to (globally) configure different enum types in mapping.yaml:

openapi-processor-mapping: v5 options: package-name: generated enum-type: default|string|framework

default, which is default, creates a simple java enum with all uppercase enum values. It will create the same code as previous versions.

string, simply uses String and does not create an enum class. This is useful if automatic conversion of the incoming value to a java enum value does not work. In case bean-validation is enabled the processor adds a (generated) validation annotation that verifies that the string is a valid (OpenAPI) enum value.

public interface FooApi { @Mapping(path = "/foo", produces = {"application/json"}) Foo postFoo(@Parameter(name = "enum") @Values(values = {"one", "two"}) String aEnum); }

framework, is a placeholder for framework specific enum generation, only supported by openapi-processor-spring.

Commits

Updates io.openapiprocessor:openapi-processor-core-parser-swagger from 2023.6-SNAPSHOT to 2023.6

Release notes

Sourced from io.openapiprocessor:openapi-processor-core-parser-swagger's releases.

2023.6

(new) support different enum styles

it is now possible to (globally) configure different enum types in mapping.yaml:

openapi-processor-mapping: v5 options: package-name: generated enum-type: default|string|framework

default, which is default, creates a simple java enum with all uppercase enum values. It will create the same code as previous versions.

string, simply uses String and does not create an enum class. This is useful if automatic conversion of the incoming value to a java enum value does not work. In case bean-validation is enabled the processor adds a (generated) validation annotation that verifies that the string is a valid (OpenAPI) enum value.

public interface FooApi { @Mapping(path = "/foo", produces = {"application/json"}) Foo postFoo(@Parameter(name = "enum") @Values(values = {"one", "two"}) String aEnum); }

framework, is a placeholder for framework specific enum generation, only supported by openapi-processor-spring.

Commits

Updates io.openapiprocessor:openapi-processor-core-parser-openapi4j from 2023.6-SNAPSHOT to 2023.6

Release notes

Sourced from io.openapiprocessor:openapi-processor-core-parser-openapi4j's releases.

2023.6

(new) support different enum styles

it is now possible to (globally) configure different enum types in mapping.yaml:

openapi-processor-mapping: v5 options: package-name: generated enum-type: default|string|framework

default, which is default, creates a simple java enum with all uppercase enum values. It will create the same code as previous versions.

string, simply uses String and does not create an enum class. This is useful if automatic conversion of the incoming value to a java enum value does not work. In case bean-validation is enabled the processor adds a (generated) validation annotation that verifies that the string is a valid (OpenAPI) enum value.

public interface FooApi { @Mapping(path = "/foo", produces = {"application/json"}) Foo postFoo(@Parameter(name = "enum") @Values(values = {"one", "two"}) String aEnum); }

framework, is a placeholder for framework specific enum generation, only supported by openapi-processor-spring.

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Bumps `base` from 2023.6-SNAPSHOT to 2023.6. Updates `io.openapiprocessor:openapi-processor-test` from 2023.6-SNAPSHOT to 2023.6 - [Release notes](https://github.com/openapi-processor/openapi-processor-base/releases) - [Commits](https://github.com/openapi-processor/openapi-processor-base/commits/v2023.6) Updates `io.openapiprocessor:openapi-processor-core` from 2023.6-SNAPSHOT to 2023.6 - [Release notes](https://github.com/openapi-processor/openapi-processor-base/releases) - [Commits](https://github.com/openapi-processor/openapi-processor-base/commits/v2023.6) Updates `io.openapiprocessor:openapi-processor-core-parser-api` from 2023.6-SNAPSHOT to 2023.6 - [Release notes](https://github.com/openapi-processor/openapi-processor-base/releases) - [Commits](https://github.com/openapi-processor/openapi-processor-base/commits/v2023.6) Updates `io.openapiprocessor:openapi-processor-core-parser-swagger` from 2023.6-SNAPSHOT to 2023.6 - [Release notes](https://github.com/openapi-processor/openapi-processor-base/releases) - [Commits](https://github.com/openapi-processor/openapi-processor-base/commits/v2023.6) Updates `io.openapiprocessor:openapi-processor-core-parser-openapi4j` from 2023.6-SNAPSHOT to 2023.6 - [Release notes](https://github.com/openapi-processor/openapi-processor-base/releases) - [Commits](https://github.com/openapi-processor/openapi-processor-base/commits/v2023.6) --- updated-dependencies: - dependency-name: io.openapiprocessor:openapi-processor-test dependency-type: direct:production - dependency-name: io.openapiprocessor:openapi-processor-core dependency-type: direct:production - dependency-name: io.openapiprocessor:openapi-processor-core-parser-api dependency-type: direct:production - dependency-name: io.openapiprocessor:openapi-processor-core-parser-swagger dependency-type: direct:production - dependency-name: io.openapiprocessor:openapi-processor-core-parser-openapi4j dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file java Pull requests that update Java code labels Nov 24, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 22, 2023

Superseded by #225.

@dependabot dependabot bot closed this Dec 22, 2023
@dependabot dependabot bot deleted the dependabot/gradle/base-2023.6 branch December 22, 2023 15:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file java Pull requests that update Java code

0 participants