logstash-output-azure_event_hubs 0.1.0 → 0.1.1

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
  SHA256:
3
- metadata.gz: 8d1ae4dbc16152ca2c3f2aa566aa21e343a9dee8baf1373ff74b444814eac990
4
- data.tar.gz: 21074907a28e05132fc8d15d19caf16de11daeb3bb9d446361320da0e8a94b1c
3
+ metadata.gz: 20c68b0c716ea6f5279693e8cefac238cea960c8da23dc1ed86ddfc9ca016fc0
4
+ data.tar.gz: '090b1121ed4d31c08d543729ed15f4742f87b0ed0cf0945c621a943204468ab1'
5
5
  SHA512:
6
- metadata.gz: 2755e3b5b8f9a8c782da650435e5a58c0713de9a60dd7b55dc51399f2717cae1c5a4353b84ec0f778e0dc3d25c88b2c759fdd3c8877df86ef9d6c189ef7e3b85
7
- data.tar.gz: 68a7a595d8c673c53fb31d82e4381b8c2e3bab8031f99a8f82978a785972639c20e80fbc009a10cd5684173a672dbc126d42607644ecde4410b1a23c5584db33
6
+ metadata.gz: 7d85634b81ea562530c6da6588a29110747c121631923cbf4accf237d940e084cedb90dade124881c3fdbde736cc51d25f660f5dab9360d9cddb36176e02792f
7
+ data.tar.gz: 9eb0dc9e85a69c02e950e91c1b28fcddb31e14a2481f9dc50ca610df2f084688c75ecb27ac78defaa5fc30bcfbe3d849581a094eb1c5e0b02b383d460a9a4928
@@ -2,7 +2,8 @@
2
2
  All notable changes to this project will be documented in this file. Format is based on [Keep a Changelog]( https://keepachangelog.com/en/1.0.0/ ).
3
3
  This project adheres to [Semantic Versioning]( https://semver.org/ ).
4
4
 
5
-
5
+ ```
6
+ Example:
6
7
  ## \[Unreleased\]
7
8
  ### Added
8
9
  ### Changed
@@ -10,8 +11,13 @@ This project adheres to [Semantic Versioning]( https://semver.org/ ).
10
11
  ### Removed
11
12
  ### Fixed
12
13
  ### Security
14
+ ```
13
15
 
14
- ***
16
+ ## \[0.1.1\] 2020-01-07
17
+ ### Added
18
+ - Include .jar dependencies in gem
19
+ ### Changed
20
+ - Bump gradle to 6.0.1
15
21
 
16
22
  ## \[0.1.0\] 2019-06-11
17
23
  ### Added
data/README.md CHANGED
@@ -55,9 +55,10 @@ output {
55
55
  - Java 11 JDK
56
56
  - Logstash version 7+.
57
57
  - Azure Event Hubs namespace, hub, and credential to test against.
58
- - [Gradle](https://gradle.org/install/) is used to download the .jar dependencies and generate the classpath file by running:
58
+ - [Gradle](https://gradle.org/install/) is used to download the .jar dependencies and generate the classpath file.
59
59
 
60
60
  1. Install Dependencies
61
+
61
62
  ```shell
62
63
  rake vendor
63
64
  bundle install
@@ -69,6 +70,7 @@ bundle install
69
70
  ```
70
71
 
71
72
  2. Running your unpublished Plugin in Logstash
73
+
72
74
  Run in a local Logstash clone. Edit the Logstash Gemfile and add the local plugin path at the top of the Gemfile, for example:
73
75
  ```
74
76
  gem 'logstash-output-azure_event_hubs', :path => '/path/to/logstash-output-azure_event_hubs'
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.1.0
1
+ 0.1.1
@@ -1,7 +1,7 @@
1
- # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
-
3
- require 'jar_dependencies'
4
- require_jar('org.apache.qpid', 'proton-j', '0.31.0')
5
- require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.2.0')
6
- require_jar('org.slf4j', 'slf4j-api', '1.7.25')
7
- require_jar('com.microsoft.azure', 'azure-eventhubs', '2.3.2')
1
+ # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
+
3
+ require 'jar_dependencies'
4
+ require_jar('org.apache.qpid', 'proton-j', '0.31.0')
5
+ require_jar('com.microsoft.azure', 'qpid-proton-j-extensions', '1.2.0')
6
+ require_jar('org.slf4j', 'slf4j-api', '1.7.25')
7
+ require_jar('com.microsoft.azure', 'azure-eventhubs', '2.3.2')
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
12
12
  s.require_paths = ['lib', 'vendor/jar-dependencies']
13
13
 
14
14
  # Files
15
- s.files = Dir['lib/**/*', 'spec/**/*', 'vendor/jar-dependencies/**/*.jar', 'vendor/jar-dependencies/**/*.rb', '*.gemspec', '*.md', 'CONTRIBUTORS', 'Gemfile', 'LICENSE', 'VERSION', 'NOTICE']
15
+ s.files = Dir['lib/**/*', 'spec/**/*', 'vendor/**/*','vendor/jar-dependencies/**/*.jar', 'vendor/jar-dependencies/**/*.rb', '*.gemspec', '*.md', 'CONTRIBUTORS', 'Gemfile', 'LICENSE', 'VERSION', 'NOTICE']
16
16
 
17
17
  # Tests
18
18
  s.test_files = s.files.grep(%r{^(test|spec|features)/})
@@ -26,7 +26,8 @@ Gem::Specification.new do |s|
26
26
  }
27
27
 
28
28
  # Gem dependencies
29
- s.add_runtime_dependency "logstash-core-plugin-api", "~> 2.0"
29
+ s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
30
+ #s.add_runtime_dependency "logstash-core", ">= 6.5.0"
30
31
  s.add_runtime_dependency 'logstash-codec-plain'
31
32
  s.add_runtime_dependency 'logstash-codec-json'
32
33
 
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-output-azure_event_hubs
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Bryan Lewis
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-06-11 00:00:00.000000000 Z
11
+ date: 2020-01-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
15
15
  requirements:
16
- - - "~>"
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '1.60'
19
+ - - "<="
17
20
  - !ruby/object:Gem::Version
18
- version: '2.0'
21
+ version: '2.99'
19
22
  name: logstash-core-plugin-api
20
23
  prerelease: false
21
24
  type: :runtime
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '1.60'
30
+ - - "<="
25
31
  - !ruby/object:Gem::Version
26
- version: '2.0'
32
+ version: '2.99'
27
33
  - !ruby/object:Gem::Dependency
28
34
  requirement: !ruby/object:Gem::Requirement
29
35
  requirements:
@@ -98,6 +104,10 @@ files:
98
104
  - lib/logstash/outputs/azure_event_hubs.rb
99
105
  - logstash-output-azure_event_hubs.gemspec
100
106
  - spec/outputs/azure_event_hubs_spec.rb
107
+ - vendor/jar-dependencies/com/microsoft/azure/azure-eventhubs/2.3.2/azure-eventhubs-2.3.2.jar
108
+ - vendor/jar-dependencies/com/microsoft/azure/qpid-proton-j-extensions/1.2.0/qpid-proton-j-extensions-1.2.0.jar
109
+ - vendor/jar-dependencies/org/apache/qpid/proton-j/0.31.0/proton-j-0.31.0.jar
110
+ - vendor/jar-dependencies/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
101
111
  homepage: https://github.com/bryanklewis/logstash-output-azure_event_hubs
102
112
  licenses:
103
113
  - Apache-2.0
@@ -123,7 +133,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
123
133
  version: '0'
124
134
  requirements: []
125
135
  rubyforge_project:
126
- rubygems_version: 2.7.6
136
+ rubygems_version: 2.7.10
127
137
  signing_key:
128
138
  specification_version: 4
129
139
  summary: Writes events to Azure Event Hubs