-
Notifications
You must be signed in to change notification settings - Fork 14
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
Support new object search #676
Conversation
Just for the purity of coming changes. The `interface{}` declarations became `any`. Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #676 +/- ##
==========================================
- Coverage 60.45% 60.23% -0.23%
==========================================
Files 165 165
Lines 22238 22683 +445
==========================================
+ Hits 13444 13663 +219
- Misses 8449 8674 +225
- Partials 345 346 +1 ☔ View full report in Codecov by Sentry. |
71f42c3
to
d5b0d83
Compare
From nspcc-dev/neofs-api@e66b25d. Brought container's meta information consistency attribute declaration along several with doc improvements. Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
From nspcc-dev/neofs-api@d5777f8. Importers of related generated code break, but the previous typedef is not left: direct import is expected only in system code. It is fixed. Functionality supporting the new feature on the API client will be provided later. Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
Fix `intrange` linter remarks. Refs #552. Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
d5b0d83
to
d068413
Compare
In the original presentation, parameters' optionality followed from the protocol. However, in practice, the opposite is expected: - some objects are filtered out; - attributes' values are in demand; - `for` loop mostly used for gathering, so cursor is always set; - count is rarely limited. Signed-off-by: Leonard Lyubich <leonard@morphbits.io>
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.
Why is the last commit not part of the original change?
original change followed already used approach on optionality of parameters, and was legit overall. #676 (comment) proposed API with better practical potential, so i decided to add it above |
introduced in nspcc-dev/neofs-api#314