diff --git a/BREAKING-CHANGES-EXAMPLES.md b/BREAKING-CHANGES-EXAMPLES.md index b29052e3..590b52ce 100644 --- a/BREAKING-CHANGES-EXAMPLES.md +++ b/BREAKING-CHANGES-EXAMPLES.md @@ -153,6 +153,8 @@ These examples are automatically generated from unit tests. [adding a new media type to response](checker/check-response-mediatype-updated_test.go?plain=1#L11) [adding a new oauth security scope](checker/check-components-security-updated_test.go?plain=1#L95) [adding a new operation id](checker/check-api-operation-id-updated_test.go?plain=1#L61) +[adding a new optional request property](checker/check-request-property-updated_test.go?plain=1#L33) +[adding a new required request property](checker/check-request-property-updated_test.go?plain=1#L11) [adding a new security component](checker/check-components-security-updated_test.go?plain=1#L55) [adding a new security to the API endpoint](checker/check-api-security-updated_test.go?plain=1#L93) [adding a new tag](checker/check-api-tag-updated_test.go?plain=1#L11) @@ -175,6 +177,10 @@ These examples are automatically generated from unit tests. [changing an existing header param from required to optional](checker/checker_request_parameter_required_value_updated_test.go?plain=1#L35) [changing an existing header param to optional](checker/checker_not_breaking_test.go?plain=1#L133) [changing an existing request body from required to optional](checker/checker_not_breaking_test.go?plain=1#L53) +[changing optional request property to not read-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L86) +[changing optional request property to not write-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L36) +[changing optional request property to read-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L61) +[changing optional request property to write-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L11) [changing optional response property to not read-only](checker/check-response-optional-property-write-only-read-only_test.go?plain=1#L88) [changing optional response property to not write-only](checker/check-response-optional-property-write-only-read-only_test.go?plain=1#L37) [changing optional response property to read-only](checker/check-response-optional-property-write-only-read-only_test.go?plain=1#L62) @@ -182,17 +188,31 @@ These examples are automatically generated from unit tests. [changing optional response property to write-only](checker/check-response-optional-property-write-only-read-only_test.go?plain=1#L11) [changing optional response write-only property to required](checker/check-response-property-became-required_test.go?plain=1#L33) [changing pattern of request parameters](checker/check-request-parameter-pattern-added-or-changed_test.go?plain=1#L11) +[changing request body default value](checker/check-request-property-default-value-changed_test.go?plain=1#L11) +[changing request body to not nullable](checker/check-request-property-became-not-nuallable_test.go?plain=1#L84) +[changing request body to nullable](checker/check-request-property-became-not-nuallable_test.go?plain=1#L58) +[changing request body type/format](checker/check-request-property-type-changed_test.go?plain=1#L36) [changing request header parameter format](checker/check-request-parameters-type-changed_test.go?plain=1#L136) [changing request header parameter type](checker/check-request-parameters-type-changed_test.go?plain=1#L61) [changing request parameter default value](checker/check-request-parameters-default-value-changed_test.go?plain=1#L11) [changing request parameter type to enum](checker/check-request-parameter-became-enum_test.go?plain=1#L11) [changing request path parameter format](checker/check-request-parameters-type-changed_test.go?plain=1#L86) [changing request path parameter type](checker/check-request-parameters-type-changed_test.go?plain=1#L11) +[changing request property default value](checker/check-request-property-default-value-changed_test.go?plain=1#L34) [changing request property pattern](checker/check-request-property-pattern-added-or-changed_test.go?plain=1#L11) +[changing request property required value to false](checker/check-request-property-required-updated_test.go?plain=1#L34) +[changing request property required value to true](checker/check-request-property-required-updated_test.go?plain=1#L11) +[changing request property to not nullable](checker/check-request-property-became-not-nuallable_test.go?plain=1#L11) +[changing request property to nullable](checker/check-request-property-became-not-nuallable_test.go?plain=1#L34) +[changing request property type/format](checker/check-request-property-type-changed_test.go?plain=1#L11) [changing request query parameter format](checker/check-request-parameters-type-changed_test.go?plain=1#L111) [changing request query parameter type](checker/check-request-parameters-type-changed_test.go?plain=1#L36) [changing request's body to optional](checker/check-request-body-required-value-updated_test.go?plain=1#L36) [changing request's body to required is breaking](checker/check-request-body-required-value-updated_test.go?plain=1#L11) +[changing required request property to not read-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L186) +[changing required request property to not write-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L136) +[changing required request property to read-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L161) +[changing required request property to write-only](checker/check-request-property-write-only-read-only_test.go?plain=1#L111) [changing required response property to not read-only](checker/check-response-required-property-write-only-read-only_test.go?plain=1#L89) [changing required response property to not write-only](checker/check-response-required-property-write-only-read-only_test.go?plain=1#L37) [changing required response property to optional](checker/check-response-property-became-optional_test.go?plain=1#L11) @@ -233,6 +253,7 @@ These examples are automatically generated from unit tests. [removing a new security component](checker/check-components-security-updated_test.go?plain=1#L75) [removing a new security to the API endpoint](checker/check-api-security-updated_test.go?plain=1#L116) [removing a non-success response status](checker/check-response-status-updated_test.go?plain=1#L63) +[removing a required request property](checker/check-request-property-updated_test.go?plain=1#L56) [removing a required write-only property that was required in response body is detected](checker/check-response-required-property-updated_test.go?plain=1#L85) [removing a security scope from an API endpoint security](checker/check-api-security-updated_test.go?plain=1#L139) [removing a security scope from an API global security](checker/check-api-security-updated_test.go?plain=1#L51)