diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b942932..4b91f5a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog + +## v1.2.2 _Metaphorical Music_ + +- Fix route match error with WordPress 5.5, props socrates77 +- Throw an error early when `.file()` is passed a Buffer object without an accompanying name string, props @cungminh2710 & @mvhirsch + + +## v1.2.1 _Colomb_ + +- Fix issue where `li` was improperly declared as a dev-only dependency, props @el-lsan & @jerolan. + + +## v1.2.0 _Space Is Only Noise_ + +- **BREAKING**: The minimum supported node version is now v8.6, or v8.2.1 with the `--harmony` flag. +- **BREAKING**: `._paging.total` and `._paging.totalPages` response properties are now returned as integers, not strings. +- Bundled route handlers are now available for new first-party endpoints in WordPress 5.0. +- The project now uses Jest and ESLint in place of Mocha, Chai, JSCS and JSHint. Thank you for your years of service, ["nyan" reporter](https://mochajs.org/#nyan)! +- Browser bundle size has been reduced. + + ## v1.1.2 _If I Survive_ - Resolves an issue where authentication credentials where not maintained properly when iterating through pages of a connection with `._paging.next` or `._paging.prev`, props @motleydev for the reproducible bug report @@ -43,9 +64,9 @@ v1.0 namesake album _Emotional Technology_ by BT. - Add CHANGELOG.md - Reduce complexity of, and rename, default routes JSON file -- BREAKING: Remove third "merge" argument from `.param()` method signature +- **BREAKING**: Remove third "merge" argument from `.param()` method signature - Document `.settings()` top-level route handler -- BREAKING: Return API error objects directly from HTTP transport: only return a transport-level error object in the event of a non-API error +- **BREAKING**: Return API error objects directly from HTTP transport: only return a transport-level error object in the event of a non-API error - Add `.status()` parameter method mixin - Properly register `.password()` and `.sticky()` parameter mixins - Utilize the HTTP transport methods during auto-discovery process diff --git a/README.md b/README.md index 349408c3..9341e491 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ A WordPress REST API client for JavaScript ========================================== -This library is an isomorphic client for the [WordPress REST API](http://developer.wordpress.org/rest-api), designed to work with WordPress 4.7 or later. If you are using the older [WP REST API plugin](https://github.com/WP-API/WP-API), some commands will not work. +This library is an isomorphic client for the [WordPress REST API](http://developer.wordpress.org/rest-api), designed to work with WordPress 5.0 or later. If you are using the older [WP REST API plugin](https://github.com/WP-API/WP-API) or WordPress 4.9, some commands will not work. [](https://gitter.im/wp-api/node-wpapi?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge) @@ -41,7 +41,7 @@ To get started, `npm install wpapi` or [download the browser build](https://wp-a ## Installation -`node-wpapi` works both on the server or in the browser. Node.js version 8 or higher is required, and the latest LTS release is recommended. +`node-wpapi` works both on the server or in the browser. Node.js version 8.6 or higher (or version 8.2.1 with the `--harmony` flag) is required, and the latest LTS release is recommended. In the browser `node-wpapi` officially supports the latest two versions of all evergreen browsers, and Internet Explorer 11. @@ -524,7 +524,7 @@ Files may be uploaded to the WordPress media library by creating a media record The file to upload can be specified as - a `String` describing an image file path, _e.g._ `'/path/to/the/image.jpg'` -- a `Buffer` with file content, _e.g._ `new Buffer()` +- a `Buffer` with file content, _e.g._ `Buffer.from()` (or the result of a `readFile` call) - a file object from a `` element, _e.g._ `document.getElementById( 'file-input' ).files[0]` The file is passed into the `.file()` method: @@ -533,7 +533,7 @@ The file is passed into the `.file()` method: wp.media().file(content [, name])... ``` -The optional second string argument specifies the file name to use for the uploaded media. If the name argument is omitted `file()` will try to infer a filename from the provided content. +The optional second string argument specifies the file name to use for the uploaded media. If the name argument is omitted `file()` will try to infer a filename from the provided file path. Note that when uploading a Buffer object `name` is a required argument, because no name can be automatically inferred from the buffer. #### Adding Media to a Post diff --git a/lib/constructors/wp-request.js b/lib/constructors/wp-request.js index d5d9cd0b..78eaeda4 100644 --- a/lib/constructors/wp-request.js +++ b/lib/constructors/wp-request.js @@ -633,6 +633,11 @@ WPRequest.prototype.auth = function( credentials ) { * .file( '/path/to/file.jpg' ) * .create({})... * + * wp.media() + * // Pass .file() an image as a Buffer object, and a filename string + * .file( imgBuffer, 'desired-title.jpg' ) + * .create({})... + * * @example