Skip to content

Commit

Permalink
net/ruby-net-smtp: update to 0.5.0
Browse files Browse the repository at this point in the history
pkgsrc change: do not restrict Ruby's version.

0.4.0 (2023-09-20)

What's Changed

* Adds Ruby 3.1 and 3.2 to the CI matrix. by @petergoldstein in #50
* Revert "Replace Timeout.timeout with socket timeout" by @hsbt in #51
* add Net::SMTP::Authenticator class and auth_* methods are separated from
  the Net::SMTP class. by @tmtm in #53
* fix typo by @tmtm in #54
* Add SMTPUTF8 support by @arnt in #49
* Fix: send_message() with recipients as array by @tmtm in #55
* Fixed issue sending emails to unaffected recipients on 53x error by @tmtm
  in #56
* Removed unnecessary Subversion keywords by @tmtm in #57
* refactor test code by @tmtm in #58
* The mailfrom method's arguments restored. by @tmtm in #59
* Bump actions/checkout from 3 to 4 by @dependabot in #60
* remove SMTPUTF8RequiredError by @tmtm in #61
* v0.4.0 by @tmtm in #62

New Contributors

* @petergoldstein made their first contribution in #50
* @arnt made their first contribution in #49

0.4.0.1 (2024-01-05)

* Renew test certificates

0.5.0 (2024-03-27)

What's Changed

* Allow case-insensitive strings for SASL mechanism by @nevans in #64
* Remove unused private auth_method by @nevans in #67
* Delegate checking auth args to the authenticator by @nevans in #73
* Make #auth_capable? public by @nevans in #63
* Updated docs, especially TLS and SASL-related by @nevans in #66
* Renew test certificates by @sorah in #75
* Fix version extraction to work with non ASCII characters with any LANG by
  @kateinoigakukun in #76
* Replace non-ASCII EM DASH (U+2014) with ASCII hyphen (U+002D) by
  @kateinoigakukun in #78
* Use reusing workflow for Ruby versions by @m-nakamura145 in #79
* Add XOAUTH2 authenticator by @mantas in #80
* Make the test suite compatible with --enable-frozen-string-literal by
  @casperisfine in #81
* version 0.5.0 by @tmtm in #82

New Contributors

* @sorah made their first contribution in #75
* @kateinoigakukun made their first contribution in #76
* @m-nakamura145 made their first contribution in #79
* @mantas made their first contribution in #80
* @casperisfine made their first contribution in #81
  • Loading branch information
taca committed Dec 9, 2024
1 parent aa1df46 commit 53afbc5
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
8 changes: 2 additions & 6 deletions net/ruby-net-smtp/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.8 2023/12/14 15:25:54 taca Exp $
# $NetBSD: Makefile,v 1.9 2024/12/09 15:31:51 taca Exp $

DISTNAME= net-smtp-0.3.3
DISTNAME= net-smtp-0.5.0
CATEGORIES= net mail

MAINTAINER= [email protected]
Expand All @@ -10,9 +10,5 @@ LICENSE= 2-clause-bsd OR ruby-license

USE_LANGUAGES= # none

# This package is mainly for redmine51 on Ruby 3.1.
# (Ruby 3.2 and later have required net-imap gem as standard gem.)
RUBY_VERSIONS_ACCEPTED= 31

.include "../../lang/ruby/gem.mk"
.include "../../mk/bsd.pkg.mk"
10 changes: 8 additions & 2 deletions net/ruby-net-smtp/PLIST
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
@comment $NetBSD: PLIST,v 1.3 2023/12/14 15:25:54 taca Exp $
@comment $NetBSD: PLIST,v 1.4 2024/12/09 15:31:51 taca Exp $
${GEM_HOME}/cache/${GEM_NAME}.gem
${GEM_LIBDIR}/LICENSE.txt
${GEM_LIBDIR}/NEWS.md
${GEM_LIBDIR}/README.md
${GEM_LIBDIR}/lib/net/smtp.rb
${GEM_LIBDIR}/net-smtp.gemspec
${GEM_LIBDIR}/lib/net/smtp/auth_cram_md5.rb
${GEM_LIBDIR}/lib/net/smtp/auth_login.rb
${GEM_LIBDIR}/lib/net/smtp/auth_plain.rb
${GEM_LIBDIR}/lib/net/smtp/auth_xoauth2.rb
${GEM_LIBDIR}/lib/net/smtp/authenticator.rb
${GEM_HOME}/specifications/${GEM_NAME}.gemspec
8 changes: 4 additions & 4 deletions net/ruby-net-smtp/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.4 2023/12/14 15:25:54 taca Exp $
$NetBSD: distinfo,v 1.5 2024/12/09 15:31:51 taca Exp $

BLAKE2s (net-smtp-0.3.3.gem) = a7413d3eecb121353fecf9607d8908dd3d7b7780faa0cde55e29c8e4e85c0520
SHA512 (net-smtp-0.3.3.gem) = 58f61366a39c6d6cdcb02ba50e0cd64a42bc47dea2eb80f792e459e53225c005ab64b33f560f33f885e9e13548ffbbda1afc6e552b56d9ee54fc2558b0c31a83
Size (net-smtp-0.3.3.gem) = 15360 bytes
BLAKE2s (net-smtp-0.5.0.gem) = 465a3446e53b778546b87ec0edc75e3c593488a6bb00ab31e26aaf24acd1d491
SHA512 (net-smtp-0.5.0.gem) = ff3e1a289869283612814089a2935821f2861f2c324592b36bfe448e4e979f7574ad4459000d564a7510669095557467fa766cb56b8b1d64030110bcbd587acf
Size (net-smtp-0.5.0.gem) = 17920 bytes

0 comments on commit 53afbc5

Please sign in to comment.