Skip to content

Commit 8ea96b8

Browse files
committed
1.0202
1 parent c0fa8c6 commit 8ea96b8

File tree

7 files changed

+15
-11
lines changed

7 files changed

+15
-11
lines changed

Build.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ my %module_build_args = (
1818
"=over 4"
1919
],
2020
"dist_name" => "Catmandu-Store-Elasticsearch",
21-
"dist_version" => "1.0201",
21+
"dist_version" => "1.0202",
2222
"license" => "perl",
2323
"module_name" => "Catmandu::Store::Elasticsearch",
2424
"recursive_test_files" => 1,

Changes

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
Revision history for Catmandu-Store-ElasticSearch
22

33
{{$NEXT}}
4+
5+
1.0202 2020-03-12 16:31:02 CET
46
- only add type for es 1x-2.x in reader methods
57

68
1.0201 2019-10-11 12:07:18 CEST

README.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ Catmandu::Store::ElasticSearch - A searchable store backed by Elasticsearch
3030
use Catmandu;
3131

3232
my $store = Catmandu->store('ElasticSearch');
33+
# options will be passed to the underlying Search::Elasticsearch client
34+
my $store = Catmandu->store('ElasticSearch', nodes => ['server.example.com:9200']);
3335

3436
my $obj1 = $store->bag('catmandu')->add({ name => 'Patrick' });
3537

@@ -92,14 +94,14 @@ Optionally provide for each bag an `on_error` error handler (See below).
9294

9395
This Catmandu::Store implements:
9496

95-
- [Catmandu::Store](https://metacpan.org/pod/Catmandu::Store)
97+
- [Catmandu::Store](https://metacpan.org/pod/Catmandu%3A%3AStore)
9698

9799
Each Catmandu::Bag in this Catmandu::Store implements:
98100

99-
- [Catmandu::Bag](https://metacpan.org/pod/Catmandu::Bag)
100-
- [Catmandu::Droppable](https://metacpan.org/pod/Catmandu::Droppable)
101-
- [Catmandu::Searchable](https://metacpan.org/pod/Catmandu::Searchable)
102-
- [Catmandu::CQLSearchable](https://metacpan.org/pod/Catmandu::CQLSearchable)
101+
- [Catmandu::Bag](https://metacpan.org/pod/Catmandu%3A%3ABag)
102+
- [Catmandu::Droppable](https://metacpan.org/pod/Catmandu%3A%3ADroppable)
103+
- [Catmandu::Searchable](https://metacpan.org/pod/Catmandu%3A%3ASearchable)
104+
- [Catmandu::CQLSearchable](https://metacpan.org/pod/Catmandu%3A%3ACQLSearchable)
103105

104106
# INDEX MAPPING
105107

@@ -274,7 +276,7 @@ import you data again.
274276

275277
# SEE ALSO
276278

277-
[Catmandu::Store](https://metacpan.org/pod/Catmandu::Store)
279+
[Catmandu::Store](https://metacpan.org/pod/Catmandu%3A%3AStore)
278280

279281
# AUTHOR
280282

lib/Catmandu/Store/ElasticSearch.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch;
22

33
use Catmandu::Sane;
44

5-
our $VERSION = '1.0201';
5+
our $VERSION = '1.0202';
66

77
use Search::Elasticsearch;
88
use Catmandu::Util qw(is_instance);

lib/Catmandu/Store/ElasticSearch/Bag.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch::Bag;
22

33
use Catmandu::Sane;
44

5-
our $VERSION = '1.0201';
5+
our $VERSION = '1.0202';
66

77
use Catmandu::Hits;
88
use Cpanel::JSON::XS qw(encode_json decode_json);

lib/Catmandu/Store/ElasticSearch/CQL.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch::CQL;
22

33
use Catmandu::Sane;
44

5-
our $VERSION = '1.0201';
5+
our $VERSION = '1.0202';
66

77
use Catmandu::Util qw(require_package trim);
88
use CQL::Parser;

lib/Catmandu/Store/ElasticSearch/Searcher.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package Catmandu::Store::ElasticSearch::Searcher;
22

33
use Catmandu::Sane;
44

5-
our $VERSION = '1.0201';
5+
our $VERSION = '1.0202';
66

77
use Moo;
88
use namespace::clean;

0 commit comments

Comments
 (0)