- 
                Notifications
    You must be signed in to change notification settings 
- Fork 17
Add bulk:write and bulk:mWrite #419
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
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.
mainly typos
        
          
                src/controllers/bulk.js
              
                Outdated
          
        
      |  | ||
| /** | ||
| * Create or replace multiple documents directly into the storage engine. | ||
| * https://docs.kuzzle.io/core/1/api/controllers/bulk/m-write/ | 
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.
(nitpicking) use @link (see above)
Co-Authored-By: Sébastien Cottinet <scottinet@protonmail.com>
| Codecov Report
 @@            Coverage Diff            @@
##           6-dev     #419      +/-   ##
=========================================
+ Coverage   96.3%   96.31%   +<.01%     
=========================================
  Files         32       32              
  Lines       1517     1521       +4     
=========================================
+ Hits        1461     1465       +4     
  Misses        56       56
 Continue to review full report at Codecov. 
 | 
| Codecov Report
 @@            Coverage Diff            @@
##           6-dev     #419      +/-   ##
=========================================
+ Coverage   96.3%   96.33%   +0.02%     
=========================================
  Files         32       32              
  Lines       1517     1527      +10     
=========================================
+ Hits        1461     1471      +10     
  Misses        56       56
 Continue to review full report at Codecov. 
 | 
| | \_id | <pre>string</pre> | ID of the newly created document | | ||
| | \_version | <pre>number</pre> | Version of the document in the persistent data storage | | ||
| | \_source | <pre>object</pre> | Created document | ||
| | `\_id` | <pre>string</pre> | ID of the newly created document | | 
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.
Shouldn't you get rid of those backslashes now that these names are between backquotes?
# [6.2.0](https://github.com/kuzzleio/sdk-javascript/releases/tag/6.2.0) (2019-07-31) #### Bug fixes - [ [#428](#428) ] Properly handle boolean flags in HTTP querystrings ([scottinet](https://github.com/scottinet)) - [ [#427](#427) ] Solve promise+event+memory leaks when the network fails ([scottinet](https://github.com/scottinet)) - [ [#424](#424) ] Prevent pending request leak when disconnect the SDK ([Aschen](https://github.com/Aschen)) - [ [#422](#422) ] Fix bug when decoding JWT in browser ([Aschen](https://github.com/Aschen)) - [ [#420](#420) ] Fix http protocol unresolved promise on connection error ([Aschen](https://github.com/Aschen)) #### New features - [ [#419](#419) ] Add bulk:write and bulk:mWrite ([Aschen](https://github.com/Aschen)) #### Enhancements - [ [#421](#421) ] Get api routes from server:publicApi ([Aschen](https://github.com/Aschen)) - [ [#423](#423) ] Emit queryError event on malformed request ([Aschen](https://github.com/Aschen)) - [ [#417](#417) ] Security controller documentation ([benoitvidis](https://github.com/benoitvidis)) ---
What does this PR do?
Add
bulk:writeandbulk:mWritesupport.I'm not sure if it's an enhancement or a new feature (it was a new feature in Kuzzle)