You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Rename the v0.132.0 entry to v0.136.0 (the upcoming release for this
PR), move it above v0.135.0 for chronological order, and add the
UnevaluatedItems/UnevaluatedProperties → BoolSchema type change.
Addresses fenollp's review on getkin#1125.
Copy file name to clipboardExpand all lines: README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -313,6 +313,11 @@ for _, path := range doc.Paths.InMatchingOrder() {
313
313
314
314
## CHANGELOG: Sub-v1 breaking API changes
315
315
316
+
### v0.136.0
317
+
*`openapi3.Schema.ExclusiveMin` and `openapi3.Schema.ExclusiveMax` fields changed from `bool` to `ExclusiveBound` (a union type holding `*bool` for OpenAPI 3.0 or `*float64` for OpenAPI 3.1).
318
+
*`openapi3.Schema.PrefixItems` field changed from `[]*SchemaRef` to `SchemaRefs`.
319
+
*`openapi3.Schema.UnevaluatedItems` and `openapi3.Schema.UnevaluatedProperties` fields changed from `*SchemaRef` to `BoolSchema` (a union type accepting either a boolean or a schema object).
320
+
316
321
### v0.135.0
317
322
*`openapi3.MediaType.Encoding` field type changed from `map[string]*Encoding` to `Encodings`
318
323
*`openapi3.Server.Variables` field type changed from `map[string]*ServerVariable` to `ServerVariables`
@@ -321,9 +326,6 @@ for _, path := range doc.Paths.InMatchingOrder() {
*`openapi3.Origin` gained `Sequences` field (`map[string][]Location`, extending previous `map[string]Location`-only struct)
323
328
324
-
### v0.132.0
325
-
*`openapi3.Schema.ExclusiveMin` and `openapi3.Schema.ExclusiveMax` fields changed from `bool` to `ExclusiveBound` (a union type holding `*bool` for OpenAPI 3.0 or `*float64` for OpenAPI 3.1).
326
-
*`openapi3.Schema.PrefixItems` field changed from `[]*SchemaRef` to `SchemaRefs`.
327
329
### v0.131.0
328
330
* No longer `openapi3filter.RegisterBodyDecoder` the `openapi3filter.ZipFileBodyDecoder` by default.
0 commit comments