Skip to content

Commit

Permalink
updated news
Browse files Browse the repository at this point in the history
  • Loading branch information
sckott committed May 1, 2015
1 parent 5b7992d commit fc5484c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Description: Connect to Elasticsearch, a NoSQL database built on the Java Virtua
data, searching for documents with both HTTP query variables and JSON based body
requests. In addition, elastic provides functions for interacting with APIs for
indices, documents, nodes, clusters, an interface to the cat API, and more.
Version: 0.3.9.999
Version: 0.3.9.900
Date: 2015-04-30
License: MIT + file LICENSE
Authors@R: person("Scott", "Chamberlain", role = c("aut", "cre"),
Expand Down
23 changes: 23 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,6 +1,27 @@
elastic 0.4.0
===============

NEW FEATURES

* New function `Search_uri()` where the search is defined entirely in the URL itself.
Especially useful for cases in which `POST` requests are forbidden, e.g, on a server
that prevents `POST` requests (which the function `Search()` uses). (#58)
* New function `nodes_shutdown()` (#23)
* `docs_bulk()` gains ability to push data into Elasticsearch via the bulk http API
from data.frame or list objects. Previously, this function only would accept a file
formatted correctly. In addition, gains new parameters: `index` - The index name to use.
`type` - The type name to use. `chunk_size` - Size of each chunk. (#60) (#67) (#68)

MINOR IMPROVEMENTS

* `cat_*()` functions gain new parameters: `h` to specify what fields to return; `help` to
output available columns, and their meanings; `bytes` to give numbers back machine
friendly; `parse` Parse to a data.frame or not
* `cat_*()` functions can now optionally capture data returned in to a data.frame (#64)
* `Search()` gains new parameter `search_path` to set the path that is used for searching.
The default is `_search`, but sometimes in your configuration you've setup so that
you don't need that path, or it's a different path. (023d28762e7e1028fcb0ad17867f08b5e2c92f93)

BUG FIXES

* In `docs_mget()` added internal checker to make sure user passes in the right combination of
Expand All @@ -16,6 +37,8 @@ values passed in to make sure they are numbers. (#46)
* Across all functions where `index` and `type` parameters used, now using `RCurl::curlEscape()`
to URL escape. Other parameters passed in are go through `httr` CRUD methods, and do URL escaping
for us. (#49)
* Fixed links to development repo in DESCRIPTION file
*

elastic 0.3.0
===============
Expand Down

0 comments on commit fc5484c

Please sign in to comment.