logstash-output-elasticsearch_java 2.1.1 → 2.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a7fc242ad8da3333681f40d206e87c3f74357553
4
- data.tar.gz: 94def1258bb5cfec862cbf2dd9ed2d8d1dcd910a
3
+ metadata.gz: 9637f30ee389aaeec7800905a643522a612dcbc8
4
+ data.tar.gz: d0b76e9456965b1056868d611825736fa09d51ef
5
5
  SHA512:
6
- metadata.gz: 5f49f95de95d4b5c3d88797975646d9e55498c9215976ab3886bd3f065bb2c9619dbb555f755f6ca58d42b4d13ce79608b654e771abc13884a4ff34ea73d30c2
7
- data.tar.gz: 91f2e994c7d181d9fdbea8f61af61dee862ed38fe3f664346d16af48fd0b5c1ecb03fdfe33f3557a92d906100c1187cd9b6fa23f0f994793337776e0108db6af
6
+ metadata.gz: 1012c93eacb7727e54a46e99af5e3a47ceef0fd47d355efd090e6f978de5094783cef2d1f0cc58f0d6bb2dd02f6b38d710306587b39765602c6de5c7ef03955c
7
+ data.tar.gz: 6db23557cb10faf7139fee166759e2f4921283624871363fe6a330f4422db939e840a5584a14fa926fcec75ba962d38177e07b8fb77f1c9844e7c4da19603e0d
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # 2.1.3
2
+ - Depend on logstash-core-plugin-api instead of logstash-core, removing the need to mass update plugins on major releases of logstash
3
+ # 2.1.2
4
+ - New dependency requirements for logstash-core for the 5.0 release
1
5
  ## 2.1.1
2
6
  - Support Elasticsearch 2.1.0
3
7
  - Fix issue where transport client w/o port specified breaks
@@ -113,8 +113,8 @@ class LogStash::Outputs::ElasticSearchJava < LogStash::Outputs::Base
113
113
  # configured).
114
114
  #
115
115
  # If you do not specify the `host` parameter, it will use multicast for http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-discovery-zen.html[Elasticsearch discovery]. While this may work in a test/dev environment where multicast is enabled in
116
- # Elasticsearch, we strongly recommend http://www.elastic.co/guide/en/elasticsearch/guide/current/_important_configuration_changes.html#_prefer_unicast_over_multicast[disabling multicast]
117
- # in Elasticsearch. To connect to an Elasticsearch cluster with multicast disabled,
116
+ # Elasticsearch, we strongly recommend http://www.elastic.co/guide/en/elasticsearch/guide/current/important-configuration-changes.html#unicast[using unicast]
117
+ # in Elasticsearch. To connect to an Elasticsearch cluster with unicast,
118
118
  # you must include the `host` parameter (see relevant section above).
119
119
  #
120
120
  # The 'transport' protocol will connect to the host you specify and will
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-elasticsearch_java'
3
- s.version = '2.1.1'
3
+ s.version = '2.1.3'
4
4
  s.licenses = ['apache-2.0']
5
5
  s.summary = "Logstash Output to Elasticsearch using Java node/transport client"
6
6
  s.description = "Output events to elasticsearch using the java client"
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
23
23
  s.add_runtime_dependency 'elasticsearch', ['>= 1.0.13', '~> 1.0']
24
24
  s.add_runtime_dependency 'stud', ['>= 0.0.17', '~> 0.0']
25
25
  s.add_runtime_dependency 'cabin', ['~> 0.6']
26
- s.add_runtime_dependency "logstash-core", ">= 2.0.0.beta2", "< 3.0.0"
26
+ s.add_runtime_dependency "logstash-core-plugin-api", "~> 1.0"
27
27
  s.add_runtime_dependency "logstash-output-elasticsearch", ">= 2.1.4"
28
28
 
29
29
  s.add_development_dependency 'ftw', '~> 0.0.42'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-elasticsearch_java
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elastic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-12-04 00:00:00.000000000 Z
11
+ date: 2016-03-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -81,23 +81,17 @@ dependencies:
81
81
  - !ruby/object:Gem::Dependency
82
82
  requirement: !ruby/object:Gem::Requirement
83
83
  requirements:
84
- - - ">="
85
- - !ruby/object:Gem::Version
86
- version: 2.0.0.beta2
87
- - - "<"
84
+ - - "~>"
88
85
  - !ruby/object:Gem::Version
89
- version: 3.0.0
90
- name: logstash-core
86
+ version: '1.0'
87
+ name: logstash-core-plugin-api
91
88
  prerelease: false
92
89
  type: :runtime
93
90
  version_requirements: !ruby/object:Gem::Requirement
94
91
  requirements:
95
- - - ">="
96
- - !ruby/object:Gem::Version
97
- version: 2.0.0.beta2
98
- - - "<"
92
+ - - "~>"
99
93
  - !ruby/object:Gem::Version
100
- version: 3.0.0
94
+ version: '1.0'
101
95
  - !ruby/object:Gem::Dependency
102
96
  requirement: !ruby/object:Gem::Requirement
103
97
  requirements: