logstash-output-elastic_app_search 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fa8fd8e94cc7f5466fd464fd69b0befe6f2232162504a998de0a84b76a1595b5
4
- data.tar.gz: 5fd33c920d8f6331d6205cb4edfd602b5b2797cd0905e1ea7c149d2a249e2cfa
3
+ metadata.gz: 4db812e586bb58a374dbf078f9d2fa42e43eae9a8f53f08dee0913e9690be733
4
+ data.tar.gz: da43265b1a72eeaaa943291a9bc18f7aca3e87403461c01ffbfcc13152e4359d
5
5
  SHA512:
6
- metadata.gz: dc1827cb1a0787a28486b8abd1aa09572e719985898b6db1bf803bebf225f7460067dfc94b4c64bfbd4f00d8d14ba47baf4693cad8629b12c6d9b82d7be989dd
7
- data.tar.gz: 11833676a17f98e624f31b9735f4238b2a0fdf3ff118c4dc9b35854316f4a531a3a65d46fab61a53b5d893babc5ac884945fa04570c0dfd61141cc99564b7639
6
+ metadata.gz: a01665272fe1993eefb689bc088fe32fdbaebbb1fe46dbff6f9cb8e90220dae1008612bfbefa92a2a3ea033bf86975d10d976feff2d0247affa4330bbbbe04d5
7
+ data.tar.gz: a5f9601d14d30b373ed918652afcd822d6bd17bd0cb62789c591ed2b443a55631cc593d0fcc6faef565466f8177056afcbda803229361fdec2f944384e02b345
@@ -1,3 +1,6 @@
1
+ ## 1.1.1
2
+ - Added missed dependency (elastic-app-search) to the gemspec, fixes issue [#17](https://github.com/logstash-plugins/logstash-output-elastic_app_search/issues/17)
3
+
1
4
  ## 1.1.0
2
5
  - Switched AppSearch client library from Java to Ruby [#12](https://github.com/logstash-plugins/logstash-output-elastic_app_search/issues/12)
3
6
  - Covered with integration tests and dockerized local AppSearch server instance.
data/README.md CHANGED
@@ -45,9 +45,9 @@ bundle exec rspec
45
45
 
46
46
  #### CI in local machine
47
47
  The plugins comes with a `.ci` folder that contains Docker configurations to run on the CI, however to run it locally
48
- you have to a local checkout of the [CI's infrastructure project](https://github.com/logstash-plugins/.ci/) and symlink
49
- some files from that into the local clone's `.ci`. Supposing you have the CI project in <CI> the steps from local clone
50
- ot the plugin, are:
48
+ you have to checkout the [CI's infrastructure project](https://github.com/logstash-plugins/.ci/) and symlink
49
+ some files from that into the local clone's `.ci`. Supposing you have the CI project in <CI>, the steps from local clone
50
+ of the plugin are:
51
51
  - `cd .ci`
52
52
  - `ln -s <CI>/.ci/docker-setup.sh docker-setup.sh`
53
53
  - `ln -s <CI>/.ci/docker-run.sh docker-run.sh`
@@ -1,6 +1,6 @@
1
1
  Gem::Specification.new do |s|
2
2
  s.name = 'logstash-output-elastic_app_search'
3
- s.version = '1.1.0'
3
+ s.version = '1.1.1'
4
4
  s.licenses = ['Apache-2.0']
5
5
  s.summary = 'Index data to Elastic App Search'
6
6
  s.description = 'This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program'
@@ -17,10 +17,9 @@ Gem::Specification.new do |s|
17
17
  # Special flag to let us know this is actually a logstash plugin
18
18
  s.metadata = { "logstash_plugin" => "true", "logstash_group" => "output" }
19
19
 
20
- s.add_development_dependency 'jar-dependencies', '~> 0.4'
21
-
22
20
  # Gem dependencies
23
21
  s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
24
22
  s.add_runtime_dependency "logstash-codec-plain"
23
+ s.add_runtime_dependency "elastic-app-search", '~>7.8.0'
25
24
  s.add_development_dependency "logstash-devutils"
26
25
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-elastic_app_search
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joao Duarte
@@ -9,22 +9,8 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2020-07-08 00:00:00.000000000 Z
12
+ date: 2020-09-16 00:00:00.000000000 Z
13
13
  dependencies:
14
- - !ruby/object:Gem::Dependency
15
- requirement: !ruby/object:Gem::Requirement
16
- requirements:
17
- - - "~>"
18
- - !ruby/object:Gem::Version
19
- version: '0.4'
20
- name: jar-dependencies
21
- prerelease: false
22
- type: :development
23
- version_requirements: !ruby/object:Gem::Requirement
24
- requirements:
25
- - - "~>"
26
- - !ruby/object:Gem::Version
27
- version: '0.4'
28
14
  - !ruby/object:Gem::Dependency
29
15
  requirement: !ruby/object:Gem::Requirement
30
16
  requirements:
@@ -53,6 +39,20 @@ dependencies:
53
39
  - - ">="
54
40
  - !ruby/object:Gem::Version
55
41
  version: '0'
42
+ - !ruby/object:Gem::Dependency
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: 7.8.0
48
+ name: elastic-app-search
49
+ prerelease: false
50
+ type: :runtime
51
+ version_requirements: !ruby/object:Gem::Requirement
52
+ requirements:
53
+ - - "~>"
54
+ - !ruby/object:Gem::Version
55
+ version: 7.8.0
56
56
  - !ruby/object:Gem::Dependency
57
57
  requirement: !ruby/object:Gem::Requirement
58
58
  requirements: