-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Migrate to non-deprecated functions of api/types/filters
#1237
Merged
vdemeester
merged 1 commit into
docker:master
from
vdemeester:use-non-deprecated-filters-funcs
Jul 27, 2018
Merged
Migrate to non-deprecated functions of api/types/filters
#1237
vdemeester
merged 1 commit into
docker:master
from
vdemeester:use-non-deprecated-filters-funcs
Jul 27, 2018
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Use `Contains` instead of `Include` - Use `ToJSON` instead of `ToParam` - Remove usage of `ParseFlag` as it is deprecated too Signed-off-by: Vincent Demeester <vincent@sbr.pm>
vdemeester
force-pushed
the
use-non-deprecated-filters-funcs
branch
from
July 27, 2018 13:37
88cdacf
to
55edeb4
Compare
Codecov Report
@@ Coverage Diff @@
## master #1237 +/- ##
==========================================
- Coverage 54.25% 54.23% -0.02%
==========================================
Files 268 268
Lines 17799 17805 +6
==========================================
Hits 9656 9656
- Misses 7536 7542 +6
Partials 607 607 |
silvin-lubecki
approved these changes
Jul 27, 2018
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
thaJeztah
approved these changes
Jul 27, 2018
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
selansen
pushed a commit
to selansen/cli
that referenced
this pull request
Jul 29, 2018
…ters-funcs Migrate to non-deprecated functions of `api/types/filters`
selansen
pushed a commit
to selansen/cli
that referenced
this pull request
Jul 29, 2018
…ters-funcs Migrate to non-deprecated functions of `api/types/filters` Signed-off-by: selansen <elango.siva@docker.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Contains
instead ofInclude
ToJSON
instead ofToParam
ParseFlag
as it is deprecated tooSee https://godoc.org/github.com/docker/docker/api/types/filters for
Deprecated
methods.Signed-off-by: Vincent Demeester vincent@sbr.pm