Prepare release 1.4.2 (#842)
This commit is contained in:
parent
1fea1f8d19
commit
8a5daa8605
|
@ -6,6 +6,13 @@
|
||||||
|
|
||||||
#### Fixes
|
#### Fixes
|
||||||
|
|
||||||
|
* Your contribution here.
|
||||||
|
|
||||||
|
|
||||||
|
### 1.4.2 (October 22, 2021)
|
||||||
|
|
||||||
|
#### Fixes
|
||||||
|
|
||||||
* [#840](https://github.com/ruby-grape/grape-swagger/pull/840): Fixes documentation of `additionalProperties` field when used with array parameters, or when setting it to `false` - [@magni-](https://github.com/magni-)
|
* [#840](https://github.com/ruby-grape/grape-swagger/pull/840): Fixes documentation of `additionalProperties` field when used with array parameters, or when setting it to `false` - [@magni-](https://github.com/magni-)
|
||||||
* [#841](https://github.com/ruby-grape/grape-swagger/pull/839): Fixes `type` and `format` values for object fields nested in an array ([#832](https://github.com/ruby-grape/grape-swagger/issue/832)) - [@magni-](https://github.com/magni-)
|
* [#841](https://github.com/ruby-grape/grape-swagger/pull/839): Fixes `type` and `format` values for object fields nested in an array ([#832](https://github.com/ruby-grape/grape-swagger/issue/832)) - [@magni-](https://github.com/magni-)
|
||||||
* [#839](https://github.com/ruby-grape/grape-swagger/pull/839): Fixes documentation of `false` or `nil` default parameter values - [@magni-](https://github.com/magni-)
|
* [#839](https://github.com/ruby-grape/grape-swagger/pull/839): Fixes documentation of `false` or `nil` default parameter values - [@magni-](https://github.com/magni-)
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
## Upgrading Grape-swagger
|
## Upgrading Grape-swagger
|
||||||
|
|
||||||
### Upgrading to >= 1.4.1
|
### Upgrading to >= 1.4.2
|
||||||
|
|
||||||
- `additionalProperties` has been deprecated and will be removed in a future version of `grape-swagger`. It has been replaced with `additional_properties`.
|
- `additionalProperties` has been deprecated and will be removed in a future version of `grape-swagger`. It has been replaced with `additional_properties`.
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
module GrapeSwagger
|
module GrapeSwagger
|
||||||
VERSION = '1.4.1'
|
VERSION = '1.4.2'
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue