Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Starting in 2.0.0, the aws sdk version is bumped to v3. In order for all other A
/usr/share/logstash/bin/logstash-plugin install --version 2.0.0 logstash-output-opensearch
```
## ECS Compatibility
[Elastic Common Schema(ECS)](https://www.elastic.co/guide/en/ecs/current/index.html]) compatibility for V8 was added in 1.3.0. For more details on ECS support refer to this [documentation](docs/ecs_compatibility.md).
[Elastic Common Schema(ECS)](https://www.elastic.co/guide/en/ecs/current/index.html) compatibility for V8 was added in 1.3.0. For more details on ECS support refer to this [documentation](docs/ecs_compatibility.md).


## Code of Conduct
Expand Down
4 changes: 2 additions & 2 deletions logstash-output-opensearch.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ signing_key_path = "gem-private_key.pem"

Gem::Specification.new do |s|
s.name = 'logstash-output-opensearch'
s.version = '2.0.3'
s.version = '2.1.0'

s.licenses = ['Apache-2.0']
s.summary = "Stores logs in OpenSearch"
Expand Down Expand Up @@ -45,7 +45,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency 'stud', ['>= 0.0.17', '~> 0.0']
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
s.add_runtime_dependency 'logstash-mixin-ecs_compatibility_support', '~>1.0'
s.add_runtime_dependency 'aws-sdk', '~> 3'
s.add_runtime_dependency 'aws-sdk-core', '~> 3'
s.add_runtime_dependency 'json', '>= 2.3.0', '~> 2'

s.add_development_dependency 'logstash-codec-plain'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
## Version 2.0.3 Release Notes
## Version 2.1.0 Release Notes

Compatible with OpenSearch 1.3+, 2.0+

### Bug Fixes

* Install against most recent versions of logstash by building with [aws-sdk-core](https://rubygems.org/gems/aws-sdk-core). (#267)
* Fix warning retrieving cluster UUID with Amazon OpenSearch Serverless (#237)

### Documentation
Expand Down
Loading