Skip to content

Latest commit

 

History

History
93 lines (63 loc) · 2.67 KB

NEWS.md

File metadata and controls

93 lines (63 loc) · 2.67 KB

NEWS

Version 0.3.3 (2022-10-29)

  • No timeout library required ruby#44
  • Make the digest library optional ruby#45

Version 0.3.2 (2022-09-28)

  • Make exception API compatible with what Ruby expects ruby#42

Version 0.3.1 (2021-12-12)

Improvements

  • add Net::SMTP::Address.
  • add Net::SMTP#capable? and Net::SMTP#capabilities.
  • add Net::SMTP#tls_verify, Net::SMTP#tls_hostname, Net::SMTP#ssl_context_params

Version 0.3.0 (2021-10-14)

Improvements

  • Add tls, starttls keyword arguments.
    # always use TLS connection for port 465.
    Net::SMTP.start(hostname, 465, tls: true)
    
    # do not use starttls for localhost
    Net::SMTP.start('localhost', starttls: false)

Incompatible changes

  • The tls_* paramter has been moved from start() to initialize().

Version 0.2.2 (2021-10-09)

  • Add response to SMTPError exceptions.
  • Net::SMTP.start() and #start() accepts ssl_context_params keyword argument.
  • Replace Timeout.timeout with socket timeout.
  • Remove needless files from gem.
  • Add dependency on digest, timeout.

Version 0.2.1 (2020-11-18)

Fixes

  • Update the license for the default gems to dual licenses.
  • Add dependency for net-protocol.

Version 0.2.0 (2020-11-15)

Incompatible changes

  • Verify the server's certificate by default. If you don't want verification, specify start(tls_verify: false). ruby#12

  • Use STARTTLS by default if possible. If you don't want starttls, specify: smtp = Net::SMTP.new(hostname, port) smtp.disable_starttls smtp.start do |s| s.send_message .... end ruby#9

Improvements

  • Net::SMTP.start and Net::SMTP#start arguments are keyword arguments. start(address, port = nil, helo: 'localhost', user: nil, secret: nil, authtype: nil) { |smtp| ... } password is an alias of secret. ruby#7

  • Add tls_hostname parameter to start(). If you want to use a different hostname than the certificate for the connection, you can specify the certificate hostname with tls_hostname. ruby#14

  • Add SNI support to net/smtp ruby#4

Fixes

  • enable_starttls before disable_tls causes an error. ruby#10
  • TLS should not check the hostname when verify_mode is disabled. ruby#6

Version 0.1.0 (2019-12-03)

This is the first release of net-smtp gem.