Navigation Menu

Skip to content
This repository has been archived by the owner on Sep 24, 2018. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
danielbachhuber committed Mar 30, 2016
1 parent e17b526 commit 3919693
Show file tree
Hide file tree
Showing 3 changed files with 98 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
@@ -1,6 +1,6 @@
# Changelog

## 2.0 Beta 13.0 (??? ??, 2016)
## 2.0 Beta 13.0 (March 29, 2016)

- BREAKING CHANGE: Fix Content-Disposition header parsing.

Expand Down
98 changes: 96 additions & 2 deletions bin/readme.txt
Expand Up @@ -2,8 +2,8 @@
Contributors: rmccue, rachelbaker, danielbachhuber, joehoyle
Tags: json, rest, api, rest-api
Requires at least: 4.4
Tested up to: 4.5-alpha
Stable tag: 2.0-beta12
Tested up to: 4.5
Stable tag: 2.0-beta13
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -38,6 +38,100 @@ Once you've installed and activated the plugin, [check out the documentation](ht

== Changelog ==

= 2.0 Beta 13.0 (March 29, 2016) =

* BREAKING CHANGE: Fix Content-Disposition header parsing.

Allows regular form submissions from HTML forms, as well as properly formatted HTTP requests from clients. Note: this breaks backwards compatibility, as previously, the header parsing was completely wrong.

(props @rmccue, [#2239](https://github.com/WP-API/WP-API/pull/2239))

* BREAKING CHANGE: Use compact links for embedded responses if they are available.

Introduces curies for sites running WordPress 4.5 or greater; no changes for those running WordPress 4.4.

(props @joehoyle, [#2412](https://github.com/WP-API/WP-API/pull/2412))

* JavaScript client updates:

* Support lodash, plus older and newer underscore: add an alias for `_.contains`
* Add args and options on the model/collection prototypes
* Rework category/tag mixins to support new API structure
* Add workaround for the null/empty values returned by the API when creating a new post * these values are not accepted for subsequent updates/saves, so explicitly excluding them. See https://github.com/WP-API/WP-API/pull/2393
* Better handling of the (special) `me` endpoint
* Schema parsing cleanup
* Introduce `wp.api.loadPromise` so developers can ensure api load complete before using

(props @adamsilverstein, [#2403](https://github.com/WP-API/WP-API/pull/2403))

* Only adds alternate link header for publicly viewable CPTs.

(props @bradyvercher, [#2387](https://github.com/WP-API/WP-API/pull/2387))

* Adds `roles` param for `GET /wp/v2/users`.

(props @BE-Webdesign, [#2372](https://github.com/WP-API/WP-API/pull/2372))

* Declares `password` in user schema, but never displays it.

(props @danielbachhuber, [#2386](https://github.com/WP-API/WP-API/pull/2386))

* Permits `edit` context for requests which can edit the user.

(props @danielbachhuber, [#2383](https://github.com/WP-API/WP-API/pull/2383))

* Adds `rest_pre_insert_{$taxonomy}` filter for terms.

(props @kjbenk, [#2377](https://github.com/WP-API/WP-API/pull/2377))

* Supports taxonomy collection args on posts endpoint.

(props @joehoyle, [#2287](https://github.com/WP-API/WP-API/pull/2287))

* Removes post meta link from post response.

(props @joehoyle, [#2288](https://github.com/WP-API/WP-API/pull/2288))

* Registers `description` attribute when registering args from schema.

(props @danielbachhuber, [#2362](https://github.com/WP-API/WP-API/pull/2362))

* Uses `$comment` from the database with `rest_insert_comment` action.

(props @danielbachhuber, [#2349](https://github.com/WP-API/WP-API/pull/2349))

* Removes unnecessary global variables from users controller.

(props @claudiosmweb, [#2335](https://github.com/WP-API/WP-API/pull/2335))

* Ensures `GET /wp/v2/categories` with out of bounds offset doesn't return results.

(props @danielbachhuber, [#2313](https://github.com/WP-API/WP-API/pull/2313))

* Adds top-level support for date queries on posts and comments.

(props @BE-Webdesign, [#2266](https://github.com/WP-API/WP-API/pull/2266), [#2291](https://github.com/WP-API/WP-API/pull/2291))

* Respects `show_avatars` setting for comments.

(props @BE-Webdesign, [#2271](https://github.com/WP-API/WP-API/pull/2271))

* Uses cached `get_the_terms()` for terms-for-post for better performance.

(props @rmccue, [#2257](https://github.com/WP-API/WP-API/pull/2257))

* Ensures comments search is an empty string.

(props @rmccue, [#2256](https://github.com/WP-API/WP-API/pull/2256))

* If no title is provided in create attachment request or file metadata, falls back to filename.

(props @danielbachhuber, [#2254](https://github.com/WP-API/WP-API/pull/2254))

* Removes unused `$img_url_basename` variable in attachments controller.

(props @danielbachhuber, [#2250](https://github.com/WP-API/WP-API/pull/2250))

= 2.0 Beta 12.0 (February 9, 2016) =

* BREAKING CHANGE: Removes meta endpoints from primary plugin.
Expand Down
2 changes: 1 addition & 1 deletion plugin.php
Expand Up @@ -4,7 +4,7 @@
* Description: JSON-based REST API for WordPress, originally developed as part of GSoC 2013.
* Author: WP REST API Team
* Author URI: http://v2.wp-api.org
* Version: 2.0-beta12
* Version: 2.0-beta13
* Plugin URI: https://github.com/WP-API/WP-API
* License: GPL2+
*/
Expand Down

0 comments on commit 3919693

Please sign in to comment.