logstash-core 7.0.1-java → 7.1.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/logstash/patches/resolv.rb +19 -13
- data/lib/logstash/patches/resolv_9270.rb +2903 -0
- data/spec/logstash/jruby_version_spec.rb +15 -0
- data/versions-gem-copy.yml +3 -3
- metadata +7 -4
@@ -0,0 +1,15 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
|
4
|
+
describe "JRuby Version" do
|
5
|
+
it "should break on JRuby version change" do
|
6
|
+
# This spec will break upon JRuby version change to make sure we
|
7
|
+
# verify if resolv.rb has been fixed in Jruby so we can get rid of
|
8
|
+
# lib/logstash/patches/resolv.rb.
|
9
|
+
# ref:
|
10
|
+
# https://github.com/logstash-plugins/logstash-filter-dns/issues/51
|
11
|
+
# https://github.com/jruby/jruby/pull/5722
|
12
|
+
expect(JRUBY_VERSION).to eq("9.2.7.0")
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
data/versions-gem-copy.yml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
# alpha and beta qualifiers are now added via VERSION_QUALIFIER environment var
|
3
|
-
logstash: 7.0
|
4
|
-
logstash-core: 7.0
|
3
|
+
logstash: 7.1.0
|
4
|
+
logstash-core: 7.1.0
|
5
5
|
logstash-core-plugin-api: 2.1.16
|
6
6
|
|
7
7
|
# jruby must reference a *released* version of jruby which can be downloaded from the official download url
|
@@ -21,7 +21,7 @@ jruby:
|
|
21
21
|
# Note: this file is copied to the root of logstash-core because its gemspec needs it when
|
22
22
|
# bundler evaluates the gemspec via bin/logstash
|
23
23
|
# Ensure Jackson version here is kept in sync with version used by jrjackson gem
|
24
|
-
jrjackson: 0.4.
|
24
|
+
jrjackson: 0.4.8
|
25
25
|
jackson: 2.9.8
|
26
26
|
|
27
27
|
# This is a copy the project level versions.yml into this gem's root and it is created when the gemspec is evaluated.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: logstash-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.0
|
4
|
+
version: 7.1.0
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Elastic
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
@@ -265,7 +265,7 @@ dependencies:
|
|
265
265
|
requirements:
|
266
266
|
- - '='
|
267
267
|
- !ruby/object:Gem::Version
|
268
|
-
version: 0.4.
|
268
|
+
version: 0.4.8
|
269
269
|
name: jrjackson
|
270
270
|
type: :runtime
|
271
271
|
prerelease: false
|
@@ -273,7 +273,7 @@ dependencies:
|
|
273
273
|
requirements:
|
274
274
|
- - '='
|
275
275
|
- !ruby/object:Gem::Version
|
276
|
-
version: 0.4.
|
276
|
+
version: 0.4.8
|
277
277
|
- !ruby/object:Gem::Dependency
|
278
278
|
requirement: !ruby/object:Gem::Requirement
|
279
279
|
requirements:
|
@@ -416,6 +416,7 @@ files:
|
|
416
416
|
- lib/logstash/patches/profile_require_calls.rb
|
417
417
|
- lib/logstash/patches/puma.rb
|
418
418
|
- lib/logstash/patches/resolv.rb
|
419
|
+
- lib/logstash/patches/resolv_9270.rb
|
419
420
|
- lib/logstash/patches/stronger_openssl_defaults.rb
|
420
421
|
- lib/logstash/pipeline.rb
|
421
422
|
- lib/logstash/pipeline_action.rb
|
@@ -522,6 +523,7 @@ files:
|
|
522
523
|
- spec/logstash/java_filter_delegator_spec.rb
|
523
524
|
- spec/logstash/java_integration_spec.rb
|
524
525
|
- spec/logstash/java_pipeline_spec.rb
|
526
|
+
- spec/logstash/jruby_version_spec.rb
|
525
527
|
- spec/logstash/json_spec.rb
|
526
528
|
- spec/logstash/legacy_ruby_event_spec.rb
|
527
529
|
- spec/logstash/legacy_ruby_timestamp_spec.rb
|
@@ -663,6 +665,7 @@ test_files:
|
|
663
665
|
- spec/logstash/java_filter_delegator_spec.rb
|
664
666
|
- spec/logstash/java_integration_spec.rb
|
665
667
|
- spec/logstash/java_pipeline_spec.rb
|
668
|
+
- spec/logstash/jruby_version_spec.rb
|
666
669
|
- spec/logstash/json_spec.rb
|
667
670
|
- spec/logstash/legacy_ruby_event_spec.rb
|
668
671
|
- spec/logstash/legacy_ruby_timestamp_spec.rb
|