change default value of quote_parameters
to True
#422
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Follow-up to:
In #409, released in
v0.9.0
, we added thequote_parameters
option to thedeploy
method and defaulted it toNone
(to be later converted toFalse
) to preserve existing behavior.We also added a warning when the value was
None
so that we could warn that the default value would change toTrue
inv0.10.0
.This PR:
True
None
or a warning value, and to remove explicit setting where we aren't needing itTo be released in
v0.10.0
If you would like to retain the ability to do a
v0.9.x
patch release, then this PR should not be merged yet, since we announced that this default would not change untilv0.10.0
. So once any other PR that would force that version is merged, this could be merged too.I'm putting this up "early" so that I don't forget, and so the changes are ready when needed. Thanks!