Skip to content

Commit

Permalink
Bump openapi3 to 0.59.1 (#4169)
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheeguerin committed Aug 13, 2024
1 parent 7797b72 commit f62225b
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 10 deletions.

This file was deleted.

7 changes: 7 additions & 0 deletions packages/openapi3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Change Log - @typespec/openapi3

## 0.59.1

### Bug Fixes

- [#4168](https://github.com/microsoft/typespec/pull/4168) Fix: query params are `explode: true` by default in OpenAPI 3.0


## 0.59.0

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/openapi3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@typespec/openapi3",
"version": "0.59.0",
"version": "0.59.1",
"author": "Microsoft Corporation",
"description": "TypeSpec library for emitting OpenAPI 3.0 from the TypeSpec REST protocol binding and converting OpenAPI3 to TypeSpec",
"homepage": "https://typespec.io",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ components:
schema:
type: integer
format: int32
explode: false
ListRequestBase.page_token:
name: page_token
in: query
Expand All @@ -281,6 +282,7 @@ components:
returned from the previous call to `ListShelves` method.
schema:
type: string
explode: false
MergeShelvesRequest.name:
name: name
in: path
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ paths:
schema:
type: string
nullable: true
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ paths:
schema:
type: string
default: defaultQueryString
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ paths:
format: int32
minimum: 0
maximum: 10
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ paths:
required: false
schema:
type: string
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down Expand Up @@ -103,6 +104,7 @@ paths:
required: true
schema:
type: string
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,7 @@ paths:
required: true
schema:
type: string
explode: false
responses:
'200':
description: The request has succeeded.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ paths:
type: array
items:
type: string
explode: true
responses:
'200':
description: The request has succeeded.
Expand Down

0 comments on commit f62225b

Please sign in to comment.