This repository was archived by the owner on May 9, 2019. It is now read-only.
File tree Expand file tree Collapse file tree
wordpress/wp-content/plugins/algolia Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # 0.2.6
2+ - Make sure we detect custom post types before loading indices
3+ - Log errors even when logging is turned off
4+ - Add some contextual help in the admin UI
5+
16# 0.2.5
27- Mainly wording adjustments
38
Original file line number Diff line number Diff line change 11{
2- "name" : " algolia/algoliasearch-wordpress-plugin " ,
2+ "name" : " algolia/algoliasearch-wordpress" ,
33 "description" : " Algolia Search for Wordpress" ,
44 "config" : {
55 "vendor-dir" : " wordpress/wp-content/plugins/algolia/vendor"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ var siteBuild = Metalsmith(__dirname)
2222 . metadata ( {
2323 title : 'Algolia Search Plugin for WordPress' ,
2424 url : 'https://github.com/algolia/algoliasearch-wordpress-plugin' ,
25- version : '0.2.5 ' ,
25+ version : '0.2.6 ' ,
2626 time : new Date ( ) . getTime ( ) ,
2727 } )
2828
Original file line number Diff line number Diff line change 11{
22 "name" : " algoliasearch-wordpress-plugin" ,
3- "version" : " 0.2.5 " ,
3+ "version" : " 0.2.6 " ,
44 "description" : " Requirements: - docker - docker-compose" ,
55 "main" : " index.js" ,
66 "directories" : {
Original file line number Diff line number Diff line change @@ -29,3 +29,39 @@ Fully extensible by the means of WordPress filters and hooks for building your c
29291. Activate the Algolia Search plugin through the 'Plugins' screen in WordPress
30301. If you have no Algolia account, go get one for free here: [Algolia sign-up page](https://www.algolia.com/users/sign_up)
31311. From here you can follow the on-boarding tour to get your search up and running
32+
33+ == Changelog ==
34+
35+ = 0.2.6 =
36+ * Make sure we detect custom post types before loading indices
37+ * Log errors even when logging is turned off
38+ * Add some contextual help in the admin UI
39+
40+ = 0.2.5 =
41+ * Mainly wording adjustments
42+
43+ = 0.2.4 =
44+ * Add 'post_date_formatted' to post records in Algolia
45+
46+ = 0.2.3 =
47+ * Only forward WordPress cookie entries in async calls, resolves most of the queue being stopped issues
48+
49+ = 0.2.2 =
50+ * Fix header size overflow due to cookies that made the queue stop at every few task
51+ * Add a notice on indexing screen if wp_remote_post is not usable
52+ * Log failed credentials validation
53+
54+ = 0.2.1 =
55+ * Allow indexing of custom post types
56+ * Scope logging disabled notice to logs page
57+ * Fix the queue status display on indexing page for simple tasks
58+ * Display notices in admin for every unmet requirement (cURL, mbstring)
59+
60+ = 0.2.0 =
61+ * Implement retry strategy for tasks processing
62+ * Allow to (en|dis)able logging from admin Logs page
63+
64+ = 0.0.1 =
65+ * Initial Stable Release
66+
67+
Original file line number Diff line number Diff line change 55 * Plugin Name: Algolia Search
66 * Plugin URI: https://community.algolia.com/wordpress
77 * Description: Algolia Search plugin for WordPress is a drop in replacement for WordPress search. It also provides an optional "as you type" auto-complete experience.
8- * Version: 0.2.5
8+ * Version: 0.2.6
99 * Author: Algolia
1010 * Author URI: https://www.algolia.com/
1111 * License: MIT
3131}
3232
3333// The Algolia Search plugin version.
34- define ( 'ALGOLIA_VERSION ' , '0.2.5 ' );
34+ define ( 'ALGOLIA_VERSION ' , '0.2.6 ' );
3535
3636if ( ! defined ( 'ALGOLIA_PATH ' ) ) {
3737 define ( 'ALGOLIA_PATH ' , plugin_dir_path ( __FILE__ ) );
You can’t perform that action at this time.
0 commit comments