Skip to content

Commit 7fe4fa6

Browse files
authored
fix: jruby 9.4.6.0 package visibility strictness (#133)
1 parent d312d63 commit 7fe4fa6

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
1+
## 0.1.8
2+
- Fixes `EventProcessorBuilder#build` to work with JRuby 9.4.6.0 [#133](https://github.com/elastic/logstash-filter-elastic_integration/pull/133)
3+
14
## 0.1.7
2-
- Fixes GeoIpDatabaseProvider.build to work with JRuby 9.4.6.0 [#132](https://github.com/elastic/logstash-filter-elastic_integration/pull/132)
5+
- Fixes `GeoIpDatabaseProvider.Builder#build` to work with JRuby 9.4.6.0 [#132](https://github.com/elastic/logstash-filter-elastic_integration/pull/132)
36

47
## 0.1.6
58
- Fixes issue where configured `username`/`password` credentials was not sent to Elasticsearch instances that had anonymous access enabled [#127](https://github.com/elastic/logstash-filter-elastic_integration/pull/127)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.7
1+
0.1.8

src/main/java/co/elastic/logstash/filters/elasticintegration/EventProcessorBuilder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ public synchronized EventProcessorBuilder addProcessorsFromPlugin(Supplier<Inges
221221
return this;
222222
}
223223

224-
synchronized EventProcessor build(final PluginContext pluginContext) {
224+
public synchronized EventProcessor build(final PluginContext pluginContext) {
225225
Objects.requireNonNull(this.pipelineConfigurationResolver, "pipeline configuration resolver is REQUIRED");
226226
Objects.requireNonNull(this.eventToIndexNameResolver, "event index name resolver is REQUIRED");
227227
Objects.requireNonNull(this.indexNameToPipelineNameResolver, "pipeline name resolver is REQUIRED");

0 commit comments

Comments
 (0)