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. [![Gitter](https://badges.gitter.im/Join%20Chat.svg)](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 within a browser context * * wp.media() @@ -644,10 +649,14 @@ WPRequest.prototype.auth = function( credentials ) { * @chainable * @param {string|object} file A path to a file (in Node) or an file object * (Node or Browser) to attach to the request - * @param {string} [name] An (optional) filename to use for the file + * @param {string} [name] A filename to use for the file, required when + * providing file data as a Buffer object * @returns {WPRequest} The WPRequest instance (for chaining) */ WPRequest.prototype.file = function( file, name ) { + if ( global.Buffer && file instanceof global.Buffer && ! name ) { + throw new Error( '.file(): File name is a required argument when uploading a Buffer' ); + } this._attachment = file; // Explicitly set to undefined if not provided, to override any previously- // set attachment name property that might exist from a prior `.file()` call diff --git a/lib/util/named-group-regexp.js b/lib/util/named-group-regexp.js index 0a927dd8..632757c3 100644 --- a/lib/util/named-group-regexp.js +++ b/lib/util/named-group-regexp.js @@ -14,7 +14,7 @@ const pattern = [ '[>\']', // Get everything up to the end of the capture group: this is the RegExp used // when matching URLs to this route, which we can use for validation purposes. - '([^\\)]*)', + '([^\\)]*(\\))?\\??)', // Capture group end '\\)', ].join( '' ); diff --git a/package.json b/package.json index f386de0d..55a7043f 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "url": "http://www.kadamwhite.com" }, "name": "wpapi", - "version": "1.1.2", + "version": "1.2.2", "description": "An isomorphic JavaScript client for interacting with the WordPress REST API", "main": "wpapi.js", "repository": { @@ -59,6 +59,7 @@ "test": "jest --coverage" }, "dependencies": { + "li": "^1.3.0", "parse-link-header": "^1.0.1", "qs": "^6.6.0", "superagent": "^4.0.0" @@ -78,7 +79,6 @@ "jest": "^23.6.0", "jsdoc": "^3.4.3", "kramed": "^0.5.6", - "li": "^1.3.0", "load-grunt-tasks": "^3.5.0", "lodash.reduce": "^4.6.0", "minami": "^1.2.3", diff --git a/tests/unit/lib/util/named-group-regexp.js b/tests/unit/lib/util/named-group-regexp.js index 66a2ed5a..8ea05b1c 100644 --- a/tests/unit/lib/util/named-group-regexp.js +++ b/tests/unit/lib/util/named-group-regexp.js @@ -46,4 +46,12 @@ describe( 'named PCRE group RegExp', () => { expect( result[ 2 ] ).toBe( '' ); } ); + it( 'correctly handles WP 5.5 plugins routes', () => { + const path = '(?P[^.\\/]+(?:\\/[^.\\/]+)?)'; + const result = path.match( namedGroupRE ); + expect( result ).not.toBeNull(); + expect( result[ 1 ] ).toBe( 'plugin' ); + expect( result[ 2 ] ).toBe( '[^.\\/]+(?:\\/[^.\\/]+)?' ); + } ); + } );