Skip to content

Commit 3919693

Browse files
Version bump
1 parent e17b526 commit 3919693

File tree

3 files changed

+98
-4
lines changed

3 files changed

+98
-4
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## 2.0 Beta 13.0 (??? ??, 2016)
3+
## 2.0 Beta 13.0 (March 29, 2016)
44

55
- BREAKING CHANGE: Fix Content-Disposition header parsing.
66

bin/readme.txt

+96-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: rmccue, rachelbaker, danielbachhuber, joehoyle
33
Tags: json, rest, api, rest-api
44
Requires at least: 4.4
5-
Tested up to: 4.5-alpha
6-
Stable tag: 2.0-beta12
5+
Tested up to: 4.5
6+
Stable tag: 2.0-beta13
77
License: GPLv2 or later
88
License URI: http://www.gnu.org/licenses/gpl-2.0.html
99

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

3939
== Changelog ==
4040

41+
= 2.0 Beta 13.0 (March 29, 2016) =
42+
43+
* BREAKING CHANGE: Fix Content-Disposition header parsing.
44+
45+
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.
46+
47+
(props @rmccue, [#2239](https://github.com/WP-API/WP-API/pull/2239))
48+
49+
* BREAKING CHANGE: Use compact links for embedded responses if they are available.
50+
51+
Introduces curies for sites running WordPress 4.5 or greater; no changes for those running WordPress 4.4.
52+
53+
(props @joehoyle, [#2412](https://github.com/WP-API/WP-API/pull/2412))
54+
55+
* JavaScript client updates:
56+
57+
* Support lodash, plus older and newer underscore: add an alias for `_.contains`
58+
* Add args and options on the model/collection prototypes
59+
* Rework category/tag mixins to support new API structure
60+
* 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
61+
* Better handling of the (special) `me` endpoint
62+
* Schema parsing cleanup
63+
* Introduce `wp.api.loadPromise` so developers can ensure api load complete before using
64+
65+
(props @adamsilverstein, [#2403](https://github.com/WP-API/WP-API/pull/2403))
66+
67+
* Only adds alternate link header for publicly viewable CPTs.
68+
69+
(props @bradyvercher, [#2387](https://github.com/WP-API/WP-API/pull/2387))
70+
71+
* Adds `roles` param for `GET /wp/v2/users`.
72+
73+
(props @BE-Webdesign, [#2372](https://github.com/WP-API/WP-API/pull/2372))
74+
75+
* Declares `password` in user schema, but never displays it.
76+
77+
(props @danielbachhuber, [#2386](https://github.com/WP-API/WP-API/pull/2386))
78+
79+
* Permits `edit` context for requests which can edit the user.
80+
81+
(props @danielbachhuber, [#2383](https://github.com/WP-API/WP-API/pull/2383))
82+
83+
* Adds `rest_pre_insert_{$taxonomy}` filter for terms.
84+
85+
(props @kjbenk, [#2377](https://github.com/WP-API/WP-API/pull/2377))
86+
87+
* Supports taxonomy collection args on posts endpoint.
88+
89+
(props @joehoyle, [#2287](https://github.com/WP-API/WP-API/pull/2287))
90+
91+
* Removes post meta link from post response.
92+
93+
(props @joehoyle, [#2288](https://github.com/WP-API/WP-API/pull/2288))
94+
95+
* Registers `description` attribute when registering args from schema.
96+
97+
(props @danielbachhuber, [#2362](https://github.com/WP-API/WP-API/pull/2362))
98+
99+
* Uses `$comment` from the database with `rest_insert_comment` action.
100+
101+
(props @danielbachhuber, [#2349](https://github.com/WP-API/WP-API/pull/2349))
102+
103+
* Removes unnecessary global variables from users controller.
104+
105+
(props @claudiosmweb, [#2335](https://github.com/WP-API/WP-API/pull/2335))
106+
107+
* Ensures `GET /wp/v2/categories` with out of bounds offset doesn't return results.
108+
109+
(props @danielbachhuber, [#2313](https://github.com/WP-API/WP-API/pull/2313))
110+
111+
* Adds top-level support for date queries on posts and comments.
112+
113+
(props @BE-Webdesign, [#2266](https://github.com/WP-API/WP-API/pull/2266), [#2291](https://github.com/WP-API/WP-API/pull/2291))
114+
115+
* Respects `show_avatars` setting for comments.
116+
117+
(props @BE-Webdesign, [#2271](https://github.com/WP-API/WP-API/pull/2271))
118+
119+
* Uses cached `get_the_terms()` for terms-for-post for better performance.
120+
121+
(props @rmccue, [#2257](https://github.com/WP-API/WP-API/pull/2257))
122+
123+
* Ensures comments search is an empty string.
124+
125+
(props @rmccue, [#2256](https://github.com/WP-API/WP-API/pull/2256))
126+
127+
* If no title is provided in create attachment request or file metadata, falls back to filename.
128+
129+
(props @danielbachhuber, [#2254](https://github.com/WP-API/WP-API/pull/2254))
130+
131+
* Removes unused `$img_url_basename` variable in attachments controller.
132+
133+
(props @danielbachhuber, [#2250](https://github.com/WP-API/WP-API/pull/2250))
134+
41135
= 2.0 Beta 12.0 (February 9, 2016) =
42136

43137
* BREAKING CHANGE: Removes meta endpoints from primary plugin.

plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* Description: JSON-based REST API for WordPress, originally developed as part of GSoC 2013.
55
* Author: WP REST API Team
66
* Author URI: http://v2.wp-api.org
7-
* Version: 2.0-beta12
7+
* Version: 2.0-beta13
88
* Plugin URI: https://github.com/WP-API/WP-API
99
* License: GPL2+
1010
*/

0 commit comments

Comments
 (0)