This commit has broken our app.
app.current_request.query_params now returns a chalice.app.MultiDict object, whereas it used to be a dict. So we could call app.current_request.query_params.pop('xyz', None) but can't do that anymore.
Not a huge deal as we can make changes at our end, but it's slightly annoying since there are quite a few patterns of this usage in our app.