logstash-input-neo4j 2.0.6-java → 2.0.8-java

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
- SHA1:
3
- metadata.gz: 926b4fb9e20f08a552d36cbe2ee0a48d0c64388d
4
- data.tar.gz: 4208dec3bf570377ec5dc8d07767dc939a8f5626
2
+ SHA256:
3
+ metadata.gz: f4458f6abf84e98866565b8af6e0bc385966b9235ed061f733d4fdfb6f93dad9
4
+ data.tar.gz: bc86f663e96af086bf8aa26030112ebf6bb8b15cfc1adf3e300318a2c35c697f
5
5
  SHA512:
6
- metadata.gz: d6144a80029c2ba183bc1e84f8634a0c5ec84af3ef28b72207c455acb5d71c8af0ba611bc412565b9c89a89ef0a4e395b95f0750971b38e62953f7ecd67644bc
7
- data.tar.gz: f39b6474b92e4a14257de6bbc5498f09e2616e3977bad03dd2525bce191b5983535fa2381c0daaae67e1bb1d7f8ff19a98048c74c4be7e289dbf49d6168c452d
6
+ metadata.gz: 6748bf4809af1370d00f9fd7f7f622c414beecc6bab401e531fff819134e2eb547e94378ec79e65426f16527b0924614149ab6175efb03a9e02068ea56506769
7
+ data.tar.gz: 7b30e8c8d04bfb77549017b0f0b39602428fca9b14453ef02367f38466b9efe5dea918a3c7118cc50a900350d9593cacb84bafe2f757ff1f5630dd8073dc323b
@@ -1,3 +1,9 @@
1
+ ## 2.0.8
2
+ - Fixed formatting for heading [#6](https://github.com/logstash-plugins/logstash-input-neo4j/pull/6)
3
+
4
+ ## 2.0.7
5
+ - Docs: Set the default_codec doc attribute.
6
+
1
7
  ## 2.0.6
2
8
  - Fix some documentation issues
3
9
 
@@ -1,5 +1,6 @@
1
1
  :plugin: neo4j
2
2
  :type: input
3
+ :default_codec: plain
3
4
 
4
5
  ///////////////////////////////////////////
5
6
  START - GENERATED VARIABLES, DO NOT EDIT!
@@ -23,7 +24,7 @@ include::{include_path}/plugin_header.asciidoc[]
23
24
  This plugin gets data from a Neo4j database in predefined intervals. To fetch
24
25
  this data uses a given Cypher query.
25
26
 
26
- ### Usage:
27
+ ===== Usage
27
28
  [source, ruby]
28
29
  input {
29
30
  neo4j {
@@ -85,9 +86,11 @@ MATCH (p:`Person`)-->(m:`Movie`) WHERE m.released = 2005 RETURN *
85
86
 
86
87
  Schedule of when to periodically run statement, in Cron format
87
88
  for example: "* * * * *" (execute query every minute, on the minute).
88
- If this variable is not specified then this input will run only once
89
+ If this variable is not specified, then this input will run only once.
89
90
 
90
91
 
91
92
 
92
93
  [id="plugins-{type}s-{plugin}-common-options"]
93
- include::{include_path}/{type}.asciidoc[]
94
+ include::{include_path}/{type}.asciidoc[]
95
+
96
+ :default_codec!:
@@ -1,7 +1,7 @@
1
1
  Gem::Specification.new do |s|
2
2
 
3
3
  s.name = 'logstash-input-neo4j'
4
- s.version = '2.0.6'
4
+ s.version = '2.0.8'
5
5
  s.licenses = ['Apache License (2.0)']
6
6
  s.summary = "Logstash Input for Neo4j"
7
7
  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"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-input-neo4j
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.6
4
+ version: 2.0.8
5
5
  platform: java
6
6
  authors:
7
7
  - Pere Urbon-Bayes
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-08-15 00:00:00.000000000 Z
12
+ date: 2019-04-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  requirement: !ruby/object:Gem::Requirement
@@ -95,7 +95,9 @@ dependencies:
95
95
  - - ">="
96
96
  - !ruby/object:Gem::Version
97
97
  version: '0'
98
- 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
98
+ description: This gem is a Logstash plugin required to be installed on top of the
99
+ Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This
100
+ gem is not a stand-alone program
99
101
  email: pere.urbon@gmail.com
100
102
  executables: []
101
103
  extensions: []
@@ -136,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
136
138
  version: '0'
137
139
  requirements: []
138
140
  rubyforge_project:
139
- rubygems_version: 2.4.8
141
+ rubygems_version: 2.6.13
140
142
  signing_key:
141
143
  specification_version: 4
142
144
  summary: Logstash Input for Neo4j