Skip to content

Commit

Permalink
Merge pull request #69 from mashhurs/upstream-main
Browse files Browse the repository at this point in the history
Upgrade email dependency to fix the Ruby net-smtp load regression.
  • Loading branch information
mashhurs committed Oct 3, 2023
2 parents 0f8f12e + 66b53f7 commit ef33cca
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 4.1.3
- Upgrade `email` dependency so that supports Ruby 3.1. This also fixes the `net-smtp` load regression [#69](https://github.com/logstash-plugins/logstash-output-email/pull/69)

## 4.1.2
- Change `password` config type to `Password` to prevent leaks in debug logs [#65](https://github.com/logstash-plugins/logstash-output-email/pull/65)

Expand All @@ -6,7 +9,7 @@

## 4.1.0
- Update gemspec summary
- Add bcc suport #55
- Add bcc support #55
- Add mustache templating #51

## 4.0.6
Expand Down
9 changes: 4 additions & 5 deletions logstash-output-email.gemspec
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Gem::Specification.new do |s|

s.name = 'logstash-output-email'
s.version = '4.1.2'
s.version = '4.1.3'
s.licenses = ['Apache License (2.0)']
s.summary = "Sends email to a specified address when output is received"
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
s.authors = ["Elastic"]
s.email = 'info@elastic.co'
s.homepage = "http://www.elastic.co/guide/en/logstash/current/index.html"
s.homepage = "https://www.elastic.co/logstash"
s.require_paths = ["lib"]

# Files
Expand All @@ -22,9 +22,8 @@ Gem::Specification.new do |s|
# Gem dependencies
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"

s.add_runtime_dependency 'mail', '~> 2.6.3'
# mime-types >= 3 require ruby 2.0 support
s.add_runtime_dependency 'mime-types', '< 3'
s.add_runtime_dependency 'mail', '~> 2.8'


s.add_runtime_dependency 'mustache', '>= 0.99.8'

Expand Down

0 comments on commit ef33cca

Please sign in to comment.