-
Notifications
You must be signed in to change notification settings - Fork 16
Support entire query for security:searchProfiles #667
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
Conversation
Codecov Report
@@ Coverage Diff @@
## 7-dev #667 +/- ##
==========================================
+ Coverage 83.40% 83.81% +0.41%
==========================================
Files 36 39 +3
Lines 1766 1885 +119
Branches 324 343 +19
==========================================
+ Hits 1473 1580 +107
- Misses 227 237 +10
- Partials 66 68 +2
Continue to review full report at Codecov.
|
from: undefined, | ||
size: undefined, | ||
scroll: undefined | ||
opt: 'in' |
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.
I personally prefer to add a test than to modify an existing one even if you copy/paste it
@@ -1067,8 +1065,7 @@ describe('Security Controller', () => { | |||
controller: 'security', | |||
action: 'searchRoles', | |||
body: {controllers: ['foo', 'bar']}, | |||
from: undefined, | |||
size: undefined | |||
opt: 'in', |
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.
I personally prefer to add a test than to modify an existing one even if you copy/paste it
# [7.8.3](https://github.com/kuzzleio/sdk-javascript/releases/tag/7.8.3) (2022-01-27) #### Bug fixes - [ [#683](#683) ] Fix authenticator token verification ([Shiranuit](https://github.com/Shiranuit)) #### Enhancements - [ [#680](#680) ] Add debug mode ([Aschen](https://github.com/Aschen)) - [ [#676](#676) ] Add HTTP protocol support for Observer ([Aschen](https://github.com/Aschen)) - [ [#667](#667) ] Support entire query for security:searchProfiles ([Aschen](https://github.com/Aschen)) - [ [#669](#669) ] Add more context to errors ([clementbolin](https://github.com/clementbolin)) #### Others - [ [#674](#674) ] Add types for mRequests and mResponses ([Aschen](https://github.com/Aschen)) ---
What does this PR do ?
Since Kuzzle 2.14.1, the
security:searchProfiles
action can take a search query.This PR update the SDK and doc to support this.
Other changes