Skip to content

Commit

Permalink
Adjust CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
ydah committed May 16, 2024
1 parent ede3552 commit 952557b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]
- Rename `parameter_overwite_by_rails_rule` to `parameter_overwrite_by_rails_rule` #396

### Added

- Add `allow_blank_structures` option #417
- Allow Empty Response Body. supported on Hyper-schema parser but will default to true in next major version.

### Changed

- Rename `parameter_overwite_by_rails_rule` to `parameter_overwrite_by_rails_rule` #396
- You can use old option name but it will be deprecated in next major version.

## [5.2.0] - 2024-05-04
- Error explicitly that OpenAPI 3.1+ isn't supported #418

Expand Down
4 changes: 3 additions & 1 deletion lib/committee/request_unpacker.rb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def unpack_request_params(request)
end

def unpack_query_params(request)
@allow_query_params ? self.class.indifferent_params(request.GET) : {}
pp request.GET
pp request.POST
@allow_query_params ? self.class.indifferent_params(request.params) : {}
end

def unpack_headers(request)
Expand Down

0 comments on commit 952557b

Please sign in to comment.