logstash-integration-aws 7.3.1-java → 7.3.2-java

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: b31fe097a73e2ad72dda848f754960f593158928d0aa81aa462c1f51401126d1
4
- data.tar.gz: 151acafe5078e56a528fe96e536ec58e7d55716258890918b740de5bbfaa9de5
3
+ metadata.gz: e1b8a5b5a5fc9020b5c91a867bf8608cc465ca404bcab2e8fbde85e36768aa63
4
+ data.tar.gz: 0a5a55593fab48534744b17df0c6ba14b2b63b5d63ea2437a85b40d7421bf9d8
5
5
  SHA512:
6
- metadata.gz: 286fc8fe7a69ef39b9e923d4579e632e87be2b756963f2d3658bce23789e231eb1a75552110e92c3d7936f4e7cecc49ca2b0a1046065a319791beca1adc931e7
7
- data.tar.gz: a06b19d5689ed3ee0e0d93425eb69d413733feaf204f0ceaca4b8d30a425e36b48eb7296a8c400164fd437d6a28771a186f8f12d437e37f9593b1d0e6dccc30f
6
+ metadata.gz: 43bfee142660e88a973349580daae1d933ff17721225e2fe6fd3592ec02306498f359d4497d34f677c17be903c4e521bdd2095ed0ab36da9c7ff5ebce74bba4f
7
+ data.tar.gz: d692f03255dd68b9e0d0b6f6d42ef7db17d11e49d116d00ebc761702ad5f36a65e6e1648f8f25c27f58b82576bc57af9b54f2aa8ff7ef9b5359028d260cf8dd2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 7.3.2
2
+ - Fix: replace deprecated `File.exists?` with `File.exist?` for Ruby 3.4 (JRuby 10) compatibility [#65](https://github.com/logstash-plugins/logstash-integration-aws/pull/65)
3
+
1
4
  ## 7.3.1
2
5
  - Re-packaging the plugin [#63](https://github.com/logstash-plugins/logstash-integration-aws/pull/63)
3
6
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 7.3.1
1
+ 7.3.2
@@ -117,7 +117,7 @@ class LogStash::Inputs::S3 < LogStash::Inputs::Base
117
117
  end
118
118
 
119
119
  unless @backup_to_dir.nil?
120
- Dir.mkdir(@backup_to_dir, 0700) unless File.exists?(@backup_to_dir)
120
+ Dir.mkdir(@backup_to_dir, 0700) unless File.exist?(@backup_to_dir)
121
121
  end
122
122
 
123
123
  FileUtils.mkdir_p(@temporary_directory) unless Dir.exist?(@temporary_directory)
@@ -451,7 +451,7 @@ class LogStash::Inputs::S3 < LogStash::Inputs::Base
451
451
 
452
452
  # @return [Time]
453
453
  def read
454
- if ::File.exists?(@sincedb_path)
454
+ if ::File.exist?(@sincedb_path)
455
455
  content = ::File.read(@sincedb_path).chomp.strip
456
456
  # If the file was created but we didn't have the time to write to it
457
457
  return content.empty? ? Time.new(0) : Time.parse(content)
@@ -47,7 +47,7 @@ module LogStash::PluginMixins::AwsConfig::V2
47
47
  if @use_aws_bundled_ca
48
48
  aws_core_library = Gem.loaded_specs['aws-sdk-core']&.full_gem_path or fail("AWS Core library not available")
49
49
  opts[:ssl_ca_bundle] = File.expand_path('ca-bundle.crt', aws_core_library).tap do |aws_core_ca_bundle|
50
- fail("AWS Core CA bundle not found") unless File.exists?(aws_core_ca_bundle)
50
+ fail("AWS Core CA bundle not found") unless File.exist?(aws_core_ca_bundle)
51
51
  end
52
52
  end
53
53
 
@@ -1,4 +1,4 @@
1
1
  # AUTOGENERATED BY THE GRADLE SCRIPT. DO NOT EDIT.
2
2
 
3
3
  require 'jar_dependencies'
4
- require_jar('org.logstash.plugins.integration.aws', 'logstash-integration-aws', '7.3.1')
4
+ require_jar('org.logstash.plugins.integration.aws', 'logstash-integration-aws', '7.3.2')
@@ -314,7 +314,7 @@ describe LogStash::Inputs::S3 do
314
314
 
315
315
  plugin.backup_to_dir(source_file)
316
316
 
317
- expect(File.exists?(backup_file)).to eq(true)
317
+ expect(File.exist?(backup_file)).to eq(true)
318
318
  end
319
319
  end
320
320
  end
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: logstash-integration-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 7.3.1
4
+ version: 7.3.2
5
5
  platform: java
6
6
  authors:
7
7
  - Elastic
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2026-01-31 00:00:00.000000000 Z
10
+ date: 2026-02-11 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: logstash-core-plugin-api
@@ -407,7 +407,7 @@ files:
407
407
  - spec/spec_helper.rb
408
408
  - spec/support/helpers.rb
409
409
  - spec/unit/outputs/sqs_spec.rb
410
- - vendor/jar-dependencies/org/logstash/plugins/integration/aws/logstash-integration-aws/7.3.1/logstash-integration-aws-7.3.1.jar
410
+ - vendor/jar-dependencies/org/logstash/plugins/integration/aws/logstash-integration-aws/7.3.2/logstash-integration-aws-7.3.2.jar
411
411
  homepage: http://www.elastic.co/guide/en/logstash/current/index.html
412
412
  licenses:
413
413
  - Apache-2.0